From f669cb5800a2286bb59ecd319647a2676f012b96 Mon Sep 17 00:00:00 2001 From: Jakub Romanczyk Date: Fri, 13 Mar 2026 13:38:07 +0100 Subject: [PATCH] chore: changeset version --- .changeset/bootstrap-rn-84-projects.md | 5 ----- .changeset/devtools-android-stability.md | 5 ----- .changeset/fix-repack-init-npm-flow.md | 5 ----- .changeset/native-entry-polyfills-module-ids.md | 5 ----- .changeset/nimbus-jose-jwt-security.md | 5 ----- .changeset/preserve-terminal-stdout-lines.md | 5 ----- .changeset/restore-swc-transform-compatibility.md | 5 ----- packages/dev-server/CHANGELOG.md | 6 ++++++ packages/dev-server/package.json | 2 +- packages/init/CHANGELOG.md | 8 ++++++++ packages/init/package.json | 2 +- packages/plugin-expo-modules/CHANGELOG.md | 7 +++++++ packages/plugin-expo-modules/package.json | 2 +- packages/plugin-nativewind/CHANGELOG.md | 7 +++++++ packages/plugin-nativewind/package.json | 2 +- packages/plugin-reanimated/CHANGELOG.md | 7 +++++++ packages/plugin-reanimated/package.json | 2 +- packages/repack/CHANGELOG.md | 15 +++++++++++++++ packages/repack/package.json | 2 +- 19 files changed, 56 insertions(+), 41 deletions(-) delete mode 100644 .changeset/bootstrap-rn-84-projects.md delete mode 100644 .changeset/devtools-android-stability.md delete mode 100644 .changeset/fix-repack-init-npm-flow.md delete mode 100644 .changeset/native-entry-polyfills-module-ids.md delete mode 100644 .changeset/nimbus-jose-jwt-security.md delete mode 100644 .changeset/preserve-terminal-stdout-lines.md delete mode 100644 .changeset/restore-swc-transform-compatibility.md diff --git a/.changeset/bootstrap-rn-84-projects.md b/.changeset/bootstrap-rn-84-projects.md deleted file mode 100644 index 943103413..000000000 --- a/.changeset/bootstrap-rn-84-projects.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@callstack/repack-init": patch ---- - -Add support for bootstrapping new Re.Pack projects with React Native 0.84.1 and refresh the default bundler dependency versions used during initialization. diff --git a/.changeset/devtools-android-stability.md b/.changeset/devtools-android-stability.md deleted file mode 100644 index 19ce29739..000000000 --- a/.changeset/devtools-android-stability.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@callstack/repack-dev-server": patch ---- - -Avoid crashing Android apps when opening React Native DevTools by handling cross-origin `Network.loadNetworkResource` requests inside the dev server. diff --git a/.changeset/fix-repack-init-npm-flow.md b/.changeset/fix-repack-init-npm-flow.md deleted file mode 100644 index 1055b2119..000000000 --- a/.changeset/fix-repack-init-npm-flow.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@callstack/repack-init": patch ---- - -Fix npm-based project creation by using `npm exec ... -- rnc-cli` instead of a nested `npx` invocation, and pass a fully qualified React Native patch version to the React Native CLI. diff --git a/.changeset/native-entry-polyfills-module-ids.md b/.changeset/native-entry-polyfills-module-ids.md deleted file mode 100644 index 08fca82e0..000000000 --- a/.changeset/native-entry-polyfills-module-ids.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@callstack/repack": patch ---- - -Fix production bundles so `NativeEntryPlugin` keeps polyfills on module-id based `__webpack_require__(id)` startup. diff --git a/.changeset/nimbus-jose-jwt-security.md b/.changeset/nimbus-jose-jwt-security.md deleted file mode 100644 index a774b33f4..000000000 --- a/.changeset/nimbus-jose-jwt-security.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@callstack/repack": patch ---- - -Bump the Android `nimbus-jose-jwt` dependency from `9.48` to `10.8` for upstream security fixes. diff --git a/.changeset/preserve-terminal-stdout-lines.md b/.changeset/preserve-terminal-stdout-lines.md deleted file mode 100644 index 217f01429..000000000 --- a/.changeset/preserve-terminal-stdout-lines.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@callstack/repack": patch ---- - -Preserve non-terminal stdout logs while interactive status is active, so plugin output lines are not cleared by status redraws. diff --git a/.changeset/restore-swc-transform-compatibility.md b/.changeset/restore-swc-transform-compatibility.md deleted file mode 100644 index 93aa73f61..000000000 --- a/.changeset/restore-swc-transform-compatibility.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@callstack/repack": patch ---- - -Fix `babel-swc-loader` compatibility for loose class fields, private methods, and destructuring by adding the complementary SWC transforms SWC expects to run alongside them. diff --git a/packages/dev-server/CHANGELOG.md b/packages/dev-server/CHANGELOG.md index 9bf9a0234..1fba9ca46 100644 --- a/packages/dev-server/CHANGELOG.md +++ b/packages/dev-server/CHANGELOG.md @@ -1,5 +1,11 @@ # @callstack/repack-dev-server +## 5.2.5 + +### Patch Changes + +- [#1371](https://github.com/callstack/repack/pull/1371) [`1ab6e4e`](https://github.com/callstack/repack/commit/1ab6e4ee5e466f97b5583aad5940d1371f252299) Thanks [@jbroma](https://github.com/jbroma)! - Avoid crashing Android apps when opening React Native DevTools by handling cross-origin `Network.loadNetworkResource` requests inside the dev server. + ## 5.2.4 ### Patch Changes diff --git a/packages/dev-server/package.json b/packages/dev-server/package.json index e23874716..b7c9c1dca 100644 --- a/packages/dev-server/package.json +++ b/packages/dev-server/package.json @@ -2,7 +2,7 @@ "name": "@callstack/repack-dev-server", "description": "A bundler-agnostic development server for React Native applications as part of @callstack/repack.", "license": "MIT", - "version": "5.2.4", + "version": "5.2.5", "type": "module", "main": "./dist/index.js", "types": "./dist/index.d.ts", diff --git a/packages/init/CHANGELOG.md b/packages/init/CHANGELOG.md index 7a7e62f45..c858bf98c 100644 --- a/packages/init/CHANGELOG.md +++ b/packages/init/CHANGELOG.md @@ -1,5 +1,13 @@ # @callstack/repack-init +## 5.2.5 + +### Patch Changes + +- [#1373](https://github.com/callstack/repack/pull/1373) [`1f81fe8`](https://github.com/callstack/repack/commit/1f81fe8d853610f927e9d314593657e5b29aa1d7) Thanks [@jbroma](https://github.com/jbroma)! - Add support for bootstrapping new Re.Pack projects with React Native 0.84.1 and refresh the default bundler dependency versions used during initialization. + +- [#1370](https://github.com/callstack/repack/pull/1370) [`84acbdd`](https://github.com/callstack/repack/commit/84acbdde35e35132738b5540a0a5d38160718333) Thanks [@jbroma](https://github.com/jbroma)! - Fix npm-based project creation by using `npm exec ... -- rnc-cli` instead of a nested `npx` invocation, and pass a fully qualified React Native patch version to the React Native CLI. + ## 5.2.4 ## 5.2.3 diff --git a/packages/init/package.json b/packages/init/package.json index 1fad8da52..9e59d3c40 100644 --- a/packages/init/package.json +++ b/packages/init/package.json @@ -3,7 +3,7 @@ "description": "Automates the integration of the @callstack/repack into React-Native projects", "author": "Jakub Romańczyk ", "license": "MIT", - "version": "5.2.4", + "version": "5.2.5", "homepage": "https://github.com/callstack/repack", "repository": "github:callstack/repack", "keywords": ["repack", "re.pack", "init", "repack-init"], diff --git a/packages/plugin-expo-modules/CHANGELOG.md b/packages/plugin-expo-modules/CHANGELOG.md index ab9407363..1c9314d73 100644 --- a/packages/plugin-expo-modules/CHANGELOG.md +++ b/packages/plugin-expo-modules/CHANGELOG.md @@ -1,5 +1,12 @@ # @callstack/repack-plugin-expo-modules +## 5.2.5 + +### Patch Changes + +- Updated dependencies [[`1705f2a`](https://github.com/callstack/repack/commit/1705f2ac1f687e235a7f41f46bd53d833b8136ab), [`60e6a17`](https://github.com/callstack/repack/commit/60e6a1709e1b21b56d3202e95a9ed08e17da0926), [`b4178c2`](https://github.com/callstack/repack/commit/b4178c23c43db7fe64e8795e871bd54f7291ec20), [`d0058e2`](https://github.com/callstack/repack/commit/d0058e224bbe62781515fb1707154ce08b5394eb)]: + - @callstack/repack@5.2.5 + ## 5.2.4 ### Patch Changes diff --git a/packages/plugin-expo-modules/package.json b/packages/plugin-expo-modules/package.json index fe24a190c..48b99eda0 100644 --- a/packages/plugin-expo-modules/package.json +++ b/packages/plugin-expo-modules/package.json @@ -1,6 +1,6 @@ { "name": "@callstack/repack-plugin-expo-modules", - "version": "5.2.4", + "version": "5.2.5", "description": "A plugin for @callstack/repack that integrates Expo Modules", "author": "Jakub Romańczyk ", "license": "MIT", diff --git a/packages/plugin-nativewind/CHANGELOG.md b/packages/plugin-nativewind/CHANGELOG.md index 747cc6ce4..9c9a66184 100644 --- a/packages/plugin-nativewind/CHANGELOG.md +++ b/packages/plugin-nativewind/CHANGELOG.md @@ -1,5 +1,12 @@ # @callstack/repack-plugin-nativewind +## 5.2.5 + +### Patch Changes + +- Updated dependencies [[`1705f2a`](https://github.com/callstack/repack/commit/1705f2ac1f687e235a7f41f46bd53d833b8136ab), [`60e6a17`](https://github.com/callstack/repack/commit/60e6a1709e1b21b56d3202e95a9ed08e17da0926), [`b4178c2`](https://github.com/callstack/repack/commit/b4178c23c43db7fe64e8795e871bd54f7291ec20), [`d0058e2`](https://github.com/callstack/repack/commit/d0058e224bbe62781515fb1707154ce08b5394eb)]: + - @callstack/repack@5.2.5 + ## 5.2.4 ### Patch Changes diff --git a/packages/plugin-nativewind/package.json b/packages/plugin-nativewind/package.json index 4c60c4b62..7c7babd64 100644 --- a/packages/plugin-nativewind/package.json +++ b/packages/plugin-nativewind/package.json @@ -1,6 +1,6 @@ { "name": "@callstack/repack-plugin-nativewind", - "version": "5.2.4", + "version": "5.2.5", "description": "A plugin for @callstack/repack that integrates NativeWind", "author": "Boris Yankov ", "contributors": ["Jakub Romańczyk "], diff --git a/packages/plugin-reanimated/CHANGELOG.md b/packages/plugin-reanimated/CHANGELOG.md index 4b3bada0c..14dba4711 100644 --- a/packages/plugin-reanimated/CHANGELOG.md +++ b/packages/plugin-reanimated/CHANGELOG.md @@ -1,5 +1,12 @@ # @callstack/repack-plugin-reanimated +## 5.2.5 + +### Patch Changes + +- Updated dependencies [[`1705f2a`](https://github.com/callstack/repack/commit/1705f2ac1f687e235a7f41f46bd53d833b8136ab), [`60e6a17`](https://github.com/callstack/repack/commit/60e6a1709e1b21b56d3202e95a9ed08e17da0926), [`b4178c2`](https://github.com/callstack/repack/commit/b4178c23c43db7fe64e8795e871bd54f7291ec20), [`d0058e2`](https://github.com/callstack/repack/commit/d0058e224bbe62781515fb1707154ce08b5394eb)]: + - @callstack/repack@5.2.5 + ## 5.2.4 ### Patch Changes diff --git a/packages/plugin-reanimated/package.json b/packages/plugin-reanimated/package.json index 10c94a549..09b6771d7 100644 --- a/packages/plugin-reanimated/package.json +++ b/packages/plugin-reanimated/package.json @@ -1,6 +1,6 @@ { "name": "@callstack/repack-plugin-reanimated", - "version": "5.2.4", + "version": "5.2.5", "description": "A plugin for @callstack/repack that integrates react-native-reanimated", "author": "Jakub Romańczyk ", "license": "MIT", diff --git a/packages/repack/CHANGELOG.md b/packages/repack/CHANGELOG.md index 8a2151d80..cbca855fa 100644 --- a/packages/repack/CHANGELOG.md +++ b/packages/repack/CHANGELOG.md @@ -1,5 +1,20 @@ # @callstack/repack +## 5.2.5 + +### Patch Changes + +- [#1357](https://github.com/callstack/repack/pull/1357) [`1705f2a`](https://github.com/callstack/repack/commit/1705f2ac1f687e235a7f41f46bd53d833b8136ab) Thanks [@jbroma](https://github.com/jbroma)! - Fix production bundles so `NativeEntryPlugin` keeps polyfills on module-id based `__webpack_require__(id)` startup. + +- [#1358](https://github.com/callstack/repack/pull/1358) [`60e6a17`](https://github.com/callstack/repack/commit/60e6a1709e1b21b56d3202e95a9ed08e17da0926) Thanks [@jbroma](https://github.com/jbroma)! - Bump the Android `nimbus-jose-jwt` dependency from `9.48` to `10.8` for upstream security fixes. + +- [#1361](https://github.com/callstack/repack/pull/1361) [`b4178c2`](https://github.com/callstack/repack/commit/b4178c23c43db7fe64e8795e871bd54f7291ec20) Thanks [@jbroma](https://github.com/jbroma)! - Preserve non-terminal stdout logs while interactive status is active, so plugin output lines are not cleared by status redraws. + +- [#1364](https://github.com/callstack/repack/pull/1364) [`d0058e2`](https://github.com/callstack/repack/commit/d0058e224bbe62781515fb1707154ce08b5394eb) Thanks [@jbroma](https://github.com/jbroma)! - Fix `babel-swc-loader` compatibility for loose class fields, private methods, and destructuring by adding the complementary SWC transforms SWC expects to run alongside them. + +- Updated dependencies [[`1ab6e4e`](https://github.com/callstack/repack/commit/1ab6e4ee5e466f97b5583aad5940d1371f252299)]: + - @callstack/repack-dev-server@5.2.5 + ## 5.2.4 ### Patch Changes diff --git a/packages/repack/package.json b/packages/repack/package.json index d1a5fa72b..59cf29d96 100644 --- a/packages/repack/package.json +++ b/packages/repack/package.json @@ -1,6 +1,6 @@ { "name": "@callstack/repack", - "version": "5.2.4", + "version": "5.2.5", "description": "A toolkit to build your React Native application with Rspack or Webpack.", "type": "commonjs", "main": "./dist/index.js",