From 12ffdc9a412f72c934524c86c94aaa69bca07777 Mon Sep 17 00:00:00 2001 From: Julien Deniau Date: Wed, 23 Aug 2023 09:34:53 +0000 Subject: [PATCH 1/4] upgrade changelog --- CHANGELOG.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index b6ab621f33..43258856f1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,11 @@ Dates are formatted as YYYY-MM-DD. ## Unreleased +## [4.3.3] - 2023-08-23 + +- manage to handle toJS circular reference. [#1932](https://github.com/immutable-js/immutable-js/pull/1932) +- Add install instructions for pnpm and Bun [#1952](https://github.com/immutable-js/immutable-js/pull/1952) and [#1953](https://github.com/immutable-js/immutable-js/pull/1953) + ## [4.3.2] - 2023-08-01 - Fix isOrderedSet type [#1948](https://github.com/immutable-js/immutable-js/pull/1948) From aa4ff9c442016b1622ff9fdfcbe19ea9a9b11993 Mon Sep 17 00:00:00 2001 From: Julien Deniau Date: Wed, 23 Aug 2023 09:35:03 +0000 Subject: [PATCH 2/4] 4.3.3 --- package-lock.json | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package-lock.json b/package-lock.json index 18c8f29e55..85107a0037 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "immutable", - "version": "4.3.2", + "version": "4.3.3", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "immutable", - "version": "4.3.2", + "version": "4.3.3", "license": "MIT", "devDependencies": { "@types/jest": "27.0.1", diff --git a/package.json b/package.json index 02857e1aca..34b552c4ee 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "immutable", - "version": "4.3.2", + "version": "4.3.3", "description": "Immutable Data Collections", "license": "MIT", "homepage": "https://immutable-js.com", From 55dc5328725be4ca18340ab0bfb24bfae4964f34 Mon Sep 17 00:00:00 2001 From: Julien Deniau Date: Wed, 23 Aug 2023 09:39:30 +0000 Subject: [PATCH 3/4] better changelog [TypeScript] tag --- CHANGELOG.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 43258856f1..4722fffede 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,12 +10,12 @@ Dates are formatted as YYYY-MM-DD. ## [4.3.3] - 2023-08-23 -- manage to handle toJS circular reference. [#1932](https://github.com/immutable-js/immutable-js/pull/1932) -- Add install instructions for pnpm and Bun [#1952](https://github.com/immutable-js/immutable-js/pull/1952) and [#1953](https://github.com/immutable-js/immutable-js/pull/1953) +- [TypeScript] manage to handle toJS circular reference. [#1932](https://github.com/immutable-js/immutable-js/pull/1932) +- [Doc] Add install instructions for pnpm and Bun [#1952](https://github.com/immutable-js/immutable-js/pull/1952) and [#1953](https://github.com/immutable-js/immutable-js/pull/1953) ## [4.3.2] - 2023-08-01 -- Fix isOrderedSet type [#1948](https://github.com/immutable-js/immutable-js/pull/1948) +- [TypeScript] Fix isOrderedSet type [#1948](https://github.com/immutable-js/immutable-js/pull/1948) ## [4.3.1] - 2023-07-11 @@ -25,15 +25,15 @@ Dates are formatted as YYYY-MM-DD. ## [4.3.0] - 2023-03-10 - Introduce Comparator and PairSorting [#1937](https://github.com/immutable-js/immutable-js/pull/1937) by [@https://github.com/giancosta86](https://github.com/giancosta86) -- Fix fromJS declaration for greater compatibility [#1936](https://github.com/immutable-js/immutable-js/pull/1936) +- [TypeScript] Fix fromJS declaration for greater compatibility [#1936](https://github.com/immutable-js/immutable-js/pull/1936) ## [4.2.4] - 2023-02-06 -- Improve type infererence for from JS by [KSXGitHub](https://github.com/KSXGitHub) [#1927](https://github.com/immutable-js/immutable-js/pull/1927) +- [TypeScript] Improve type infererence for from JS by [KSXGitHub](https://github.com/KSXGitHub) [#1927](https://github.com/immutable-js/immutable-js/pull/1927) ## [4.2.3] - 2023-02-02 -- TypeScript: `groupBy` return either a `Map` or an `OrderedMap`: make the type more precise than base `Collection` [#1924](https://github.com/immutable-js/immutable-js/pull/1924) +- [TypeScript] `groupBy` return either a `Map` or an `OrderedMap`: make the type more precise than base `Collection` [#1924](https://github.com/immutable-js/immutable-js/pull/1924) ## [4.2.2] - 2023-01-02 From 48e53ee4e5fe7726f7a76ba4e584f17135444ea2 Mon Sep 17 00:00:00 2001 From: Julien Deniau Date: Wed, 23 Aug 2023 09:53:42 +0000 Subject: [PATCH 4/4] update changelog --- CHANGELOG.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4722fffede..f1f82c4a76 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,8 +10,8 @@ Dates are formatted as YYYY-MM-DD. ## [4.3.3] - 2023-08-23 -- [TypeScript] manage to handle toJS circular reference. [#1932](https://github.com/immutable-js/immutable-js/pull/1932) -- [Doc] Add install instructions for pnpm and Bun [#1952](https://github.com/immutable-js/immutable-js/pull/1952) and [#1953](https://github.com/immutable-js/immutable-js/pull/1953) +- [typescript] manage to handle toJS circular reference. [#1932](https://github.com/immutable-js/immutable-js/pull/1932) by [@jdeniau](https://github.com/jdeniau) +- [doc] Add install instructions for pnpm and Bun [#1952](https://github.com/immutable-js/immutable-js/pull/1952) by [@colinhacks](https://github.com/colinhacks) and [#1953](https://github.com/immutable-js/immutable-js/pull/1953) by [@menglingyu659](https://github.com/menglingyu659) ## [4.3.2] - 2023-08-01