feat: Update to iota v1.25.0 - Tests with product-core upstream-merge feature branch#284
Open
chrisgitiota wants to merge 2 commits into
Open
feat: Update to iota v1.25.0 - Tests with product-core upstream-merge feature branch#284chrisgitiota wants to merge 2 commits into
chrisgitiota wants to merge 2 commits into
Conversation
Summary:
- [ ] tokio version update to: -
- [ ] fastcrypto version update to rev = "-"
- [x] All `iota-rust-sdk.git` dependencies: Update to rev = 35a27488b887e28e844a1e46d7edb78605871155
- [ ] notarization_wasm / audit_trail_wasm:
- [ ] new peerDep. version for @iota/iota-sdk: _
- [ ] new dependency version for @iota/iota-interaction-ts: _
- [x] pin all product-core.git dependencies to `branch = "feat/iota-v1-25-rc-upstream-merge"`
- [x] pin all iota.git dependencies to `tag = "v1.25.0"`
The `ObjectID` type, that has been provided by the monorepo Rust SDK, has been replaced by the `ObjectId` type from the new standalone Rust SDK, which is a breaking change for all monorepo Rust SDK users (introduced with Commit e7c394b in the iota.git repo).
Therefore, Rust code in this repository using the obsolete `ObjectID` type, has been switched from using `iota_sdk::types::base_types::ObjectID` to use `iota_sdk_types::ObjectId` and all `ObjectID` type specifiers have been renamed to `ObjectId`.
The following types, previously imported from th eold monorepo Rust SDK are now imported from the new `iota_sdk_types` Rust SDK:
```
use iota_sdk_types::{ObjectId, Argument, TypeTag, StructTag, Owner, MakeMoveVector, Identifier, Command};
```
Rust users of the Trust Framework will also need to migrate their code in the same way.
6 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Warning
DON'T MERGE THIS PULL REQUEST
This PR is only used to run CI tests against the
product-corebranchfeat/iota-v1-25-rc-upstream-mergeDescription of change
Following dependencies have been changed:
iota-rust-sdk.gitdependencies: Update to rev = 35a27488b887e28e844a1e46d7edb78605871155branch = "feat/iota-v1-25-rc-upstream-merge"tag = "v1.25.0"The
ObjectIDtype, that has been provided by the monorepo Rust SDK, has been replaced by theObjectIdtype from the new standalone Rust SDK, which is a breaking change for all monorepo Rust SDK users (introduced with Commit e7c394b in the iota.git repo).Therefore, Rust code in this repository using the obsolete
ObjectIDtype, has been switched from usingiota_sdk::types::base_types::ObjectIDto useiota_sdk_types::ObjectIdand allObjectIDtype specifiers have been renamed toObjectId.The following types, previously imported from th eold monorepo Rust SDK are now imported from the new
iota_sdk_typesRust SDK:Rust users of the Trust Framework will also need to migrate their code in the same way.
Links to any relevant issues
iotaledger/product-core#67