From 6f3f651e4f22f7fab0aa53af6db63361cd1e99ee Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 19 Dec 2025 04:35:20 +0000 Subject: [PATCH] chore(release): version packages --- .changeset/bright-rings-dream.md | 5 ---- .changeset/cold-dancers-push.md | 16 ------------- .changeset/fruity-lands-help.md | 6 ----- .changeset/gold-ducks-repeat.md | 6 ----- .changeset/ten-cases-own.md | 5 ---- .changeset/warm-lizards-fry.md | 7 ------ apps/explorer/CHANGELOG.md | 14 +++++++++++ apps/explorer/package.json | 2 +- packages/artillery/CHANGELOG.md | 13 ++++++++++ packages/artillery/package.json | 2 +- packages/auth-helpers/CHANGELOG.md | 6 +++++ packages/auth-helpers/package.json | 2 +- packages/auth-services/CHANGELOG.md | 12 ++++++++++ packages/auth-services/package.json | 2 +- packages/auth/CHANGELOG.md | 6 +++++ packages/auth/package.json | 2 +- packages/constants/CHANGELOG.md | 16 +++++++++++++ packages/constants/package.json | 2 +- packages/contracts/CHANGELOG.md | 7 ++++++ packages/contracts/package.json | 2 +- packages/crypto/CHANGELOG.md | 8 +++++-- packages/crypto/package.json | 2 +- packages/e2e/CHANGELOG.md | 24 +++++++++++++++++++ packages/e2e/package.json | 2 +- packages/lit-client/CHANGELOG.md | 10 ++++++++ packages/lit-client/package.json | 2 +- packages/networks/CHANGELOG.md | 16 +++++++++++++ packages/networks/package.json | 2 +- .../wrapped-keys-lit-actions/CHANGELOG.md | 6 +++++ .../wrapped-keys-lit-actions/package.json | 2 +- packages/wrapped-keys/CHANGELOG.md | 19 +++++++++++++++ packages/wrapped-keys/package.json | 2 +- 32 files changed, 168 insertions(+), 60 deletions(-) delete mode 100644 .changeset/bright-rings-dream.md delete mode 100644 .changeset/cold-dancers-push.md delete mode 100644 .changeset/fruity-lands-help.md delete mode 100644 .changeset/gold-ducks-repeat.md delete mode 100644 .changeset/ten-cases-own.md delete mode 100644 .changeset/warm-lizards-fry.md create mode 100644 apps/explorer/CHANGELOG.md diff --git a/.changeset/bright-rings-dream.md b/.changeset/bright-rings-dream.md deleted file mode 100644 index 55aa368e9..000000000 --- a/.changeset/bright-rings-dream.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@lit-protocol/constants': major ---- - -Remove deprecated campNetwork config from EVM network constants, update RPC and block explorer URLs for campTestnet, and add campMainnet network config. diff --git a/.changeset/cold-dancers-push.md b/.changeset/cold-dancers-push.md deleted file mode 100644 index 4bbd38327..000000000 --- a/.changeset/cold-dancers-push.md +++ /dev/null @@ -1,16 +0,0 @@ ---- -'@lit-protocol/wrapped-keys-lit-actions': minor -'@lit-protocol/auth-services': minor -'@lit-protocol/auth-helpers': minor -'@lit-protocol/wrapped-keys': minor -'@lit-protocol/lit-client': minor -'@lit-protocol/artillery': minor -'@lit-protocol/constants': minor -'@lit-protocol/contracts': minor -'@lit-protocol/networks': minor -'@lit-protocol/crypto': minor -'@lit-protocol/auth': minor -'@lit-protocol/e2e': minor ---- - -Introduce wrapped-keys support to v8 so applications can generate, import, export, and sign with encrypted keys across EVM and Solana without exposing private key material. New `auth` package APIs include `validateDelegationAuthSig`, `generatePkpDelegationAuthSig`, `generateEoaDelegationAuthSig`, `createPkpAuthContextFromPreGenerated`, and `createPkpSessionSigs`. New `wrapped-keys` APIs include `generatePrivateKey`, `importPrivateKey`, `exportPrivateKey`, `listEncryptedKeyMetadata`, `getEncryptedKey`, `storeEncryptedKey`, `storeEncryptedKeyBatch`, `batchGeneratePrivateKeys`, `signMessageWithEncryptedKey`, and `signTransactionWithEncryptedKey`. See the updated docs (guides/server-sessions, sdk-reference/wrapped-keys, and the new auth references) for end-to-end examples. [PR](https://github.com/LIT-Protocol/js-sdk/pull/972) diff --git a/.changeset/fruity-lands-help.md b/.changeset/fruity-lands-help.md deleted file mode 100644 index bfbd49585..000000000 --- a/.changeset/fruity-lands-help.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -'@lit-protocol/contracts': minor -'@lit-protocol/networks': minor ---- - -Add `naga` and `naga-proto` networks. Create per-network entrypoints and subpath exports (naga, naga-production, naga-proto, naga-staging, naga-test, naga-dev, naga-local) for better tree-shaking diff --git a/.changeset/gold-ducks-repeat.md b/.changeset/gold-ducks-repeat.md deleted file mode 100644 index f2fc0c924..000000000 --- a/.changeset/gold-ducks-repeat.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -'@lit-protocol/networks': patch -'@lit-protocol/e2e': patch ---- - -PKP signing now auto-hashes Cosmos payloads, exposes a documented bypassAutoHashing option, and ships with a new e2e suite plus docs so builders can rely on every listed curve working out of the box. diff --git a/.changeset/ten-cases-own.md b/.changeset/ten-cases-own.md deleted file mode 100644 index efd0cf7c2..000000000 --- a/.changeset/ten-cases-own.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@lit-protocol/networks': minor ---- - -Expose and aggregate payment details returned by Lit nodes from Lit Action execution requests. diff --git a/.changeset/warm-lizards-fry.md b/.changeset/warm-lizards-fry.md deleted file mode 100644 index d4717317d..000000000 --- a/.changeset/warm-lizards-fry.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -'@lit-protocol/lit-client': patch -'@lit-protocol/networks': patch -'@lit-protocol/e2e': patch ---- - -SDK exposes typed Shiva env helpers (`createShivaEnvVars`, `waitForTestnetInfo`, `SUPPORTED_NETWORKS`) so QA suites can spin up testnets without bespoke env plumbing, and the new `executeWithHandshake` runner automatically retry failures for more stable Lit action execution. diff --git a/apps/explorer/CHANGELOG.md b/apps/explorer/CHANGELOG.md new file mode 100644 index 000000000..a08713ea0 --- /dev/null +++ b/apps/explorer/CHANGELOG.md @@ -0,0 +1,14 @@ +# @lit-protocol/explorer + +## 0.0.1 + +### Patch Changes + +- Updated dependencies [0a80342] +- Updated dependencies [edf1099] +- Updated dependencies [d2ff969] +- Updated dependencies [b5258b7] +- Updated dependencies [fd9544d] + - @lit-protocol/lit-client@8.3.0 + - @lit-protocol/networks@8.4.0 + - @lit-protocol/auth@8.2.0 diff --git a/apps/explorer/package.json b/apps/explorer/package.json index 3611e7a4d..42706e804 100644 --- a/apps/explorer/package.json +++ b/apps/explorer/package.json @@ -1,7 +1,7 @@ { "name": "@lit-protocol/explorer", "private": true, - "version": "0.0.0", + "version": "0.0.1", "type": "module", "scripts": { "dev": "vite", diff --git a/packages/artillery/CHANGELOG.md b/packages/artillery/CHANGELOG.md index 9e46e8a42..cfd24c940 100644 --- a/packages/artillery/CHANGELOG.md +++ b/packages/artillery/CHANGELOG.md @@ -1,5 +1,18 @@ # @lit-protocol/artillery +## 0.1.0 + +### Minor Changes + +- 0a80342: Introduce wrapped-keys support to v8 so applications can generate, import, export, and sign with encrypted keys across EVM and Solana without exposing private key material. New `auth` package APIs include `validateDelegationAuthSig`, `generatePkpDelegationAuthSig`, `generateEoaDelegationAuthSig`, `createPkpAuthContextFromPreGenerated`, and `createPkpSessionSigs`. New `wrapped-keys` APIs include `generatePrivateKey`, `importPrivateKey`, `exportPrivateKey`, `listEncryptedKeyMetadata`, `getEncryptedKey`, `storeEncryptedKey`, `storeEncryptedKeyBatch`, `batchGeneratePrivateKeys`, `signMessageWithEncryptedKey`, and `signTransactionWithEncryptedKey`. See the updated docs (guides/server-sessions, sdk-reference/wrapped-keys, and the new auth references) for end-to-end examples. [PR](https://github.com/LIT-Protocol/js-sdk/pull/972) + +### Patch Changes + +- Updated dependencies [0a80342] +- Updated dependencies [d2ff969] +- Updated dependencies [fd9544d] + - @lit-protocol/e2e@5.0.0 + ## 0.0.10 ### Patch Changes diff --git a/packages/artillery/package.json b/packages/artillery/package.json index 36f0c2e54..8c9f16e0e 100644 --- a/packages/artillery/package.json +++ b/packages/artillery/package.json @@ -1,6 +1,6 @@ { "name": "@lit-protocol/artillery", - "version": "0.0.10", + "version": "0.1.0", "private": true, "type": "commonjs", "dependencies": { diff --git a/packages/auth-helpers/CHANGELOG.md b/packages/auth-helpers/CHANGELOG.md index 6fb327795..cf8a602de 100644 --- a/packages/auth-helpers/CHANGELOG.md +++ b/packages/auth-helpers/CHANGELOG.md @@ -1,5 +1,11 @@ # @lit-protocol/auth-helpers +## 8.2.0 + +### Minor Changes + +- 0a80342: Introduce wrapped-keys support to v8 so applications can generate, import, export, and sign with encrypted keys across EVM and Solana without exposing private key material. New `auth` package APIs include `validateDelegationAuthSig`, `generatePkpDelegationAuthSig`, `generateEoaDelegationAuthSig`, `createPkpAuthContextFromPreGenerated`, and `createPkpSessionSigs`. New `wrapped-keys` APIs include `generatePrivateKey`, `importPrivateKey`, `exportPrivateKey`, `listEncryptedKeyMetadata`, `getEncryptedKey`, `storeEncryptedKey`, `storeEncryptedKeyBatch`, `batchGeneratePrivateKeys`, `signMessageWithEncryptedKey`, and `signTransactionWithEncryptedKey`. See the updated docs (guides/server-sessions, sdk-reference/wrapped-keys, and the new auth references) for end-to-end examples. [PR](https://github.com/LIT-Protocol/js-sdk/pull/972) + ## 8.1.1 ### Patch Changes diff --git a/packages/auth-helpers/package.json b/packages/auth-helpers/package.json index e37dc10f6..6ad4dbcf6 100644 --- a/packages/auth-helpers/package.json +++ b/packages/auth-helpers/package.json @@ -25,7 +25,7 @@ "crypto": false, "stream": false }, - "version": "8.1.1", + "version": "8.2.0", "main": "./src/index.js", "typings": "./src/index.d.ts", "dependencies": { diff --git a/packages/auth-services/CHANGELOG.md b/packages/auth-services/CHANGELOG.md index 4e61b0f07..a98a9411f 100644 --- a/packages/auth-services/CHANGELOG.md +++ b/packages/auth-services/CHANGELOG.md @@ -1,5 +1,17 @@ # @lit-protocol/auth-services +## 2.1.0 + +### Minor Changes + +- 0a80342: Introduce wrapped-keys support to v8 so applications can generate, import, export, and sign with encrypted keys across EVM and Solana without exposing private key material. New `auth` package APIs include `validateDelegationAuthSig`, `generatePkpDelegationAuthSig`, `generateEoaDelegationAuthSig`, `createPkpAuthContextFromPreGenerated`, and `createPkpSessionSigs`. New `wrapped-keys` APIs include `generatePrivateKey`, `importPrivateKey`, `exportPrivateKey`, `listEncryptedKeyMetadata`, `getEncryptedKey`, `storeEncryptedKey`, `storeEncryptedKeyBatch`, `batchGeneratePrivateKeys`, `signMessageWithEncryptedKey`, and `signTransactionWithEncryptedKey`. See the updated docs (guides/server-sessions, sdk-reference/wrapped-keys, and the new auth references) for end-to-end examples. [PR](https://github.com/LIT-Protocol/js-sdk/pull/972) + +### Patch Changes + +- Updated dependencies [0a80342] +- Updated dependencies [edf1099] + - @lit-protocol/contracts@0.9.0 + ## 2.0.8 ### Patch Changes diff --git a/packages/auth-services/package.json b/packages/auth-services/package.json index f9cf50cca..35f5f7501 100644 --- a/packages/auth-services/package.json +++ b/packages/auth-services/package.json @@ -1,6 +1,6 @@ { "name": "@lit-protocol/auth-services", - "version": "2.0.8", + "version": "2.1.0", "license": "MIT", "type": "commonjs", "main": "./src/index.js", diff --git a/packages/auth/CHANGELOG.md b/packages/auth/CHANGELOG.md index 4af9e8c78..ba507cea1 100644 --- a/packages/auth/CHANGELOG.md +++ b/packages/auth/CHANGELOG.md @@ -1,5 +1,11 @@ # @lit-protocol/auth +## 8.2.0 + +### Minor Changes + +- 0a80342: Introduce wrapped-keys support to v8 so applications can generate, import, export, and sign with encrypted keys across EVM and Solana without exposing private key material. New `auth` package APIs include `validateDelegationAuthSig`, `generatePkpDelegationAuthSig`, `generateEoaDelegationAuthSig`, `createPkpAuthContextFromPreGenerated`, and `createPkpSessionSigs`. New `wrapped-keys` APIs include `generatePrivateKey`, `importPrivateKey`, `exportPrivateKey`, `listEncryptedKeyMetadata`, `getEncryptedKey`, `storeEncryptedKey`, `storeEncryptedKeyBatch`, `batchGeneratePrivateKeys`, `signMessageWithEncryptedKey`, and `signTransactionWithEncryptedKey`. See the updated docs (guides/server-sessions, sdk-reference/wrapped-keys, and the new auth references) for end-to-end examples. [PR](https://github.com/LIT-Protocol/js-sdk/pull/972) + ## 8.1.2 ### Patch Changes diff --git a/packages/auth/package.json b/packages/auth/package.json index 09d4cd268..b7f5490af 100644 --- a/packages/auth/package.json +++ b/packages/auth/package.json @@ -44,7 +44,7 @@ "crypto": false, "stream": false }, - "version": "8.1.2", + "version": "8.2.0", "main": "./index.js", "typings": "./index.d.ts", "types": "./index.d.ts" diff --git a/packages/constants/CHANGELOG.md b/packages/constants/CHANGELOG.md index ddaac54fe..6abc82058 100644 --- a/packages/constants/CHANGELOG.md +++ b/packages/constants/CHANGELOG.md @@ -1,5 +1,21 @@ # @lit-protocol/constants +## 9.0.0 + +### Major Changes + +- 42e5151: Remove deprecated campNetwork config from EVM network constants, update RPC and block explorer URLs for campTestnet, and add campMainnet network config. + +### Minor Changes + +- 0a80342: Introduce wrapped-keys support to v8 so applications can generate, import, export, and sign with encrypted keys across EVM and Solana without exposing private key material. New `auth` package APIs include `validateDelegationAuthSig`, `generatePkpDelegationAuthSig`, `generateEoaDelegationAuthSig`, `createPkpAuthContextFromPreGenerated`, and `createPkpSessionSigs`. New `wrapped-keys` APIs include `generatePrivateKey`, `importPrivateKey`, `exportPrivateKey`, `listEncryptedKeyMetadata`, `getEncryptedKey`, `storeEncryptedKey`, `storeEncryptedKeyBatch`, `batchGeneratePrivateKeys`, `signMessageWithEncryptedKey`, and `signTransactionWithEncryptedKey`. See the updated docs (guides/server-sessions, sdk-reference/wrapped-keys, and the new auth references) for end-to-end examples. [PR](https://github.com/LIT-Protocol/js-sdk/pull/972) + +### Patch Changes + +- Updated dependencies [0a80342] +- Updated dependencies [edf1099] + - @lit-protocol/contracts@0.9.0 + ## 8.0.8 ### Patch Changes diff --git a/packages/constants/package.json b/packages/constants/package.json index 83b86ff7a..35e4ed499 100644 --- a/packages/constants/package.json +++ b/packages/constants/package.json @@ -27,7 +27,7 @@ "tags": [ "universal" ], - "version": "8.0.8", + "version": "9.0.0", "main": "./src/index.js", "typings": "./src/index.d.ts" } diff --git a/packages/contracts/CHANGELOG.md b/packages/contracts/CHANGELOG.md index 462518834..880ae43f7 100644 --- a/packages/contracts/CHANGELOG.md +++ b/packages/contracts/CHANGELOG.md @@ -1,5 +1,12 @@ # @lit-protocol/contracts +## 0.9.0 + +### Minor Changes + +- 0a80342: Introduce wrapped-keys support to v8 so applications can generate, import, export, and sign with encrypted keys across EVM and Solana without exposing private key material. New `auth` package APIs include `validateDelegationAuthSig`, `generatePkpDelegationAuthSig`, `generateEoaDelegationAuthSig`, `createPkpAuthContextFromPreGenerated`, and `createPkpSessionSigs`. New `wrapped-keys` APIs include `generatePrivateKey`, `importPrivateKey`, `exportPrivateKey`, `listEncryptedKeyMetadata`, `getEncryptedKey`, `storeEncryptedKey`, `storeEncryptedKeyBatch`, `batchGeneratePrivateKeys`, `signMessageWithEncryptedKey`, and `signTransactionWithEncryptedKey`. See the updated docs (guides/server-sessions, sdk-reference/wrapped-keys, and the new auth references) for end-to-end examples. [PR](https://github.com/LIT-Protocol/js-sdk/pull/972) +- edf1099: Add `naga` and `naga-proto` networks. Create per-network entrypoints and subpath exports (naga, naga-production, naga-proto, naga-staging, naga-test, naga-dev, naga-local) for better tree-shaking + ## 0.8.2 ### Patch Changes diff --git a/packages/contracts/package.json b/packages/contracts/package.json index e60a653db..d79a75f3c 100644 --- a/packages/contracts/package.json +++ b/packages/contracts/package.json @@ -1,6 +1,6 @@ { "name": "@lit-protocol/contracts", - "version": "0.8.2", + "version": "0.9.0", "license": "MIT", "homepage": "https://github.com/LIT-Protocol/js-sdk", "repository": { diff --git a/packages/crypto/CHANGELOG.md b/packages/crypto/CHANGELOG.md index da6b1f9ab..d4c8a9df1 100644 --- a/packages/crypto/CHANGELOG.md +++ b/packages/crypto/CHANGELOG.md @@ -1,15 +1,19 @@ # @lit-protocol/crypto +## 8.1.0 + +### Minor Changes + +- 0a80342: Introduce wrapped-keys support to v8 so applications can generate, import, export, and sign with encrypted keys across EVM and Solana without exposing private key material. New `auth` package APIs include `validateDelegationAuthSig`, `generatePkpDelegationAuthSig`, `generateEoaDelegationAuthSig`, `createPkpAuthContextFromPreGenerated`, and `createPkpSessionSigs`. New `wrapped-keys` APIs include `generatePrivateKey`, `importPrivateKey`, `exportPrivateKey`, `listEncryptedKeyMetadata`, `getEncryptedKey`, `storeEncryptedKey`, `storeEncryptedKeyBatch`, `batchGeneratePrivateKeys`, `signMessageWithEncryptedKey`, and `signTransactionWithEncryptedKey`. See the updated docs (guides/server-sessions, sdk-reference/wrapped-keys, and the new auth references) for end-to-end examples. [PR](https://github.com/LIT-Protocol/js-sdk/pull/972) + ## 8.0.2 ### Patch Changes - ## 8.0.1 ### Patch Changes - ## 8.0.0 ### Major Changes diff --git a/packages/crypto/package.json b/packages/crypto/package.json index 2692bd3d4..5fb04a990 100644 --- a/packages/crypto/package.json +++ b/packages/crypto/package.json @@ -21,7 +21,7 @@ "tags": [ "universal" ], - "version": "8.0.2", + "version": "8.1.0", "main": "./src/index.js", "typings": "./src/index.d.ts", "dependencies": { diff --git a/packages/e2e/CHANGELOG.md b/packages/e2e/CHANGELOG.md index 2c47c8301..11a44849d 100644 --- a/packages/e2e/CHANGELOG.md +++ b/packages/e2e/CHANGELOG.md @@ -1,5 +1,29 @@ # @lit-protocol/e2e +## 5.0.0 + +### Minor Changes + +- 0a80342: Introduce wrapped-keys support to v8 so applications can generate, import, export, and sign with encrypted keys across EVM and Solana without exposing private key material. New `auth` package APIs include `validateDelegationAuthSig`, `generatePkpDelegationAuthSig`, `generateEoaDelegationAuthSig`, `createPkpAuthContextFromPreGenerated`, and `createPkpSessionSigs`. New `wrapped-keys` APIs include `generatePrivateKey`, `importPrivateKey`, `exportPrivateKey`, `listEncryptedKeyMetadata`, `getEncryptedKey`, `storeEncryptedKey`, `storeEncryptedKeyBatch`, `batchGeneratePrivateKeys`, `signMessageWithEncryptedKey`, and `signTransactionWithEncryptedKey`. See the updated docs (guides/server-sessions, sdk-reference/wrapped-keys, and the new auth references) for end-to-end examples. [PR](https://github.com/LIT-Protocol/js-sdk/pull/972) + +### Patch Changes + +- d2ff969: PKP signing now auto-hashes Cosmos payloads, exposes a documented bypassAutoHashing option, and ships with a new e2e suite plus docs so builders can rely on every listed curve working out of the box. +- fd9544d: SDK exposes typed Shiva env helpers (`createShivaEnvVars`, `waitForTestnetInfo`, `SUPPORTED_NETWORKS`) so QA suites can spin up testnets without bespoke env plumbing, and the new `executeWithHandshake` runner automatically retry failures for more stable Lit action execution. +- Updated dependencies [42e5151] +- Updated dependencies [0a80342] +- Updated dependencies [edf1099] +- Updated dependencies [d2ff969] +- Updated dependencies [b5258b7] +- Updated dependencies [fd9544d] + - @lit-protocol/constants@9.0.0 + - @lit-protocol/auth-helpers@8.2.0 + - @lit-protocol/lit-client@8.3.0 + - @lit-protocol/contracts@0.9.0 + - @lit-protocol/networks@8.4.0 + - @lit-protocol/crypto@8.1.0 + - @lit-protocol/auth@8.2.0 + ## 4.0.2 ### Patch Changes diff --git a/packages/e2e/package.json b/packages/e2e/package.json index a38def652..36a75f1a0 100644 --- a/packages/e2e/package.json +++ b/packages/e2e/package.json @@ -1,6 +1,6 @@ { "name": "@lit-protocol/e2e", - "version": "4.0.2", + "version": "5.0.0", "description": "Lit Protocol E2E testing package for running comprehensive integration tests", "main": "src/index.js", "type": "commonjs", diff --git a/packages/lit-client/CHANGELOG.md b/packages/lit-client/CHANGELOG.md index e82ea3c81..5dd4bc05a 100644 --- a/packages/lit-client/CHANGELOG.md +++ b/packages/lit-client/CHANGELOG.md @@ -1,5 +1,15 @@ # @lit-protocol/lit-client +## 8.3.0 + +### Minor Changes + +- 0a80342: Introduce wrapped-keys support to v8 so applications can generate, import, export, and sign with encrypted keys across EVM and Solana without exposing private key material. New `auth` package APIs include `validateDelegationAuthSig`, `generatePkpDelegationAuthSig`, `generateEoaDelegationAuthSig`, `createPkpAuthContextFromPreGenerated`, and `createPkpSessionSigs`. New `wrapped-keys` APIs include `generatePrivateKey`, `importPrivateKey`, `exportPrivateKey`, `listEncryptedKeyMetadata`, `getEncryptedKey`, `storeEncryptedKey`, `storeEncryptedKeyBatch`, `batchGeneratePrivateKeys`, `signMessageWithEncryptedKey`, and `signTransactionWithEncryptedKey`. See the updated docs (guides/server-sessions, sdk-reference/wrapped-keys, and the new auth references) for end-to-end examples. [PR](https://github.com/LIT-Protocol/js-sdk/pull/972) + +### Patch Changes + +- fd9544d: SDK exposes typed Shiva env helpers (`createShivaEnvVars`, `waitForTestnetInfo`, `SUPPORTED_NETWORKS`) so QA suites can spin up testnets without bespoke env plumbing, and the new `executeWithHandshake` runner automatically retry failures for more stable Lit action execution. + ## 8.2.3 ### Patch Changes diff --git a/packages/lit-client/package.json b/packages/lit-client/package.json index 582e0e8d1..5e770ec4d 100644 --- a/packages/lit-client/package.json +++ b/packages/lit-client/package.json @@ -21,7 +21,7 @@ "tags": [ "universal" ], - "version": "8.2.3", + "version": "8.3.0", "main": "./index.js", "typings": "./index.d.ts", "types": "./index.d.ts", diff --git a/packages/networks/CHANGELOG.md b/packages/networks/CHANGELOG.md index cb07f914a..7776e0243 100644 --- a/packages/networks/CHANGELOG.md +++ b/packages/networks/CHANGELOG.md @@ -1,5 +1,21 @@ # @lit-protocol/networks +## 8.4.0 + +### Minor Changes + +- 0a80342: Introduce wrapped-keys support to v8 so applications can generate, import, export, and sign with encrypted keys across EVM and Solana without exposing private key material. New `auth` package APIs include `validateDelegationAuthSig`, `generatePkpDelegationAuthSig`, `generateEoaDelegationAuthSig`, `createPkpAuthContextFromPreGenerated`, and `createPkpSessionSigs`. New `wrapped-keys` APIs include `generatePrivateKey`, `importPrivateKey`, `exportPrivateKey`, `listEncryptedKeyMetadata`, `getEncryptedKey`, `storeEncryptedKey`, `storeEncryptedKeyBatch`, `batchGeneratePrivateKeys`, `signMessageWithEncryptedKey`, and `signTransactionWithEncryptedKey`. See the updated docs (guides/server-sessions, sdk-reference/wrapped-keys, and the new auth references) for end-to-end examples. [PR](https://github.com/LIT-Protocol/js-sdk/pull/972) +- edf1099: Add `naga` and `naga-proto` networks. Create per-network entrypoints and subpath exports (naga, naga-production, naga-proto, naga-staging, naga-test, naga-dev, naga-local) for better tree-shaking +- b5258b7: Expose and aggregate payment details returned by Lit nodes from Lit Action execution requests. + +### Patch Changes + +- d2ff969: PKP signing now auto-hashes Cosmos payloads, exposes a documented bypassAutoHashing option, and ships with a new e2e suite plus docs so builders can rely on every listed curve working out of the box. +- fd9544d: SDK exposes typed Shiva env helpers (`createShivaEnvVars`, `waitForTestnetInfo`, `SUPPORTED_NETWORKS`) so QA suites can spin up testnets without bespoke env plumbing, and the new `executeWithHandshake` runner automatically retry failures for more stable Lit action execution. +- Updated dependencies [0a80342] +- Updated dependencies [edf1099] + - @lit-protocol/contracts@0.9.0 + ## 8.3.2 ### Patch Changes diff --git a/packages/networks/package.json b/packages/networks/package.json index bdffb6930..339dff6f7 100644 --- a/packages/networks/package.json +++ b/packages/networks/package.json @@ -39,7 +39,7 @@ "tags": [ "universal" ], - "version": "8.3.2", + "version": "8.4.0", "main": "./index.js", "typings": "./index.d.ts", "types": "./index.d.ts", diff --git a/packages/wrapped-keys-lit-actions/CHANGELOG.md b/packages/wrapped-keys-lit-actions/CHANGELOG.md index 6db23e104..7c43ba88f 100644 --- a/packages/wrapped-keys-lit-actions/CHANGELOG.md +++ b/packages/wrapped-keys-lit-actions/CHANGELOG.md @@ -1,5 +1,11 @@ # @lit-protocol/wrapped-keys-lit-actions +## 8.1.0 + +### Minor Changes + +- 0a80342: Introduce wrapped-keys support to v8 so applications can generate, import, export, and sign with encrypted keys across EVM and Solana without exposing private key material. New `auth` package APIs include `validateDelegationAuthSig`, `generatePkpDelegationAuthSig`, `generateEoaDelegationAuthSig`, `createPkpAuthContextFromPreGenerated`, and `createPkpSessionSigs`. New `wrapped-keys` APIs include `generatePrivateKey`, `importPrivateKey`, `exportPrivateKey`, `listEncryptedKeyMetadata`, `getEncryptedKey`, `storeEncryptedKey`, `storeEncryptedKeyBatch`, `batchGeneratePrivateKeys`, `signMessageWithEncryptedKey`, and `signTransactionWithEncryptedKey`. See the updated docs (guides/server-sessions, sdk-reference/wrapped-keys, and the new auth references) for end-to-end examples. [PR](https://github.com/LIT-Protocol/js-sdk/pull/972) + ## 8.0.1 ### Patch Changes diff --git a/packages/wrapped-keys-lit-actions/package.json b/packages/wrapped-keys-lit-actions/package.json index db45504f1..0ab719cca 100644 --- a/packages/wrapped-keys-lit-actions/package.json +++ b/packages/wrapped-keys-lit-actions/package.json @@ -26,7 +26,7 @@ "scripts": { "generate-lit-actions": "node ./esbuild.config.js" }, - "version": "8.0.1", + "version": "8.1.0", "main": "./src/index.js", "typings": "./src/index.d.ts", "devDependencies": { diff --git a/packages/wrapped-keys/CHANGELOG.md b/packages/wrapped-keys/CHANGELOG.md index fb6158382..03a3249bb 100644 --- a/packages/wrapped-keys/CHANGELOG.md +++ b/packages/wrapped-keys/CHANGELOG.md @@ -1,5 +1,24 @@ # @lit-protocol/wrapped-keys +## 8.1.0 + +### Minor Changes + +- 0a80342: Introduce wrapped-keys support to v8 so applications can generate, import, export, and sign with encrypted keys across EVM and Solana without exposing private key material. New `auth` package APIs include `validateDelegationAuthSig`, `generatePkpDelegationAuthSig`, `generateEoaDelegationAuthSig`, `createPkpAuthContextFromPreGenerated`, and `createPkpSessionSigs`. New `wrapped-keys` APIs include `generatePrivateKey`, `importPrivateKey`, `exportPrivateKey`, `listEncryptedKeyMetadata`, `getEncryptedKey`, `storeEncryptedKey`, `storeEncryptedKeyBatch`, `batchGeneratePrivateKeys`, `signMessageWithEncryptedKey`, and `signTransactionWithEncryptedKey`. See the updated docs (guides/server-sessions, sdk-reference/wrapped-keys, and the new auth references) for end-to-end examples. [PR](https://github.com/LIT-Protocol/js-sdk/pull/972) + +### Patch Changes + +- Updated dependencies [42e5151] +- Updated dependencies [0a80342] +- Updated dependencies [edf1099] +- Updated dependencies [d2ff969] +- Updated dependencies [b5258b7] +- Updated dependencies [fd9544d] + - @lit-protocol/constants@9.0.0 + - @lit-protocol/lit-client@8.3.0 + - @lit-protocol/networks@8.4.0 + - @lit-protocol/auth@8.2.0 + ## 8.0.1 ### Patch Changes diff --git a/packages/wrapped-keys/package.json b/packages/wrapped-keys/package.json index 1d9631342..c9af3a1a0 100644 --- a/packages/wrapped-keys/package.json +++ b/packages/wrapped-keys/package.json @@ -23,7 +23,7 @@ "buildOptions": { "genReact": false }, - "version": "8.0.1", + "version": "8.1.0", "main": "./src/index.js", "typings": "./src/index.d.ts", "dependencies": {