forked from MystenLabs/sui
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This PR was opened by the [Changesets release](https://github.com/changesets/action) GitHub action. When you're ready to do a release, you can merge this and publish to npm yourself or [setup this action to publish automatically](https://github.com/changesets/action#with-publishing). If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated. # Releases ## @mysten/[email protected] ### Minor Changes - 0259aec: Removed dependency on @open-rpc/client-js and replaced it with standard fetch and WebSocket based APIs If you are using the `subscribeEvent` or `subscribeTransaction` in environments that do not support the `WebSocket` api natively (This will be true for most versions of Node.js) you will need to provide a WebSocket implementation when creating your SuiClient. You can either use a global polyfill for the WebSocket class, or pass a compatible WebSocket implementation into SuiHTTPTransport (eg, using the `ws` package) ```typescript import { getFullnodeUrl, SuiClient, SuiHTTPTransport } from '@mysten/sui.js/client'; import { WebSocket } from 'ws'; new SuiClient({ transport: new SuiHTTPTransport({ url: getFullnodeUrl('mainnet'), // The typescript definitions may not match perfectly, casting to never avoids these minor incompatibilities WebSocketConstructor: WebSocket as never, }), }); ``` - 64d45ba: Add support for zklogin sig inside multisig ### Patch Changes - 194c980: Properly determine shared object mutability when being passed by value. - 9ac7e2f: Add additional type exports to zklogin package ## @mysten/[email protected] ### Patch Changes - Updated dependencies [194c980] - Updated dependencies [9ac7e2f] - Updated dependencies [0259aec] - Updated dependencies [64d45ba] - @mysten/[email protected] - @mysten/[email protected] ## @mysten/[email protected] ### Patch Changes - Updated dependencies [194c980] - Updated dependencies [9ac7e2f] - Updated dependencies [0259aec] - Updated dependencies [64d45ba] - @mysten/[email protected] - @mysten/[email protected] ## @mysten/[email protected] ### Patch Changes - Updated dependencies [194c980] - Updated dependencies [9ac7e2f] - Updated dependencies [0259aec] - Updated dependencies [64d45ba] - @mysten/[email protected] ## @mysten/[email protected] ### Patch Changes - 180616b: Rewrite the encryption layer - 9ac7e2f: Introduce Enoki SDK - Updated dependencies [194c980] - Updated dependencies [9ac7e2f] - Updated dependencies [0259aec] - Updated dependencies [64d45ba] - @mysten/[email protected] - @mysten/[email protected] ## @mysten/[email protected] ### Patch Changes - Updated dependencies [194c980] - Updated dependencies [9ac7e2f] - Updated dependencies [0259aec] - Updated dependencies [64d45ba] - @mysten/[email protected] ## @mysten/[email protected] ### Patch Changes - Updated dependencies [194c980] - Updated dependencies [9ac7e2f] - Updated dependencies [0259aec] - Updated dependencies [64d45ba] - @mysten/[email protected] ## @mysten/[email protected] ### Patch Changes - Updated dependencies [194c980] - Updated dependencies [9ac7e2f] - Updated dependencies [0259aec] - Updated dependencies [64d45ba] - @mysten/[email protected] - @mysten/[email protected] ## @mysten/[email protected] ### Patch Changes - Updated dependencies [194c980] - Updated dependencies [9ac7e2f] - Updated dependencies [0259aec] - Updated dependencies [64d45ba] - @mysten/[email protected] - @mysten/[email protected] - @mysten/[email protected] ## @mysten/[email protected] ### Patch Changes - Updated dependencies [194c980] - Updated dependencies [9ac7e2f] - Updated dependencies [0259aec] - Updated dependencies [64d45ba] - @mysten/[email protected] ## @mysten/[email protected] ### Patch Changes - 9ac7e2f: Add additional type exports to zklogin package - Updated dependencies [194c980] - Updated dependencies [9ac7e2f] - Updated dependencies [0259aec] - Updated dependencies [64d45ba] - @mysten/[email protected] ## @mysten/[email protected] ### Patch Changes - Updated dependencies [194c980] - Updated dependencies [9ac7e2f] - Updated dependencies [0259aec] - Updated dependencies [64d45ba] - @mysten/[email protected] - @mysten/[email protected] Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
- Loading branch information
1 parent
677b4ad
commit 0ae2526
Showing
31 changed files
with
162 additions
and
59 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,16 @@ | ||
# @mysten/create-dapp | ||
|
||
## 0.1.4 | ||
|
||
### Patch Changes | ||
|
||
- Updated dependencies [194c980cb] | ||
- Updated dependencies [9ac7e2f3d] | ||
- Updated dependencies [0259aec82] | ||
- Updated dependencies [64d45ba27] | ||
- @mysten/sui[email protected] | ||
- @mysten/dapp-kit@0.9.1 | ||
|
||
## 0.1.3 | ||
|
||
### Patch Changes | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
"author": "Mysten Labs <[email protected]>", | ||
"description": "A CLI for creating new Sui dApps", | ||
"homepage": "https://sui-typescript-docs.vercel.app", | ||
"version": "0.1.3", | ||
"version": "0.1.4", | ||
"license": "Apache-2.0", | ||
"files": [ | ||
"CHANGELOG.md", | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,16 @@ | ||
# @mysten/dapp-kit | ||
|
||
## 0.9.1 | ||
|
||
### Patch Changes | ||
|
||
- Updated dependencies [194c980cb] | ||
- Updated dependencies [9ac7e2f3d] | ||
- Updated dependencies [0259aec82] | ||
- Updated dependencies [64d45ba27] | ||
- @mysten/sui[email protected] | ||
- @mysten/wallet-standard@0.8.10 | ||
|
||
## 0.9.0 | ||
|
||
### Minor Changes | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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://sui-typescript-docs.vercel.app/typescript", | ||
"version": "0.9.0", | ||
"version": "0.9.1", | ||
"license": "Apache-2.0", | ||
"files": [ | ||
"CHANGELOG.md", | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,15 @@ | ||
# @mysten/deepbook | ||
|
||
## 0.5.10 | ||
|
||
### Patch Changes | ||
|
||
- Updated dependencies [194c980cb] | ||
- Updated dependencies [9ac7e2f3d] | ||
- Updated dependencies [0259aec82] | ||
- Updated dependencies [64d45ba27] | ||
- @mysten/sui[email protected] | ||
|
||
## 0.5.9 | ||
|
||
### Patch Changes | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
"name": "@mysten/deepbook", | ||
"author": "Mysten Labs <[email protected]>", | ||
"description": "Sui Deepbook SDK", | ||
"version": "0.5.9", | ||
"version": "0.5.10", | ||
"license": "Apache-2.0", | ||
"files": [ | ||
"dist", | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,16 @@ | ||
# @mysten/sdk-docs | ||
|
||
## 1.0.8 | ||
|
||
### Patch Changes | ||
|
||
- Updated dependencies [194c980cb] | ||
- Updated dependencies [9ac7e2f3d] | ||
- Updated dependencies [0259aec82] | ||
- Updated dependencies [64d45ba27] | ||
- @mysten/sui[email protected] | ||
- @mysten/dapp-kit@0.9.1 | ||
|
||
## 1.0.7 | ||
|
||
### Patch Changes | ||
|
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# @mysten/enoki | ||
|
||
## 0.0.2 | ||
|
||
### Patch Changes | ||
|
||
- 180616bef: Rewrite the encryption layer | ||
- 9ac7e2f3d: Introduce Enoki SDK | ||
- Updated dependencies [194c980cb] | ||
- Updated dependencies [9ac7e2f3d] | ||
- Updated dependencies [0259aec82] | ||
- Updated dependencies [64d45ba27] | ||
- @mysten/sui[email protected] | ||
- @mysten/zklogin@0.3.7 |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@mysten/enoki", | ||
"version": "0.0.1", | ||
"version": "0.0.2", | ||
"description": "TODO: Description", | ||
"license": "Apache-2.0", | ||
"author": "Mysten Labs <[email protected]>", | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,15 @@ | ||
# @mysten/kiosk | ||
|
||
## 0.7.11 | ||
|
||
### Patch Changes | ||
|
||
- Updated dependencies [194c980cb] | ||
- Updated dependencies [9ac7e2f3d] | ||
- Updated dependencies [0259aec82] | ||
- Updated dependencies [64d45ba27] | ||
- @mysten/sui[email protected] | ||
|
||
## 0.7.10 | ||
|
||
### Patch Changes | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
"name": "@mysten/kiosk", | ||
"author": "Mysten Labs <[email protected]>", | ||
"description": "Sui Kiosk library", | ||
"version": "0.7.10", | ||
"version": "0.7.11", | ||
"license": "Apache-2.0", | ||
"main": "./dist/index.js", | ||
"module": "./dist/index.mjs", | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,15 @@ | ||
# @mysten/suins-toolkit | ||
|
||
## 0.3.16 | ||
|
||
### Patch Changes | ||
|
||
- Updated dependencies [194c980cb] | ||
- Updated dependencies [9ac7e2f3d] | ||
- Updated dependencies [0259aec82] | ||
- Updated dependencies [64d45ba27] | ||
- @mysten/sui[email protected] | ||
|
||
## 0.3.15 | ||
|
||
### Patch Changes | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
"name": "@mysten/suins-toolkit", | ||
"author": "Mysten Labs <[email protected]>", | ||
"description": "SuiNS TypeScript SDK", | ||
"version": "0.3.15", | ||
"version": "0.3.16", | ||
"license": "Apache-2.0", | ||
"files": [ | ||
"dist", | ||
|
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
"author": "Mysten Labs <[email protected]>", | ||
"description": "Sui TypeScript API(Work in Progress)", | ||
"homepage": "https://sui-typescript-docs.vercel.app", | ||
"version": "0.46.1", | ||
"version": "0.47.0", | ||
"license": "Apache-2.0", | ||
"sideEffects": false, | ||
"files": [ | ||
|
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,16 @@ | ||
# @mysten/wallet-kit-core | ||
|
||
## 0.6.13 | ||
|
||
### Patch Changes | ||
|
||
- Updated dependencies [194c980cb] | ||
- Updated dependencies [9ac7e2f3d] | ||
- Updated dependencies [0259aec82] | ||
- Updated dependencies [64d45ba27] | ||
- @mysten/sui[email protected] | ||
- @mysten/wallet-standard@0.8.10 | ||
|
||
## 0.6.12 | ||
|
||
### Patch Changes | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@mysten/wallet-kit-core", | ||
"version": "0.6.12", | ||
"version": "0.6.13", | ||
"description": "TODO: Write description", | ||
"license": "Apache-2.0", | ||
"author": "Mysten Labs <[email protected]>", | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,17 @@ | ||
# @mysten/wallet-kit | ||
|
||
## 0.8.5 | ||
|
||
### Patch Changes | ||
|
||
- Updated dependencies [194c980cb] | ||
- Updated dependencies [9ac7e2f3d] | ||
- Updated dependencies [0259aec82] | ||
- Updated dependencies [64d45ba27] | ||
- @mysten/sui[email protected] | ||
- @mysten/wallet-kit-core@0.6.13 | ||
- @mysten/wallet-standard@0.8.10 | ||
|
||
## 0.8.4 | ||
|
||
### Patch Changes | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@mysten/wallet-kit", | ||
"version": "0.8.4", | ||
"version": "0.8.5", | ||
"description": "TODO: Write description", | ||
"license": "Apache-2.0", | ||
"author": "Mysten Labs <[email protected]>", | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,15 @@ | ||
# @mysten/wallet-standard | ||
|
||
## 0.8.10 | ||
|
||
### Patch Changes | ||
|
||
- Updated dependencies [194c980cb] | ||
- Updated dependencies [9ac7e2f3d] | ||
- Updated dependencies [0259aec82] | ||
- Updated dependencies [64d45ba27] | ||
- @mysten/sui[email protected] | ||
|
||
## 0.8.9 | ||
|
||
### Patch Changes | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@mysten/wallet-standard", | ||
"version": "0.8.9", | ||
"version": "0.8.10", | ||
"description": "A suite of standard utilities for implementing wallets based on the Wallet Standard.", | ||
"license": "Apache-2.0", | ||
"author": "Mysten Labs <[email protected]>", | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,16 @@ | ||
# @mysten/zklogin | ||
|
||
## 0.3.7 | ||
|
||
### Patch Changes | ||
|
||
- 9ac7e2f3d: Add additional type exports to zklogin package | ||
- Updated dependencies [194c980cb] | ||
- Updated dependencies [9ac7e2f3d] | ||
- Updated dependencies [0259aec82] | ||
- Updated dependencies [64d45ba27] | ||
- @mysten/sui[email protected] | ||
|
||
## 0.3.6 | ||
|
||
### Patch Changes | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@mysten/zklogin", | ||
"version": "0.3.6", | ||
"version": "0.3.7", | ||
"description": "Utilities for interacting with zkLogin in Sui", | ||
"license": "Apache-2.0", | ||
"author": "Mysten Labs <[email protected]>", | ||
|