diff --git a/.changeset/bundle-evlog-cjs.md b/.changeset/bundle-evlog-cjs.md deleted file mode 100644 index b30b9d30..00000000 --- a/.changeset/bundle-evlog-cjs.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@cipherstash/stack": patch ---- - -Bundle `evlog` into the CJS output. `evlog` is pure ESM (no `require` condition in its `exports` map), so CJS consumers of `@cipherstash/stack` (e.g. webpack bundles) were failing with `ERR_PACKAGE_PATH_NOT_EXPORTED` when the stack's `index.cjs` tried to `require("evlog")`. `evlog` is now inlined at build time and no longer resolved at runtime. diff --git a/.changeset/cli-pm-user-agent.md b/.changeset/cli-pm-user-agent.md deleted file mode 100644 index cfe0943f..00000000 --- a/.changeset/cli-pm-user-agent.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@cipherstash/cli": patch ---- - -Detect the package manager from `npm_config_user_agent` when running `stash init`. Running `bunx @cipherstash/cli init`, `pnpm dlx @cipherstash/cli init`, or `yarn dlx @cipherstash/cli init` now uses the invoking tool for dependency installation (`bun add`, `pnpm add`, `yarn add`) instead of falling back to `npm install`. Lockfile detection is still preferred when present, so projects with an existing convention are unaffected. Fixes `EUNSUPPORTEDPROTOCOL` failures on `workspace:*` deps in Bun-managed projects. diff --git a/examples/basic/CHANGELOG.md b/examples/basic/CHANGELOG.md index f30090ef..3a804dbd 100644 --- a/examples/basic/CHANGELOG.md +++ b/examples/basic/CHANGELOG.md @@ -1,5 +1,12 @@ # @cipherstash/basic-example +## 1.2.8 + +### Patch Changes + +- Updated dependencies [510c485] + - @cipherstash/stack@0.15.2 + ## 1.2.7 ### Patch Changes diff --git a/examples/basic/package.json b/examples/basic/package.json index eec7cb1d..2463f205 100644 --- a/examples/basic/package.json +++ b/examples/basic/package.json @@ -1,7 +1,7 @@ { "name": "@cipherstash/basic-example", "private": true, - "version": "1.2.7", + "version": "1.2.8", "type": "module", "scripts": { "start": "tsx index.ts" diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index e340c997..8ceef82e 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -1,5 +1,11 @@ # @cipherstash/cli +## 0.7.1 + +### Patch Changes + +- a0760f6: Detect the package manager from `npm_config_user_agent` when running `stash init`. Running `bunx @cipherstash/cli init`, `pnpm dlx @cipherstash/cli init`, or `yarn dlx @cipherstash/cli init` now uses the invoking tool for dependency installation (`bun add`, `pnpm add`, `yarn add`) instead of falling back to `npm install`. Lockfile detection is still preferred when present, so projects with an existing convention are unaffected. Fixes `EUNSUPPORTEDPROTOCOL` failures on `workspace:*` deps in Bun-managed projects. + ## 0.7.0 ### Minor Changes diff --git a/packages/cli/package.json b/packages/cli/package.json index 2e340081..0d38b9db 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "@cipherstash/cli", - "version": "0.7.0", + "version": "0.7.1", "description": "CipherStash CLI — the one stash command for auth, init, encryption schema, database setup, secrets, and the AI wizard.", "license": "MIT", "author": "CipherStash ", diff --git a/packages/stack/CHANGELOG.md b/packages/stack/CHANGELOG.md index 849aa41e..72da808e 100644 --- a/packages/stack/CHANGELOG.md +++ b/packages/stack/CHANGELOG.md @@ -1,5 +1,11 @@ # @cipherstash/stack +## 0.15.2 + +### Patch Changes + +- 510c485: Bundle `evlog` into the CJS output. `evlog` is pure ESM (no `require` condition in its `exports` map), so CJS consumers of `@cipherstash/stack` (e.g. webpack bundles) were failing with `ERR_PACKAGE_PATH_NOT_EXPORTED` when the stack's `index.cjs` tried to `require("evlog")`. `evlog` is now inlined at build time and no longer resolved at runtime. + ## 0.15.1 ### Patch Changes diff --git a/packages/stack/package.json b/packages/stack/package.json index 22090e14..ca8a4be2 100644 --- a/packages/stack/package.json +++ b/packages/stack/package.json @@ -1,6 +1,6 @@ { "name": "@cipherstash/stack", - "version": "0.15.1", + "version": "0.15.2", "description": "CipherStash Stack for TypeScript and JavaScript", "keywords": [ "encrypted",