Skip to content

Releases: MystenLabs/sui

mainnet-v1.33.2

18 Sep 22:02
Compare
Choose a tag to compare

Sui Protocol Version in this release: 59

#19404: Enable probing of consensus rounds against peers.

#19119: Unsigned integers now support .to_string() methods, for example 10u8.to_string() is the same as b"10".to_string()

GraphQL

#18774: Introduces .move name resolution (internal & external) for GraphQL. Only supported on a non-mainnet environment for the time being.

#18017: Added a max_tx_payload_size variable to protect against large transaction queries. The sum of txBytes + signatures in all GraphQL mutation executeTransactionBlock nodes or txBytes in dryRunTransactionBlock nodes from a query have to be below the max_tx_payload_size. The max_tx_payload_size is computed based on the protocol_version -> max_tx_bytes and a Base64 overhead as follows: max_tx_bytes * 4 / 3 Added also a check that the overall query size is not larger than max_tx_payload_size + max_query_payload_size, where max_query_payload_size is the read part of the query.

#19191: Removes support for multiple versions. GraphQL's version now aligns with the sui-node version, and it drops support for the ServiceConfig.availableVersions query.

CLI

#16626: Move will now lint against unnecessary math operations in many cases.

#19126: Move integer modules now have a bitwise_not function and a max_value macro function.


Full Log: https://github.com/MystenLabs/sui/commits/mainnet-v1.33.2

testnet-v1.33.2

16 Sep 22:32
Compare
Choose a tag to compare

Protocol

Sui Protocol Version in this release: 59

#19404: Enable probing of consensus rounds against peers.


Full Log: https://github.com/MystenLabs/sui/commits/testnet-v1.33.2

testnet-v1.33.1

15 Sep 23:57
776118a
Compare
Choose a tag to compare

Protocol

Sui Protocol Version in this release: 58

#19299: chore: update quinn-proto to address RUSTSEC-2024-0373

#19293: [Consensus] count missing ancestors and blocks per authority


Full Log: https://github.com/MystenLabs/sui/commits/testnet-v1.33.1

testnet-v1.33.0

09 Sep 22:18
77b18b4
Compare
Choose a tag to compare

Protocol

Sui Protocol Version in this release: 58

#19119: Unsigned integers now support .to_string() methods, for example 10u8.to_string() is the same as b"10".to_string()

GraphQL

#18774: Introduces .move name resolution (internal & external) for GraphQL. Only supported on a non-mainnet environment for the time being.

#18017: Added a max_tx_payload_size variable to protect against large transaction queries. The sum of txBytes + signatures in all GraphQL mutation executeTransactionBlock nodes or txBytes in dryRunTransactionBlock nodes from a query have to be below the max_tx_payload_size. The max_tx_payload_size is computed based on the protocol_version -> max_tx_bytes and a Base64 overhead as follows: max_tx_bytes * 4 / 3 Added also a check that the overall query size is not larger than max_tx_payload_size + max_query_payload_size, where max_query_payload_size is the read part of the query.

#19191: Removes support for multiple versions. GraphQL's version now aligns with the sui-node version, and it drops support for the ServiceConfig.availableVersions query.

CLI

#16626: Move will now lint against unnecessary math operations in many cases.

#19126: Move integer modules now have a bitwise_not function and a max_value macro function.


Full Log: https://github.com/MystenLabs/sui/commits/testnet-v1.33.0

devnet-v1.33.0

09 Sep 16:42
77b18b4
Compare
Choose a tag to compare
devnet-v1.33.0 Pre-release
Pre-release

Protocol

Sui Protocol Version in this release: 58

#19119: Unsigned integers now support .to_string() methods, for example 10u8.to_string() is the same as b"10".to_string()

GraphQL

#18774: Introduces .move name resolution (internal & external) for GraphQL. Only supported on a non-mainnet environment for the time being.

#18017: Added a max_tx_payload_size variable to protect against large transaction queries. The sum of txBytes + signatures in all GraphQL mutation executeTransactionBlock nodes or txBytes in dryRunTransactionBlock nodes from a query have to be below the max_tx_payload_size. The max_tx_payload_size is computed based on the protocol_version -> max_tx_bytes and a Base64 overhead as follows: max_tx_bytes * 4 / 3 Added also a check that the overall query size is not larger than max_tx_payload_size + max_query_payload_size, where max_query_payload_size is the read part of the query.

#19191: Removes support for multiple versions. GraphQL's version now aligns with the sui-node version, and it drops support for the ServiceConfig.availableVersions query.

CLI

#16626: Move will now lint against unnecessary math operations in many cases.

#19126: Move integer modules now have a bitwise_not function and a max_value macro function.


Full Log: https://github.com/MystenLabs/sui/commits/devnet-v1.33.0

mainnet-v1.32.2

03 Sep 23:48
a5eab1a
Compare
Choose a tag to compare

Protocol

Sui Protocol Version in this release: 56

#19199: Enable bridge on mainnet
#19031: Enable Move enums in mainnet

Indexer

#18899: This PR modifies the indexer database schemas for improving GraphQL query performance. Specifically, an objects_version table along with various transaction and events lookup tables are added. The tx_calls table is replaced by more fine-grained tables: tx_calls_pkg, tx_calls_mod, and tx_calls_fun.

#18450: adds two new indexer tables that stores protocol configs and features flags of different versions.

GraphQL

#18966: Query.owner's rootVersion parameter should accepts a UInt53 rather than an Int.

#17543: Dynamic fields can now be looked up on any historical object (not just objects in the available range).

#17692: Introduce Query.package and MovePackage.atVersion to query packages at specific versions.

#17693: Add Query.latestPackage and MovePackage.latest for fetching the latest version of a package.

#17696: Introduces Query.packages for paginating through all packages (optionally bounding by the checkpoint the package was introduced in).

#17697: Introduces Query.packageVersions and MovePackage.versions for paginating over the versions of a particular package.

#18287: The GraphQL binary no longer supports generating examples, or exporting its own schema as these commands have been unused for some time.

#18288: The schema file has been moved from crates/sui-graphql-rpc/schemas/current_progress_schema.graphql to crates/sui-graphql-rpc/schema.graphql.

#18336: New sub-command for sui-graphql-rpc, generate-config for creating a TOML config with all default values set.

#18450: uses the stored data to query for protocol configs instead of native configs stored in the binary.

#18413: Introduce scanLimit for paginating TransactionBlocks. Queries that include multiple complex filters (filters on the function called, affected objects, recipient), need to include a scan limit which controls the number of transactions that are looked at as candidates.

CLI

#16876: Move will now lint against while (true), which should be replaced by loop

#16878: Move will now lint against using &TxContext instead of &mut TxContext in public functions

#18978: Explicitly setting published-at = "0x0" is treated as if the published-at field was omitted.

#18964: sui client verify-source now also confirms a package's linkage table matches its source dependencies.

Rust SDK

#18996: Adds support for simulating WaitForLocalExecution in the client, using polling, as the flag will be ignored by fullnodes shortly.


Full Log: https://github.com/MystenLabs/sui/commits/mainnet-v1.32.2

testnet-v1.32.1

02 Sep 22:41
624300d
Compare
Choose a tag to compare

#19135: GraphQL fix

testnet-v1.32.0

26 Aug 23:24
5855c7f
Compare
Choose a tag to compare

Protocol

Sui Protocol Version in this release: 55

#19031: Enable Move enums in mainnet

Indexer

#18899: This PR modifies the indexer database schemas for improving GraphQL query performance. Specifically, an objects_version table along with various transaction and events lookup tables are added. The tx_calls table is replaced by more fine-grained tables: tx_calls_pkg, tx_calls_mod, and tx_calls_fun.

#18450: adds two new indexer tables that stores protocol configs and features flags of different versions.

GraphQL

#18966: Query.owner's rootVersion parameter should accepts a UInt53 rather than an Int.

#17543: Dynamic fields can now be looked up on any historical object (not just objects in the available range).

#17692: Introduce Query.package and MovePackage.atVersion to query packages at specific versions.

#17693: Add Query.latestPackage and MovePackage.latest for fetching the latest version of a package.

#17696: Introduces Query.packages for paginating through all packages (optionally bounding by the checkpoint the package was introduced in).

#17697: Introduces Query.packageVersions and MovePackage.versions for paginating over the versions of a particular package.

#18287: The GraphQL binary no longer supports generating examples, or exporting its own schema as these commands have been unused for some time.

#18288: The schema file has been moved from crates/sui-graphql-rpc/schemas/current_progress_schema.graphql to crates/sui-graphql-rpc/schema.graphql.

#18336: New sub-command for sui-graphql-rpc, generate-config for creating a TOML config with all default values set.

#18450: uses the stored data to query for protocol configs instead of native configs stored in the binary.

#18413: Introduce scanLimit for paginating TransactionBlocks. Queries that include multiple complex filters (filters on the function called, affected objects, recipient), need to include a scan limit which controls the number of transactions that are looked at as candidates.

CLI

#16876: Move will now lint against while (true), which should be replaced by loop

#16878: Move will now lint against using &TxContext instead of &mut TxContext in public functions

#18978: Explicitly setting published-at = "0x0" is treated as if the published-at field was omitted.

#18964: sui client verify-source now also confirms a package's linkage table matches its source dependencies.

Rust SDK

#18996: Adds support for simulating WaitForLocalExecution in the client, using polling, as the flag will be ignored by fullnodes shortly.


Full Log: https://github.com/MystenLabs/sui/commits/testnet-v1.32.0

devnet-v1.32.0

26 Aug 20:02
5855c7f
Compare
Choose a tag to compare
devnet-v1.32.0 Pre-release
Pre-release

Protocol

Sui Protocol Version in this release: 55

#19031: Enable Move enums in mainnet

Indexer

#18899: This PR modifies the indexer database schemas for improving GraphQL query performance. Specifically, an objects_version table along with various transaction and events lookup tables are added. The tx_calls table is replaced by more fine-grained tables: tx_calls_pkg, tx_calls_mod, and tx_calls_fun.

#18450: adds two new indexer tables that stores protocol configs and features flags of different versions.

GraphQL

#18966: Query.owner's rootVersion parameter should accepts a UInt53 rather than an Int.

#17543: Dynamic fields can now be looked up on any historical object (not just objects in the available range).

#17692: Introduce Query.package and MovePackage.atVersion to query packages at specific versions.

#17693: Add Query.latestPackage and MovePackage.latest for fetching the latest version of a package.

#17696: Introduces Query.packages for paginating through all packages (optionally bounding by the checkpoint the package was introduced in).

#17697: Introduces Query.packageVersions and MovePackage.versions for paginating over the versions of a particular package.

#18287: The GraphQL binary no longer supports generating examples, or exporting its own schema as these commands have been unused for some time.

#18288: The schema file has been moved from crates/sui-graphql-rpc/schemas/current_progress_schema.graphql to crates/sui-graphql-rpc/schema.graphql.

#18336: New sub-command for sui-graphql-rpc, generate-config for creating a TOML config with all default values set.

#18450: uses the stored data to query for protocol configs instead of native configs stored in the binary.

#18413: Introduce scanLimit for paginating TransactionBlocks. Queries that include multiple complex filters (filters on the function called, affected objects, recipient), need to include a scan limit which controls the number of transactions that are looked at as candidates.

CLI

#16876: Move will now lint against while (true), which should be replaced by loop

#16878: Move will now lint against using &TxContext instead of &mut TxContext in public functions

#18978: Explicitly setting published-at = "0x0" is treated as if the published-at field was omitted.

#18964: sui client verify-source now also confirms a package's linkage table matches its source dependencies.

Rust SDK

#18996: Adds support for simulating WaitForLocalExecution in the client, using polling, as the flag will be ignored by fullnodes shortly.


Full Log: https://github.com/MystenLabs/sui/commits/devnet-v1.32.0

mainnet-v1.31.1

20 Aug 22:18
87e1047
Compare
Choose a tag to compare

Sui Protocol Version in this release: 54

#18876: Enable soft bundle on mainnet.

#18879: Additional compiler errors for incomplete name access chains (such as use some_pkg::some_module::) might appear in the compiler output.

#18888: Enables the native randomness (random beacon) feature on Sui Mainnet.

#18862: Adds support for running GraphQL against a pruned version of the service.

#18825: Added a way to always have chainIdentifier query return the correct chain ID even when pruning is enabled.

#18794: Fixed an issue where --dump-bytecode-as-base64 did not work as expected if package addresses are automatically managed.

Full log:

https://github.com/MystenLabs/sui/commits/mainnet-v1.31.1