diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 9dc0afc..14c8cec 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,4 +1,4 @@ { - "packages/cachekit": "0.1.0", - "packages/cachekit-core-ts": "0.1.0" + "packages/cachekit": "0.1.1", + "packages/cachekit-core-ts": "0.1.1" } diff --git a/packages/cachekit-core-ts/CHANGELOG.md b/packages/cachekit-core-ts/CHANGELOG.md new file mode 100644 index 0000000..7c1743a --- /dev/null +++ b/packages/cachekit-core-ts/CHANGELOG.md @@ -0,0 +1,10 @@ +# Changelog + +## [0.1.1](https://github.com/cachekit-io/cachekit-ts/compare/cachekit-core-ts-v0.1.0...cachekit-core-ts-v0.1.1) (2026-04-26) + + +### Features + +* CachekitIO backend full parity (session, metrics, SSRF, locking, TTL) ([d408364](https://github.com/cachekit-io/cachekit-ts/commit/d408364a424a24f191632cc297519d1f951fb069)) +* initial commit ([048585c](https://github.com/cachekit-io/cachekit-ts/commit/048585cb5e8934567a518b220337a4d10b48f83d)) +* wire ByteStorage into cache pipeline for protocol-compliant wire format ([#27](https://github.com/cachekit-io/cachekit-ts/issues/27)) ([d246294](https://github.com/cachekit-io/cachekit-ts/commit/d246294471967a49c4161a9f05f0232e84bf6c54)) diff --git a/packages/cachekit-core-ts/package.json b/packages/cachekit-core-ts/package.json index c6b1ca6..77eb3d0 100644 --- a/packages/cachekit-core-ts/package.json +++ b/packages/cachekit-core-ts/package.json @@ -1,6 +1,6 @@ { "name": "@cachekit-io/cachekit-core-ts", - "version": "0.1.0", + "version": "0.1.1", "description": "Native Rust bindings for CacheKit TypeScript SDK (serialization, compression, encryption)", "main": "./index.js", "types": "./index.d.ts", diff --git a/packages/cachekit/CHANGELOG.md b/packages/cachekit/CHANGELOG.md new file mode 100644 index 0000000..bf79d03 --- /dev/null +++ b/packages/cachekit/CHANGELOG.md @@ -0,0 +1,12 @@ +# Changelog + +## [0.1.1](https://github.com/cachekit-io/cachekit-ts/compare/cachekit-v0.1.0...cachekit-v0.1.1) (2026-04-26) + + +### Features + +* CachekitIO backend full parity — session, metrics, SSRF, errors, locking, TTL ([985cf09](https://github.com/cachekit-io/cachekit-ts/commit/985cf09bf1fd5cd12975bd0e504997b9eb9b8fd2)) +* CachekitIO backend full parity (session, metrics, SSRF, locking, TTL) ([d408364](https://github.com/cachekit-io/cachekit-ts/commit/d408364a424a24f191632cc297519d1f951fb069)) +* initial commit ([048585c](https://github.com/cachekit-io/cachekit-ts/commit/048585cb5e8934567a518b220337a4d10b48f83d)) +* intent-based cache API (createCache.io, .minimal, .production, .secure) ([#42](https://github.com/cachekit-io/cachekit-ts/issues/42)) ([c551bfb](https://github.com/cachekit-io/cachekit-ts/commit/c551bfb75bf644a06a9c34eaa338c4980358a74a)) +* wire ByteStorage into cache pipeline for protocol-compliant wire format ([#27](https://github.com/cachekit-io/cachekit-ts/issues/27)) ([d246294](https://github.com/cachekit-io/cachekit-ts/commit/d246294471967a49c4161a9f05f0232e84bf6c54)) diff --git a/packages/cachekit/package.json b/packages/cachekit/package.json index e20ce76..8a9a3ec 100644 --- a/packages/cachekit/package.json +++ b/packages/cachekit/package.json @@ -1,6 +1,6 @@ { "name": "@cachekit-io/cachekit", - "version": "0.1.0", + "version": "0.1.1", "description": "TypeScript SDK for CacheKit - Production-ready Redis caching with zero-knowledge encryption", "type": "module", "main": "./dist/cjs/index.js",