Skip to content

Commit

Permalink
Version Packages
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Jul 15, 2024
1 parent 15acca3 commit aa5f759
Show file tree
Hide file tree
Showing 29 changed files with 478 additions and 201 deletions.
5 changes: 0 additions & 5 deletions .changeset/seven-chicken-occur.md

This file was deleted.

17 changes: 0 additions & 17 deletions .changeset/shaggy-cows-decide.md

This file was deleted.

39 changes: 28 additions & 11 deletions sdk/bcs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,17 @@
# Change Log

## 1.0.3

### Patch Changes

- 0f27a97: Update dependencies

## 1.0.2

### Patch Changes

- 369b924343: Improve error messages when attempting to serialze non-array values that should be arrays
- 369b924343: Improve error messages when attempting to serialze non-array values that should be
arrays

## 1.0.1

Expand All @@ -16,8 +23,10 @@

### Major Changes

- a92b03de42: The Typescript SDK has been renamed to `@mysten/sui` and includes many new features and breaking changes.
See the [full migration guide](https://sdk.mystenlabs.com/typescript/migrations/sui-1.0) for details on how to upgrade.
- a92b03de42: The Typescript SDK has been renamed to `@mysten/sui` and includes many new features
and breaking changes. See the
[full migration guide](https://sdk.mystenlabs.com/typescript/migrations/sui-1.0) for details on
how to upgrade.

## 0.11.1

Expand Down Expand Up @@ -53,7 +62,8 @@

### Minor Changes

- fce0a08d0f: Deprecate the bcs.generic helper. This helper causes typescript performance issues, and the generated generics can't be exported
- fce0a08d0f: Deprecate the bcs.generic helper. This helper causes typescript performance issues,
and the generated generics can't be exported

## 0.8.1

Expand All @@ -65,7 +75,8 @@

### Minor Changes

- 1bc430161: Add new type-safe schema builder. See https://sdk.mystenlabs.com/bcs for updated documentation
- 1bc430161: Add new type-safe schema builder. See https://sdk.mystenlabs.com/bcs for updated
documentation
- e4484852b: Add isSerializedBcs helper

## 0.7.4
Expand Down Expand Up @@ -97,14 +108,17 @@

### Minor Changes

- 19b567f21: Unified self- and delegated staking flows. Removed fields from `Validator` (`stake_amount`, `pending_stake`, and `pending_withdraw`) and renamed `delegation_staking_pool` to `staking_pool`. Additionally removed the `validator_stake` and `delegated_stake` fields in the `ValidatorSet` type and replaced them with a `total_stake` field.
- 19b567f21: Unified self- and delegated staking flows. Removed fields from `Validator`
(`stake_amount`, `pending_stake`, and `pending_withdraw`) and renamed `delegation_staking_pool` to
`staking_pool`. Additionally removed the `validator_stake` and `delegated_stake` fields in the
`ValidatorSet` type and replaced them with a `total_stake` field.
- 5c3b00cde: Add object id to staking pool and pool id to staked sui.
- 3d9a04648: Adds `deactivation_epoch` to staking pool object, and adds `inactive_pools` to the validator set object.
- 3d9a04648: Adds `deactivation_epoch` to staking pool object, and adds `inactive_pools` to the
validator set object.
- a8049d159: Fixes the issue with deep nested generics by introducing array type names

- all of the methods (except for aliasing) now allow passing in arrays instead
of strings to allow for easier composition of generics and avoid using template
strings
- all of the methods (except for aliasing) now allow passing in arrays instead of strings to allow
for easier composition of generics and avoid using template strings

```js
// new syntax
Expand All @@ -123,7 +137,10 @@
Similar approach applies to `bcs.ser()` and `bcs.de()` as well as to other register\* methods

- a0955c479: Switch from 20 to 32-byte address. Match Secp256k1.deriveKeypair with Ed25519.
- 0a7b42a6d: This changes almost all occurences of "delegate", "delegation" (and various capitalizations/forms) to their equivalent "stake"-based name. Function names, function argument names, RPC endpoints, Move functions, and object fields have been updated with this new naming convention.
- 0a7b42a6d: This changes almost all occurences of "delegate", "delegation" (and various
capitalizations/forms) to their equivalent "stake"-based name. Function names, function argument
names, RPC endpoints, Move functions, and object fields have been updated with this new naming
convention.
- 77bdf907f: When parsing u64, u128, and u256 values with bcs, they are now string encoded.

## 0.6.1
Expand Down
2 changes: 1 addition & 1 deletion sdk/bcs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mysten/bcs",
"version": "1.0.2",
"version": "1.0.3",
"description": "BCS - Canonical Binary Serialization implementation for JavaScript",
"license": "Apache-2.0",
"author": "Mysten Labs <[email protected]>",
Expand Down
16 changes: 14 additions & 2 deletions sdk/create-dapp/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @mysten/create-dapp

## 0.3.12

### Patch Changes

- 0f27a97: Update dependencies
- Updated dependencies [0fb0628]
- Updated dependencies [0f27a97]
- @mysten/sui@1.2.2
- @mysten/dapp-kit@0.14.12

## 0.3.11

### Patch Changes
Expand Down Expand Up @@ -92,8 +102,10 @@

### Minor Changes

- a92b03de42: The Typescript SDK has been renamed to `@mysten/sui` and includes many new features and breaking changes.
See the [full migration guide](https://sdk.mystenlabs.com/typescript/migrations/sui-1.0) for details on how to upgrade.
- a92b03de42: The Typescript SDK has been renamed to `@mysten/sui` and includes many new features
and breaking changes. See the
[full migration guide](https://sdk.mystenlabs.com/typescript/migrations/sui-1.0) for details on
how to upgrade.

### Patch Changes

Expand Down
2 changes: 1 addition & 1 deletion sdk/create-dapp/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"author": "Mysten Labs <[email protected]>",
"description": "A CLI for creating new Sui dApps",
"homepage": "https://sdk.mystenlabs.com",
"version": "0.3.11",
"version": "0.3.12",
"license": "Apache-2.0",
"files": [
"CHANGELOG.md",
Expand Down
39 changes: 27 additions & 12 deletions sdk/dapp-kit/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# @mysten/dapp-kit

## 0.14.12

### Patch Changes

- 0f27a97: Update dependencies
- Updated dependencies [0fb0628]
- Updated dependencies [0f27a97]
- @mysten/sui@1.2.2
- @mysten/wallet-standard@0.12.12
- @mysten/zksend@0.10.1

## 0.14.11

### Patch Changes
Expand Down Expand Up @@ -106,8 +117,10 @@

### Minor Changes

- a92b03de42: The Typescript SDK has been renamed to `@mysten/sui` and includes many new features and breaking changes.
See the [full migration guide](https://sdk.mystenlabs.com/typescript/migrations/sui-1.0) for details on how to upgrade.
- a92b03de42: The Typescript SDK has been renamed to `@mysten/sui` and includes many new features
and breaking changes. See the
[full migration guide](https://sdk.mystenlabs.com/typescript/migrations/sui-1.0) for details on
how to upgrade.

### Patch Changes

Expand All @@ -122,7 +135,8 @@

### Patch Changes

- 3f8b08dedc: Fix broken theme style tag in canary versions of React when the provider is placed outside of the body tag
- 3f8b08dedc: Fix broken theme style tag in canary versions of React when the provider is placed
outside of the body tag
- Updated dependencies [eeb19db837]
- @mysten/zksend@0.8.2

Expand All @@ -138,7 +152,8 @@

### Minor Changes

- 807262f394: The `zksend` property on the `WalletProvider` has been replaced with a `stashedWallet` option.
- 807262f394: The `zksend` property on the `WalletProvider` has been replaced with a `stashedWallet`
option.

### Patch Changes

Expand Down Expand Up @@ -431,14 +446,12 @@
### Minor Changes

- d4d9c9218: Upgrade dapp-kit and the scaffold applications to react-query v5
- fb0ce3485: Add global connection status info and change the hook interface of `useCurrentWallet` to
return an object to encapsulate connection info together. To migrate:
- fb0ce3485: Add global connection status info and change the hook interface of `useCurrentWallet`
to return an object to encapsulate connection info together. To migrate:

Before:
const currentWallet = useCurrentWallet();
Before: const currentWallet = useCurrentWallet();

After:
const { currentWallet } = useCurrentWallet();
After: const { currentWallet } = useCurrentWallet();

### Patch Changes

Expand Down Expand Up @@ -467,7 +480,8 @@
- 361818abc: execute transaction from dApp rather than wallet in useSignAndExecuteTransactionBlock
- 2b532bc37: Fix issue where CSS was being overridden by application code
- 0c5cdc049: Expose types related to theming
- c7e12c928: Infer the active chain when signing transactions and expose some more descriptive errors
- c7e12c928: Infer the active chain when signing transactions and expose some more descriptive
errors

### Patch Changes

Expand Down Expand Up @@ -513,7 +527,8 @@

- b29f66f18: Add theme definitions for our UI components
- 1227ee1ce: Theme UI components based on provided theme and add design polish
- 8e9590a8c: Exclude non-Sui accounts from the accounts state when someone connects a multi-chain wallet
- 8e9590a8c: Exclude non-Sui accounts from the accounts state when someone connects a multi-chain
wallet

## 0.1.0

Expand Down
2 changes: 1 addition & 1 deletion sdk/dapp-kit/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"author": "Mysten Labs <[email protected]>",
"description": "A collection of React hooks and components for interacting with the Sui blockchain and wallets.",
"homepage": "https://sdk.mystenlabs.com/typescript",
"version": "0.14.11",
"version": "0.14.12",
"license": "Apache-2.0",
"files": [
"CHANGELOG.md",
Expand Down
24 changes: 19 additions & 5 deletions sdk/deepbook/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @mysten/deepbook

## 0.8.11

### Patch Changes

- 0f27a97: Update dependencies
- Updated dependencies [0fb0628]
- Updated dependencies [0f27a97]
- @mysten/sui@1.2.2

## 0.8.10

### Patch Changes
Expand Down Expand Up @@ -76,8 +85,10 @@

### Minor Changes

- a92b03de42: The Typescript SDK has been renamed to `@mysten/sui` and includes many new features and breaking changes.
See the [full migration guide](https://sdk.mystenlabs.com/typescript/migrations/sui-1.0) for details on how to upgrade.
- a92b03de42: The Typescript SDK has been renamed to `@mysten/sui` and includes many new features
and breaking changes. See the
[full migration guide](https://sdk.mystenlabs.com/typescript/migrations/sui-1.0) for details on
how to upgrade.

### Patch Changes

Expand Down Expand Up @@ -147,7 +158,8 @@

### Minor Changes

- b8fe02be26: GetLevel2BookStatus method of deepbook can retrieve both ask and bid side in a single call, if input argument is equal to 'both'.
- b8fe02be26: GetLevel2BookStatus method of deepbook can retrieve both ask and bid side in a single
call, if input argument is equal to 'both'.

### Patch Changes

Expand Down Expand Up @@ -214,7 +226,8 @@

### Patch Changes

- 43444c58f: Extend the `TransactionBlock#object()` API to accept the `TransactionResult` type as well, so that it can be used flexibly in SDKs.
- 43444c58f: Extend the `TransactionBlock#object()` API to accept the `TransactionResult` type as
well, so that it can be used flexibly in SDKs.
- Updated dependencies [28c2c3330]
- Updated dependencies [43444c58f]
- Updated dependencies [8d1e74e52]
Expand Down Expand Up @@ -336,7 +349,8 @@

- 6d41059c7: Update to use modular imports from @mysten/sui.js

Some methods now accept a `SuiClient` imported from `@mysten/sui.js/client` rather than a `JsonRpcProvider`
Some methods now accept a `SuiClient` imported from `@mysten/sui.js/client` rather than a
`JsonRpcProvider`

### Patch Changes

Expand Down
2 changes: 1 addition & 1 deletion sdk/deepbook/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@mysten/deepbook",
"author": "Mysten Labs <[email protected]>",
"description": "Sui Deepbook SDK",
"version": "0.8.10",
"version": "0.8.11",
"license": "Apache-2.0",
"type": "commonjs",
"main": "./dist/cjs/index.js",
Expand Down
16 changes: 14 additions & 2 deletions sdk/enoki/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @mysten/enoki

## 0.3.11

### Patch Changes

- 0f27a97: Update dependencies
- Updated dependencies [0fb0628]
- Updated dependencies [0f27a97]
- @mysten/sui@1.2.2
- @mysten/zklogin@0.7.11

## 0.3.10

### Patch Changes
Expand Down Expand Up @@ -86,8 +96,10 @@

### Minor Changes

- a92b03de42: The Typescript SDK has been renamed to `@mysten/sui` and includes many new features and breaking changes.
See the [full migration guide](https://sdk.mystenlabs.com/typescript/migrations/sui-1.0) for details on how to upgrade.
- a92b03de42: The Typescript SDK has been renamed to `@mysten/sui` and includes many new features
and breaking changes. See the
[full migration guide](https://sdk.mystenlabs.com/typescript/migrations/sui-1.0) for details on
how to upgrade.

### Patch Changes

Expand Down
2 changes: 1 addition & 1 deletion sdk/enoki/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mysten/enoki",
"version": "0.3.10",
"version": "0.3.11",
"description": "TODO: Description",
"license": "Apache-2.0",
"author": "Mysten Labs <[email protected]>",
Expand Down
16 changes: 14 additions & 2 deletions sdk/graphql-transport/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @mysten/graphql-transport

## 0.2.11

### Patch Changes

- 0f27a97: Update dependencies
- Updated dependencies [0fb0628]
- Updated dependencies [0f27a97]
- @mysten/sui@1.2.2
- @mysten/bcs@1.0.3

## 0.2.10

### Patch Changes
Expand Down Expand Up @@ -80,8 +90,10 @@

### Minor Changes

- a92b03de42: The Typescript SDK has been renamed to `@mysten/sui` and includes many new features and breaking changes.
See the [full migration guide](https://sdk.mystenlabs.com/typescript/migrations/sui-1.0) for details on how to upgrade.
- a92b03de42: The Typescript SDK has been renamed to `@mysten/sui` and includes many new features
and breaking changes. See the
[full migration guide](https://sdk.mystenlabs.com/typescript/migrations/sui-1.0) for details on
how to upgrade.

### Patch Changes

Expand Down
2 changes: 1 addition & 1 deletion sdk/graphql-transport/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mysten/graphql-transport",
"version": "0.2.10",
"version": "0.2.11",
"description": "A GraphQL transport to allow SuiClient to work with RPC 2.0",
"license": "Apache-2.0",
"author": "Mysten Labs <[email protected]>",
Expand Down
Loading

0 comments on commit aa5f759

Please sign in to comment.