diff --git a/CHANGELOG.md b/CHANGELOG.md index 8c5c18539..3df13d277 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,23 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [4.2.0](https://github.com/strapi-community/strapi-plugin-rest-cache/compare/v4.1.0...v4.2.0) (2022-03-09) + + +### Bug Fixes + +* configuration header sort ([c0eec8f](https://github.com/strapi-community/strapi-plugin-rest-cache/commit/c0eec8f475b3b25722fbb5de659212e25f263534)) +* route checking should be absolute ([fdf8666](https://github.com/strapi-community/strapi-plugin-rest-cache/commit/fdf866648a98036b8c70500769cf3bcac42671d8)) + + +### Features + +* expose new clearByUid and clearByRegexp functions in cacheStore service ([c7d67fd](https://github.com/strapi-community/strapi-plugin-rest-cache/commit/c7d67fd532ccca66df90b3621061ba2d65b70fe1)) + + + + + # [4.1.0](https://github.com/strapi-community/strapi-plugin-rest-cache/compare/v4.0.6...v4.1.0) (2022-03-05) diff --git a/lerna.json b/lerna.json index 1c2e851b9..61f9767b2 100644 --- a/lerna.json +++ b/lerna.json @@ -3,7 +3,7 @@ "packages/*", "playgrounds/*" ], - "version": "4.1.0", + "version": "4.2.0", "npmClient": "yarn", "useWorkspaces": true } diff --git a/packages/strapi-plugin-rest-cache/CHANGELOG.md b/packages/strapi-plugin-rest-cache/CHANGELOG.md index 82da7532f..f9c522e88 100644 --- a/packages/strapi-plugin-rest-cache/CHANGELOG.md +++ b/packages/strapi-plugin-rest-cache/CHANGELOG.md @@ -3,6 +3,23 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [4.2.0](https://github.com/strapi-community/strapi-plugin-rest-cache/compare/v4.1.0...v4.2.0) (2022-03-09) + + +### Bug Fixes + +* configuration header sort ([c0eec8f](https://github.com/strapi-community/strapi-plugin-rest-cache/commit/c0eec8f475b3b25722fbb5de659212e25f263534)) +* route checking should be absolute ([fdf8666](https://github.com/strapi-community/strapi-plugin-rest-cache/commit/fdf866648a98036b8c70500769cf3bcac42671d8)) + + +### Features + +* expose new clearByUid and clearByRegexp functions in cacheStore service ([c7d67fd](https://github.com/strapi-community/strapi-plugin-rest-cache/commit/c7d67fd532ccca66df90b3621061ba2d65b70fe1)) + + + + + # [4.1.0](https://github.com/strapi-community/strapi-plugin-rest-cache/compare/v4.0.6...v4.1.0) (2022-03-05) diff --git a/packages/strapi-plugin-rest-cache/package.json b/packages/strapi-plugin-rest-cache/package.json index 49251b1ee..fe9aaa16a 100644 --- a/packages/strapi-plugin-rest-cache/package.json +++ b/packages/strapi-plugin-rest-cache/package.json @@ -1,6 +1,6 @@ { "name": "strapi-plugin-rest-cache", - "version": "4.1.0", + "version": "4.2.0", "description": "Speed-up HTTP requests with LRU cache", "license": "MIT", "strapi": { diff --git a/packages/strapi-provider-rest-cache-couchbase/CHANGELOG.md b/packages/strapi-provider-rest-cache-couchbase/CHANGELOG.md index 20f1407fb..9fbb987cb 100644 --- a/packages/strapi-provider-rest-cache-couchbase/CHANGELOG.md +++ b/packages/strapi-provider-rest-cache-couchbase/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [4.2.0](https://github.com/strapi-community/strapi-plugin-rest-cache/compare/v4.1.0...v4.2.0) (2022-03-09) + +**Note:** Version bump only for package strapi-provider-rest-cache-couchbase + + + + + # [4.1.0](https://github.com/strapi-community/strapi-plugin-rest-cache/compare/v4.0.6...v4.1.0) (2022-03-05) **Note:** Version bump only for package strapi-provider-rest-cache-couchbase diff --git a/packages/strapi-provider-rest-cache-couchbase/package.json b/packages/strapi-provider-rest-cache-couchbase/package.json index bac081561..ab9846957 100644 --- a/packages/strapi-provider-rest-cache-couchbase/package.json +++ b/packages/strapi-provider-rest-cache-couchbase/package.json @@ -1,6 +1,6 @@ { "name": "strapi-provider-rest-cache-couchbase", - "version": "4.1.0", + "version": "4.2.0", "description": "Speed-up HTTP requests with Couchbase database", "license": "MIT", "strapi": { @@ -58,7 +58,7 @@ }, "devDependencies": { "@strapi/strapi": "^4.1.0", - "strapi-plugin-rest-cache": "^4.1.0" + "strapi-plugin-rest-cache": "^4.2.0" }, "peerDependencies": { "@strapi/strapi": "^4.0.0", diff --git a/packages/strapi-provider-rest-cache-memory/CHANGELOG.md b/packages/strapi-provider-rest-cache-memory/CHANGELOG.md index bbecb3060..61a6ac980 100644 --- a/packages/strapi-provider-rest-cache-memory/CHANGELOG.md +++ b/packages/strapi-provider-rest-cache-memory/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [4.2.0](https://github.com/strapi-community/strapi-plugin-rest-cache/compare/v4.1.0...v4.2.0) (2022-03-09) + +**Note:** Version bump only for package strapi-provider-rest-cache-memory + + + + + # [4.1.0](https://github.com/strapi-community/strapi-plugin-rest-cache/compare/v4.0.6...v4.1.0) (2022-03-05) **Note:** Version bump only for package strapi-provider-rest-cache-memory diff --git a/packages/strapi-provider-rest-cache-memory/package.json b/packages/strapi-provider-rest-cache-memory/package.json index 3998f4b97..7077ef761 100644 --- a/packages/strapi-provider-rest-cache-memory/package.json +++ b/packages/strapi-provider-rest-cache-memory/package.json @@ -1,6 +1,6 @@ { "name": "strapi-provider-rest-cache-memory", - "version": "4.1.0", + "version": "4.2.0", "description": "Speed-up HTTP requests with LRU cache", "license": "MIT", "strapi": { @@ -57,7 +57,7 @@ }, "devDependencies": { "@strapi/strapi": "^4.1.0", - "strapi-plugin-rest-cache": "^4.1.0" + "strapi-plugin-rest-cache": "^4.2.0" }, "peerDependencies": { "@strapi/strapi": "^4.0.0", diff --git a/packages/strapi-provider-rest-cache-redis/CHANGELOG.md b/packages/strapi-provider-rest-cache-redis/CHANGELOG.md index 2b18ac31f..1b2847b06 100644 --- a/packages/strapi-provider-rest-cache-redis/CHANGELOG.md +++ b/packages/strapi-provider-rest-cache-redis/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [4.2.0](https://github.com/strapi-community/strapi-plugin-rest-cache/compare/v4.1.0...v4.2.0) (2022-03-09) + +**Note:** Version bump only for package strapi-provider-rest-cache-redis + + + + + # [4.1.0](https://github.com/strapi-community/strapi-plugin-rest-cache/compare/v4.0.6...v4.1.0) (2022-03-05) **Note:** Version bump only for package strapi-provider-rest-cache-redis diff --git a/packages/strapi-provider-rest-cache-redis/package.json b/packages/strapi-provider-rest-cache-redis/package.json index a1c10d020..a4fc040de 100644 --- a/packages/strapi-provider-rest-cache-redis/package.json +++ b/packages/strapi-provider-rest-cache-redis/package.json @@ -1,6 +1,6 @@ { "name": "strapi-provider-rest-cache-redis", - "version": "4.1.0", + "version": "4.2.0", "description": "Speed-up HTTP requests with LRU cache", "license": "MIT", "strapi": { @@ -59,7 +59,7 @@ "devDependencies": { "@strapi/strapi": "^4.1.0", "strapi-plugin-redis": "^1.0.0-alpha.1", - "strapi-plugin-rest-cache": "^4.1.0" + "strapi-plugin-rest-cache": "^4.2.0" }, "peerDependencies": { "@strapi/strapi": "^4.0.0", diff --git a/playgrounds/couchbase/CHANGELOG.md b/playgrounds/couchbase/CHANGELOG.md index 882647edc..090a91bd6 100644 --- a/playgrounds/couchbase/CHANGELOG.md +++ b/playgrounds/couchbase/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [4.2.0](https://github.com/strapi-community/strapi-plugin-rest-cache/compare/v4.1.0...v4.2.0) (2022-03-09) + + +### Features + +* expose new clearByUid and clearByRegexp functions in cacheStore service ([c7d67fd](https://github.com/strapi-community/strapi-plugin-rest-cache/commit/c7d67fd532ccca66df90b3621061ba2d65b70fe1)) + + + + + # [4.1.0](https://github.com/strapi-community/strapi-plugin-rest-cache/compare/v4.0.6...v4.1.0) (2022-03-05) **Note:** Version bump only for package @strapi-plugin-rest-cache/playground-couchbase diff --git a/playgrounds/couchbase/package.json b/playgrounds/couchbase/package.json index 3fc6fb8f7..9448f8053 100644 --- a/playgrounds/couchbase/package.json +++ b/playgrounds/couchbase/package.json @@ -1,7 +1,7 @@ { "name": "@strapi-plugin-rest-cache/playground-couchbase", "private": true, - "version": "4.1.0", + "version": "4.2.0", "description": "A Strapi application", "scripts": { "develop": "strapi develop", @@ -16,8 +16,8 @@ "lodash.set": "^4.3.2", "mime-types": "^2.1.27", "sqlite3": "5.0.2", - "strapi-plugin-rest-cache": "^4.1.0", - "strapi-provider-rest-cache-couchbase": "^4.1.0" + "strapi-plugin-rest-cache": "^4.2.0", + "strapi-provider-rest-cache-couchbase": "^4.2.0" }, "author": { "name": "A Strapi developer" diff --git a/playgrounds/memory/CHANGELOG.md b/playgrounds/memory/CHANGELOG.md index c695026cf..de56b4827 100644 --- a/playgrounds/memory/CHANGELOG.md +++ b/playgrounds/memory/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [4.2.0](https://github.com/strapi-community/strapi-plugin-rest-cache/compare/v4.1.0...v4.2.0) (2022-03-09) + + +### Features + +* expose new clearByUid and clearByRegexp functions in cacheStore service ([c7d67fd](https://github.com/strapi-community/strapi-plugin-rest-cache/commit/c7d67fd532ccca66df90b3621061ba2d65b70fe1)) + + + + + # [4.1.0](https://github.com/strapi-community/strapi-plugin-rest-cache/compare/v4.0.6...v4.1.0) (2022-03-05) **Note:** Version bump only for package @strapi-plugin-rest-cache/playground-memory diff --git a/playgrounds/memory/package.json b/playgrounds/memory/package.json index cd7285d22..38bc5be06 100644 --- a/playgrounds/memory/package.json +++ b/playgrounds/memory/package.json @@ -1,7 +1,7 @@ { "name": "@strapi-plugin-rest-cache/playground-memory", "private": true, - "version": "4.1.0", + "version": "4.2.0", "description": "A Strapi application", "scripts": { "develop": "strapi develop", @@ -16,8 +16,8 @@ "lodash.set": "^4.3.2", "mime-types": "^2.1.27", "sqlite3": "5.0.2", - "strapi-plugin-rest-cache": "^4.1.0", - "strapi-provider-rest-cache-memory": "^4.1.0" + "strapi-plugin-rest-cache": "^4.2.0", + "strapi-provider-rest-cache-memory": "^4.2.0" }, "author": { "name": "A Strapi developer" diff --git a/playgrounds/redis/CHANGELOG.md b/playgrounds/redis/CHANGELOG.md index 017b3d174..ed6f25250 100644 --- a/playgrounds/redis/CHANGELOG.md +++ b/playgrounds/redis/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [4.2.0](https://github.com/strapi-community/strapi-plugin-rest-cache/compare/v4.1.0...v4.2.0) (2022-03-09) + + +### Features + +* expose new clearByUid and clearByRegexp functions in cacheStore service ([c7d67fd](https://github.com/strapi-community/strapi-plugin-rest-cache/commit/c7d67fd532ccca66df90b3621061ba2d65b70fe1)) + + + + + # [4.1.0](https://github.com/strapi-community/strapi-plugin-rest-cache/compare/v4.0.6...v4.1.0) (2022-03-05) **Note:** Version bump only for package @strapi-plugin-rest-cache/playground-redis diff --git a/playgrounds/redis/package.json b/playgrounds/redis/package.json index 8b3aee676..4538b3cf2 100644 --- a/playgrounds/redis/package.json +++ b/playgrounds/redis/package.json @@ -1,7 +1,7 @@ { "name": "@strapi-plugin-rest-cache/playground-redis", "private": true, - "version": "4.1.0", + "version": "4.2.0", "description": "A Strapi application", "scripts": { "develop": "strapi develop", @@ -17,8 +17,8 @@ "mime-types": "^2.1.27", "sqlite3": "5.0.2", "strapi-plugin-redis": "1.0.0-alpha.2", - "strapi-plugin-rest-cache": "^4.1.0", - "strapi-provider-rest-cache-redis": "^4.1.0" + "strapi-plugin-rest-cache": "^4.2.0", + "strapi-provider-rest-cache-redis": "^4.2.0" }, "author": { "name": "A Strapi developer"