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/sui@1.16.0
### Minor Changes
- ec2dc7f: Add legacyAddress flag to zklogin methods that generate
addresses
- ec2dc7f: All functionality from `@mysten/zklogin` has been moved to
`@mysten/sui/zklogin`
For most methods, simply replace the `@mysten/zklogin` import with
`@mysten/sui/zklogin`
2 Methods require one small additional change:
`computeZkLoginAddress` and `jwtToAddress` have new `legacyAddress`
flags which must be set to
true for backwards compatibility:
```diff
- import { computeZkLoginAddress, jwtToAddress } from '@mysten/zklogin';
+ import { computeZkLoginAddress, jwtToAddress } from
'@mysten/sui/zklogin';
const address = jwtToAddress(
jwtAsString,
salt,
+ true
);
const address = computeZkLoginAddress({
claimName,
claimValue,
iss,
aud,
userSalt: BigInt(salt),
+ legacyAddress: true,
});
```
## @mysten/zklogin@0.8.0
### Minor Changes
- ec2dc7f: All functionality from `@mysten/zklogin` has been moved to
`@mysten/sui/zklogin`
For most methods, simply replace the `@mysten/zklogin` import with
`@mysten/sui/zklogin`
2 Methods require one small additional change:
`computeZkLoginAddress` and `jwtToAddress` have new `legacyAddress`
flags which must be set to
true for backwards compatibility:
```diff
- import { computeZkLoginAddress, jwtToAddress } from '@mysten/zklogin';
+ import { computeZkLoginAddress, jwtToAddress } from
'@mysten/sui/zklogin';
const address = jwtToAddress(
jwtAsString,
salt,
+ true
);
const address = computeZkLoginAddress({
claimName,
claimValue,
iss,
aud,
userSalt: BigInt(salt),
+ legacyAddress: true,
});
```
### Patch Changes
- Updated dependencies [ec2dc7f]
- Updated dependencies [ec2dc7f]
- @mysten/sui@1.16.0
## @mysten/prettier-plugin-move@0.2.1
### Patch Changes
- 360e9a2: Fixes missing parser for move-parser error
## @mysten/create-dapp@0.3.41
### Patch Changes
- Updated dependencies [ec2dc7f]
- Updated dependencies [ec2dc7f]
- @mysten/sui@1.16.0
- @mysten/dapp-kit@0.14.40
## @mysten/dapp-kit@0.14.40
### Patch Changes
- Updated dependencies [ec2dc7f]
- Updated dependencies [ec2dc7f]
- @mysten/sui@1.16.0
- @mysten/wallet-standard@0.13.16
- @mysten/zksend@0.12.6
## @mysten/deepbook@0.8.30
### Patch Changes
- Updated dependencies [ec2dc7f]
- Updated dependencies [ec2dc7f]
- @mysten/sui@1.16.0
## @mysten/deepbook-v3@0.12.15
### Patch Changes
- Updated dependencies [ec2dc7f]
- Updated dependencies [ec2dc7f]
- @mysten/sui@1.16.0
## @mysten/enoki@0.4.14
### Patch Changes
- Updated dependencies [ec2dc7f]
- Updated dependencies [ec2dc7f]
- @mysten/sui@1.16.0
- @mysten/zklogin@0.8.0
## @mysten/graphql-transport@0.2.32
### Patch Changes
- Updated dependencies [ec2dc7f]
- Updated dependencies [ec2dc7f]
- @mysten/sui@1.16.0
## @mysten/kiosk@0.9.30
### Patch Changes
- Updated dependencies [ec2dc7f]
- Updated dependencies [ec2dc7f]
- @mysten/sui@1.16.0
## @mysten/kms@0.0.10
### Patch Changes
- Updated dependencies [ec2dc7f]
- Updated dependencies [ec2dc7f]
- @mysten/sui@1.16.0
## @mysten/suins-toolkit@0.5.30
### Patch Changes
- Updated dependencies [ec2dc7f]
- Updated dependencies [ec2dc7f]
- @mysten/sui@1.16.0
## @mysten/wallet-standard@0.13.16
### Patch Changes
- Updated dependencies [ec2dc7f]
- Updated dependencies [ec2dc7f]
- @mysten/sui@1.16.0
## @mysten/zksend@0.12.6
### Patch Changes
- Updated dependencies [ec2dc7f]
- Updated dependencies [ec2dc7f]
- @mysten/sui@1.16.0
- @mysten/wallet-standard@0.13.16
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>