Skip to content

Commit

Permalink
Version Packages (MystenLabs#14859)
Browse files Browse the repository at this point in the history
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
sui-merge-bot[bot] and github-actions[bot] authored Nov 21, 2023
1 parent 677b4ad commit 0ae2526
Show file tree
Hide file tree
Showing 31 changed files with 162 additions and 59 deletions.
5 changes: 0 additions & 5 deletions .changeset/beige-tigers-knock.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/calm-ligers-rush.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/cool-pillows-share.md

This file was deleted.

20 changes: 0 additions & 20 deletions .changeset/polite-humans-bow.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/silver-eels-tell.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/two-hounds-chew.md

This file was deleted.

11 changes: 11 additions & 0 deletions sdk/create-dapp/CHANGELOG.md
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
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://sui-typescript-docs.vercel.app",
"version": "0.1.3",
"version": "0.1.4",
"license": "Apache-2.0",
"files": [
"CHANGELOG.md",
Expand Down
11 changes: 11 additions & 0 deletions sdk/dapp-kit/CHANGELOG.md
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
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://sui-typescript-docs.vercel.app/typescript",
"version": "0.9.0",
"version": "0.9.1",
"license": "Apache-2.0",
"files": [
"CHANGELOG.md",
Expand Down
10 changes: 10 additions & 0 deletions sdk/deepbook/CHANGELOG.md
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
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.5.9",
"version": "0.5.10",
"license": "Apache-2.0",
"files": [
"dist",
Expand Down
11 changes: 11 additions & 0 deletions sdk/docs/CHANGELOG.md
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
Expand Down
2 changes: 1 addition & 1 deletion sdk/docs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mysten/sdk-docs",
"version": "1.0.7",
"version": "1.0.8",
"private": true,
"description": "Docs for @mysten npm packages",
"main": "index.js",
Expand Down
14 changes: 14 additions & 0 deletions sdk/enoki/CHANGELOG.md
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
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.0.1",
"version": "0.0.2",
"description": "TODO: Description",
"license": "Apache-2.0",
"author": "Mysten Labs <[email protected]>",
Expand Down
10 changes: 10 additions & 0 deletions sdk/kiosk/CHANGELOG.md
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
Expand Down
2 changes: 1 addition & 1 deletion sdk/kiosk/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
10 changes: 10 additions & 0 deletions sdk/suins-toolkit/CHANGELOG.md
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
Expand Down
2 changes: 1 addition & 1 deletion sdk/suins-toolkit/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
28 changes: 28 additions & 0 deletions sdk/typescript/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,33 @@
# @mysten/sui.js

## 0.47.0

### Minor Changes

- 0259aec82: 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,
}),
});
```

- 64d45ba27: Add support for zklogin sig inside multisig

### Patch Changes

- 194c980cb: Properly determine shared object mutability when being passed by value.
- 9ac7e2f3d: Add additional type exports to zklogin package

## 0.46.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion sdk/typescript/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": [
Expand Down
2 changes: 1 addition & 1 deletion sdk/typescript/src/version.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@

// This file is generated by genversion.mjs. Do not edit it directly.

export const PACKAGE_VERSION = '0.46.1';
export const PACKAGE_VERSION = '0.47.0';
export const TARGETED_RPC_VERSION = '1.15.0';
11 changes: 11 additions & 0 deletions sdk/wallet-kit/core/CHANGELOG.md
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
Expand Down
2 changes: 1 addition & 1 deletion sdk/wallet-kit/core/package.json
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]>",
Expand Down
12 changes: 12 additions & 0 deletions sdk/wallet-kit/react/CHANGELOG.md
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
Expand Down
2 changes: 1 addition & 1 deletion sdk/wallet-kit/react/package.json
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]>",
Expand Down
10 changes: 10 additions & 0 deletions sdk/wallet-standard/CHANGELOG.md
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
Expand Down
2 changes: 1 addition & 1 deletion sdk/wallet-standard/package.json
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]>",
Expand Down
11 changes: 11 additions & 0 deletions sdk/zklogin/CHANGELOG.md
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
Expand Down
2 changes: 1 addition & 1 deletion sdk/zklogin/package.json
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]>",
Expand Down

0 comments on commit 0ae2526

Please sign in to comment.