From 91d50ecdd4f3fcc68ca6fcf4f8bae81d018b0566 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Tue, 4 Feb 2025 16:02:14 +0000 Subject: [PATCH] Version Packages --- .changeset/clean-boxes-reflect.md | 5 ----- .changeset/gentle-wasps-notice.md | 5 ----- .changeset/lovely-crews-speak.md | 5 ----- .changeset/purple-terms-pump.md | 5 ----- .changeset/tame-stingrays-attend.md | 5 ----- examples/nextjs-app/CHANGELOG.md | 8 ++++++++ examples/nextjs-app/package.json | 2 +- packages/lru/CHANGELOG.md | 16 ++++++++++++++++ packages/lru/package.json | 2 +- packages/memo-intl/CHANGELOG.md | 7 +++++++ packages/memo-intl/package.json | 2 +- 11 files changed, 34 insertions(+), 28 deletions(-) delete mode 100644 .changeset/clean-boxes-reflect.md delete mode 100644 .changeset/gentle-wasps-notice.md delete mode 100644 .changeset/lovely-crews-speak.md delete mode 100644 .changeset/purple-terms-pump.md delete mode 100644 .changeset/tame-stingrays-attend.md diff --git a/.changeset/clean-boxes-reflect.md b/.changeset/clean-boxes-reflect.md deleted file mode 100644 index eb7967127..000000000 --- a/.changeset/clean-boxes-reflect.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@httpx/lru": minor ---- - -Rename getOrInsert into getOrSet (BC) diff --git a/.changeset/gentle-wasps-notice.md b/.changeset/gentle-wasps-notice.md deleted file mode 100644 index 69cbd58e0..000000000 --- a/.changeset/gentle-wasps-notice.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@httpx/lru": patch ---- - -Add benchmarks for iterators and peek diff --git a/.changeset/lovely-crews-speak.md b/.changeset/lovely-crews-speak.md deleted file mode 100644 index 44826e0c5..000000000 --- a/.changeset/lovely-crews-speak.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@httpx/lru": minor ---- - -LRU.clear now returns the number of cleared items diff --git a/.changeset/purple-terms-pump.md b/.changeset/purple-terms-pump.md deleted file mode 100644 index 80995c02c..000000000 --- a/.changeset/purple-terms-pump.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@httpx/lru": minor ---- - -Allow CacheKey type to be a number (still default to string) diff --git a/.changeset/tame-stingrays-attend.md b/.changeset/tame-stingrays-attend.md deleted file mode 100644 index bee977001..000000000 --- a/.changeset/tame-stingrays-attend.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@httpx/lru": minor ---- - -Export BaseCache interface for customization diff --git a/examples/nextjs-app/CHANGELOG.md b/examples/nextjs-app/CHANGELOG.md index 47cb1d313..d4a74dcee 100644 --- a/examples/nextjs-app/CHANGELOG.md +++ b/examples/nextjs-app/CHANGELOG.md @@ -1,5 +1,13 @@ # @examples/nextjs-app +## 0.1.102 + +### Patch Changes + +- Updated dependencies [[`2bf1642`](https://github.com/belgattitude/httpx/commit/2bf164234c128c8c47bf708f66084e9403015a02), [`2bf1642`](https://github.com/belgattitude/httpx/commit/2bf164234c128c8c47bf708f66084e9403015a02), [`2bf1642`](https://github.com/belgattitude/httpx/commit/2bf164234c128c8c47bf708f66084e9403015a02), [`2bf1642`](https://github.com/belgattitude/httpx/commit/2bf164234c128c8c47bf708f66084e9403015a02), [`2bf1642`](https://github.com/belgattitude/httpx/commit/2bf164234c128c8c47bf708f66084e9403015a02)]: + - @httpx/lru@0.6.0 + - @httpx/memo-intl@1.2.3 + ## 0.1.101 ### Patch Changes diff --git a/examples/nextjs-app/package.json b/examples/nextjs-app/package.json index b58afda66..c7e786ae6 100644 --- a/examples/nextjs-app/package.json +++ b/examples/nextjs-app/package.json @@ -1,6 +1,6 @@ { "name": "@examples/nextjs-app", - "version": "0.1.101", + "version": "0.1.102", "type": "module", "private": true, "scripts": { diff --git a/packages/lru/CHANGELOG.md b/packages/lru/CHANGELOG.md index 9d2bf98d5..7e9dcaa48 100644 --- a/packages/lru/CHANGELOG.md +++ b/packages/lru/CHANGELOG.md @@ -1,5 +1,21 @@ # @httpx/lru +## 0.6.0 + +### Minor Changes + +- [#1890](https://github.com/belgattitude/httpx/pull/1890) [`2bf1642`](https://github.com/belgattitude/httpx/commit/2bf164234c128c8c47bf708f66084e9403015a02) Thanks [@belgattitude](https://github.com/belgattitude)! - Rename getOrInsert into getOrSet (BC) + +- [#1890](https://github.com/belgattitude/httpx/pull/1890) [`2bf1642`](https://github.com/belgattitude/httpx/commit/2bf164234c128c8c47bf708f66084e9403015a02) Thanks [@belgattitude](https://github.com/belgattitude)! - LRU.clear now returns the number of cleared items + +- [#1890](https://github.com/belgattitude/httpx/pull/1890) [`2bf1642`](https://github.com/belgattitude/httpx/commit/2bf164234c128c8c47bf708f66084e9403015a02) Thanks [@belgattitude](https://github.com/belgattitude)! - Allow CacheKey type to be a number (still default to string) + +- [#1890](https://github.com/belgattitude/httpx/pull/1890) [`2bf1642`](https://github.com/belgattitude/httpx/commit/2bf164234c128c8c47bf708f66084e9403015a02) Thanks [@belgattitude](https://github.com/belgattitude)! - Export BaseCache interface for customization + +### Patch Changes + +- [#1890](https://github.com/belgattitude/httpx/pull/1890) [`2bf1642`](https://github.com/belgattitude/httpx/commit/2bf164234c128c8c47bf708f66084e9403015a02) Thanks [@belgattitude](https://github.com/belgattitude)! - Add benchmarks for iterators and peek + ## 0.5.0 ### Minor Changes diff --git a/packages/lru/package.json b/packages/lru/package.json index 8471c4eb7..665195faa 100644 --- a/packages/lru/package.json +++ b/packages/lru/package.json @@ -1,7 +1,7 @@ { "name": "@httpx/lru", "description": "LRUCache implementations with O(1) complexity", - "version": "0.5.0", + "version": "0.6.0", "license": "MIT", "author": { "name": "Vanvelthem Sébastien", diff --git a/packages/memo-intl/CHANGELOG.md b/packages/memo-intl/CHANGELOG.md index 3a516a56e..c1b4cb0f3 100644 --- a/packages/memo-intl/CHANGELOG.md +++ b/packages/memo-intl/CHANGELOG.md @@ -1,5 +1,12 @@ # @httpx/memo-intl +## 1.2.3 + +### Patch Changes + +- Updated dependencies [[`2bf1642`](https://github.com/belgattitude/httpx/commit/2bf164234c128c8c47bf708f66084e9403015a02), [`2bf1642`](https://github.com/belgattitude/httpx/commit/2bf164234c128c8c47bf708f66084e9403015a02), [`2bf1642`](https://github.com/belgattitude/httpx/commit/2bf164234c128c8c47bf708f66084e9403015a02), [`2bf1642`](https://github.com/belgattitude/httpx/commit/2bf164234c128c8c47bf708f66084e9403015a02), [`2bf1642`](https://github.com/belgattitude/httpx/commit/2bf164234c128c8c47bf708f66084e9403015a02)]: + - @httpx/lru@0.6.0 + ## 1.2.2 ### Patch Changes diff --git a/packages/memo-intl/package.json b/packages/memo-intl/package.json index ed1b00d42..621339b2b 100644 --- a/packages/memo-intl/package.json +++ b/packages/memo-intl/package.json @@ -1,7 +1,7 @@ { "name": "@httpx/memo-intl", "description": "LRU-based memoizer for Intl constructors.", - "version": "1.2.2", + "version": "1.2.3", "license": "MIT", "author": { "name": "Vanvelthem Sébastien",