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/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..286bbf23f --- /dev/null +++ b/apps/explorer/CHANGELOG.md @@ -0,0 +1,11 @@ +# @lit-protocol/explorer + +## 0.0.1 + +### Patch Changes + +- Updated dependencies [edf1099] +- Updated dependencies [d2ff969] +- Updated dependencies [fd9544d] + - @lit-protocol/networks@8.4.0 + - @lit-protocol/lit-client@8.2.4 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..b20be4d3a 100644 --- a/packages/artillery/CHANGELOG.md +++ b/packages/artillery/CHANGELOG.md @@ -1,5 +1,13 @@ # @lit-protocol/artillery +## 0.0.11 + +### Patch Changes + +- 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..9ea36d1ee 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.0.11", "private": true, "type": "commonjs", "dependencies": { diff --git a/packages/auth-services/CHANGELOG.md b/packages/auth-services/CHANGELOG.md index 4e61b0f07..44ffc986c 100644 --- a/packages/auth-services/CHANGELOG.md +++ b/packages/auth-services/CHANGELOG.md @@ -1,5 +1,12 @@ # @lit-protocol/auth-services +## 2.0.9 + +### Patch Changes + +- 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..4543d3801 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.0.9", "license": "MIT", "type": "commonjs", "main": "./src/index.js", diff --git a/packages/constants/CHANGELOG.md b/packages/constants/CHANGELOG.md index ddaac54fe..81aa64c4d 100644 --- a/packages/constants/CHANGELOG.md +++ b/packages/constants/CHANGELOG.md @@ -1,5 +1,12 @@ # @lit-protocol/constants +## 8.0.9 + +### Patch Changes + +- 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..442fd5ccf 100644 --- a/packages/constants/package.json +++ b/packages/constants/package.json @@ -27,7 +27,7 @@ "tags": [ "universal" ], - "version": "8.0.8", + "version": "8.0.9", "main": "./src/index.js", "typings": "./src/index.d.ts" } diff --git a/packages/contracts/CHANGELOG.md b/packages/contracts/CHANGELOG.md index 462518834..9e901dc9e 100644 --- a/packages/contracts/CHANGELOG.md +++ b/packages/contracts/CHANGELOG.md @@ -1,5 +1,11 @@ # @lit-protocol/contracts +## 0.9.0 + +### Minor Changes + +- 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/e2e/CHANGELOG.md b/packages/e2e/CHANGELOG.md index 2c47c8301..4984023dd 100644 --- a/packages/e2e/CHANGELOG.md +++ b/packages/e2e/CHANGELOG.md @@ -1,5 +1,19 @@ # @lit-protocol/e2e +## 5.0.0 + +### 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 [edf1099] +- Updated dependencies [d2ff969] +- Updated dependencies [fd9544d] + - @lit-protocol/contracts@0.9.0 + - @lit-protocol/networks@8.4.0 + - @lit-protocol/lit-client@8.2.4 + - @lit-protocol/constants@8.0.9 + ## 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..30e8acdc6 100644 --- a/packages/lit-client/CHANGELOG.md +++ b/packages/lit-client/CHANGELOG.md @@ -1,5 +1,11 @@ # @lit-protocol/lit-client +## 8.2.4 + +### 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..fdb499195 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.2.4", "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..73f9d2cbc 100644 --- a/packages/networks/CHANGELOG.md +++ b/packages/networks/CHANGELOG.md @@ -1,5 +1,18 @@ # @lit-protocol/networks +## 8.4.0 + +### Minor Changes + +- 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 + +### 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 [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",