diff --git a/.changeset/fresh-windows-call.md b/.changeset/fresh-windows-call.md deleted file mode 100644 index 160cc7b..0000000 --- a/.changeset/fresh-windows-call.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -"@cipherstash/jseql": major ---- - -Enforced lock context to be called as a proto function rather than an optional argument for crypto functions. -There was a bug that caused the lock context to be interpreted as undefined when the users intention was to use it causing the encryption/decryption to fail. -This is a breaking change for users who were using the lock context as an optional argument. -To use the lock context, call the `withLockContext` method on the encrypt, decrypt, and bulk encrypt/decrypt functions, passing the lock context as a parameter rather than as an optional argument. diff --git a/.changeset/strange-bees-hope.md b/.changeset/strange-bees-hope.md deleted file mode 100644 index c7abb0b..0000000 --- a/.changeset/strange-bees-hope.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@cipherstash/nextjs": major ---- - -Implemented better error handling for fetching CTS tokens and accessing them in the Next.js application. diff --git a/apps/basic/CHANGELOG.md b/apps/basic/CHANGELOG.md index 9a32af1..a8a2c66 100644 --- a/apps/basic/CHANGELOG.md +++ b/apps/basic/CHANGELOG.md @@ -1,5 +1,12 @@ # @cipherstash/basic-example +## 0.1.2 + +### Patch Changes + +- Updated dependencies [5c08fe5] + - @cipherstash/jseql@4.0.0 + ## 0.1.1 ### Patch Changes diff --git a/apps/basic/package.json b/apps/basic/package.json index 383cf1f..5e055aa 100644 --- a/apps/basic/package.json +++ b/apps/basic/package.json @@ -1,7 +1,7 @@ { "name": "@cipherstash/basic-example", "private": true, - "version": "0.1.1", + "version": "0.1.2", "main": "index.mjs", "scripts": { "start": "node index.mjs" diff --git a/packages/jseql/CHANGELOG.md b/packages/jseql/CHANGELOG.md index d0e5a67..80bc802 100644 --- a/packages/jseql/CHANGELOG.md +++ b/packages/jseql/CHANGELOG.md @@ -1,5 +1,14 @@ # @cipherstash/jseql +## 4.0.0 + +### Major Changes + +- 5c08fe5: Enforced lock context to be called as a proto function rather than an optional argument for crypto functions. + There was a bug that caused the lock context to be interpreted as undefined when the users intention was to use it causing the encryption/decryption to fail. + This is a breaking change for users who were using the lock context as an optional argument. + To use the lock context, call the `withLockContext` method on the encrypt, decrypt, and bulk encrypt/decrypt functions, passing the lock context as a parameter rather than as an optional argument. + ## 3.9.0 ### Minor Changes diff --git a/packages/jseql/package.json b/packages/jseql/package.json index c30e201..888d2b9 100644 --- a/packages/jseql/package.json +++ b/packages/jseql/package.json @@ -1,6 +1,6 @@ { "name": "@cipherstash/jseql", - "version": "3.9.0", + "version": "4.0.0", "description": "Encrypted Query Language JavaScript Library", "keywords": [ "encrypted", diff --git a/packages/nextjs/CHANGELOG.md b/packages/nextjs/CHANGELOG.md index da71f04..ca6e518 100644 --- a/packages/nextjs/CHANGELOG.md +++ b/packages/nextjs/CHANGELOG.md @@ -1,5 +1,11 @@ # @cipherstash/nextjs +## 1.0.0 + +### Major Changes + +- 24f0a72: Implemented better error handling for fetching CTS tokens and accessing them in the Next.js application. + ## 0.12.0 ### Minor Changes diff --git a/packages/nextjs/package.json b/packages/nextjs/package.json index 532f354..1fb9428 100644 --- a/packages/nextjs/package.json +++ b/packages/nextjs/package.json @@ -1,6 +1,6 @@ { "name": "@cipherstash/nextjs", - "version": "0.12.0", + "version": "1.0.0", "description": "Nextjs middleware for jseql", "keywords": [ "encrypted",