From 2ca6b912968698371f74773287feef4db4473f2c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 31 Aug 2026 21:06:09 +0000 Subject: [PATCH] chore: changeset version --- .changeset/fix-federated-source-maps.md | 6 ------ .changeset/lazy-platform-compilation.md | 8 -------- .changeset/reject-webpack-asset-requests.md | 5 ----- .changeset/unify-bundler-commands.md | 6 ------ packages/dev-server/CHANGELOG.md | 6 ++++++ packages/dev-server/package.json | 2 +- packages/init/CHANGELOG.md | 6 ++++++ packages/init/package.json | 2 +- packages/plugin-expo-modules/CHANGELOG.md | 2 ++ packages/plugin-expo-modules/package.json | 2 +- packages/plugin-nativewind/CHANGELOG.md | 2 ++ packages/plugin-nativewind/package.json | 2 +- packages/plugin-reanimated/CHANGELOG.md | 2 ++ packages/plugin-reanimated/package.json | 2 +- packages/repack/CHANGELOG.md | 20 ++++++++++++++++++++ packages/repack/package.json | 2 +- 16 files changed, 44 insertions(+), 31 deletions(-) delete mode 100644 .changeset/fix-federated-source-maps.md delete mode 100644 .changeset/lazy-platform-compilation.md delete mode 100644 .changeset/reject-webpack-asset-requests.md delete mode 100644 .changeset/unify-bundler-commands.md diff --git a/.changeset/fix-federated-source-maps.md b/.changeset/fix-federated-source-maps.md deleted file mode 100644 index bbf996a1e..000000000 --- a/.changeset/fix-federated-source-maps.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"@callstack/repack": patch -"@callstack/repack-dev-server": patch ---- - -Fix development symbolication for Module Federation host and remote bundles. The host now follows a remote bundle's declared source map, invalid generated webpack source URLs no longer invalidate an otherwise usable map, symbolication continues when an individual frame cannot be mapped, and code frames use the matching source map's embedded source content. The dev server also logs the first useful symbolicated runtime frame as a fallback when opening the source file from the device is delayed. diff --git a/.changeset/lazy-platform-compilation.md b/.changeset/lazy-platform-compilation.md deleted file mode 100644 index 5da2d2068..000000000 --- a/.changeset/lazy-platform-compilation.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -"@callstack/repack": minor ---- - -Bring the Rspack development experience in line with Webpack by compiling each -platform only when its bundle is first requested. Multi-platform development -servers no longer eagerly build unused platforms, so launching an iOS app does -not wait for Android to compile, and vice versa. diff --git a/.changeset/reject-webpack-asset-requests.md b/.changeset/reject-webpack-asset-requests.md deleted file mode 100644 index 18966657d..000000000 --- a/.changeset/reject-webpack-asset-requests.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@callstack/repack": patch ---- - -Reject pending webpack asset requests when compilation fails instead of leaving requests hanging. diff --git a/.changeset/unify-bundler-commands.md b/.changeset/unify-bundler-commands.md deleted file mode 100644 index 9f045ab5c..000000000 --- a/.changeset/unify-bundler-commands.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"@callstack/repack": minor -"@callstack/repack-init": patch ---- - -Add the unified `@callstack/repack/commands` entry point with automatic bundler detection and a `--bundler` override. Re.Pack Init now uses it, while bundler-specific entry points remain available with deprecation warnings. diff --git a/packages/dev-server/CHANGELOG.md b/packages/dev-server/CHANGELOG.md index 1674215fb..f2cacfe08 100644 --- a/packages/dev-server/CHANGELOG.md +++ b/packages/dev-server/CHANGELOG.md @@ -1,5 +1,11 @@ # @callstack/repack-dev-server +## 5.4.0 + +### Patch Changes + +- [#1434](https://github.com/callstack/repack/pull/1434) [`ed1003f`](https://github.com/callstack/repack/commit/ed1003fe1eec193001724ad239b279f543438b13) Thanks [@MikitasK](https://github.com/MikitasK)! - Fix development symbolication for Module Federation host and remote bundles. The host now follows a remote bundle's declared source map, invalid generated webpack source URLs no longer invalidate an otherwise usable map, symbolication continues when an individual frame cannot be mapped, and code frames use the matching source map's embedded source content. The dev server also logs the first useful symbolicated runtime frame as a fallback when opening the source file from the device is delayed. + ## 5.3.0 ### Patch Changes diff --git a/packages/dev-server/package.json b/packages/dev-server/package.json index ba94b9913..e8522a8c0 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.3.0", + "version": "5.4.0", "type": "module", "main": "./dist/index.js", "types": "./dist/index.d.ts", diff --git a/packages/init/CHANGELOG.md b/packages/init/CHANGELOG.md index 29077a94e..0b02e346e 100644 --- a/packages/init/CHANGELOG.md +++ b/packages/init/CHANGELOG.md @@ -1,5 +1,11 @@ # @callstack/repack-init +## 5.4.0 + +### Patch Changes + +- [#1424](https://github.com/callstack/repack/pull/1424) [`8dcc116`](https://github.com/callstack/repack/commit/8dcc116c291fe7fb7eb9f0f6c9640058e83a9c50) Thanks [@jbroma](https://github.com/jbroma)! - Add the unified `@callstack/repack/commands` entry point with automatic bundler detection and a `--bundler` override. Re.Pack Init now uses it, while bundler-specific entry points remain available with deprecation warnings. + ## 5.3.0 ## 5.2.5 diff --git a/packages/init/package.json b/packages/init/package.json index d1f4f4557..b986cbabe 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.3.0", + "version": "5.4.0", "homepage": "https://github.com/callstack/repack", "repository": { "type": "git", diff --git a/packages/plugin-expo-modules/CHANGELOG.md b/packages/plugin-expo-modules/CHANGELOG.md index 6bbf52e84..7969a9278 100644 --- a/packages/plugin-expo-modules/CHANGELOG.md +++ b/packages/plugin-expo-modules/CHANGELOG.md @@ -1,5 +1,7 @@ # @callstack/repack-plugin-expo-modules +## 5.4.0 + ## 5.3.0 ## 5.2.5 diff --git a/packages/plugin-expo-modules/package.json b/packages/plugin-expo-modules/package.json index 048180458..b001759bc 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.3.0", + "version": "5.4.0", "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 3def92daa..85cff3347 100644 --- a/packages/plugin-nativewind/CHANGELOG.md +++ b/packages/plugin-nativewind/CHANGELOG.md @@ -1,5 +1,7 @@ # @callstack/repack-plugin-nativewind +## 5.4.0 + ## 5.3.0 ## 5.2.5 diff --git a/packages/plugin-nativewind/package.json b/packages/plugin-nativewind/package.json index 77fa64f40..619340b0d 100644 --- a/packages/plugin-nativewind/package.json +++ b/packages/plugin-nativewind/package.json @@ -1,6 +1,6 @@ { "name": "@callstack/repack-plugin-nativewind", - "version": "5.3.0", + "version": "5.4.0", "description": "A plugin for @callstack/repack that integrates NativeWind", "author": "Boris Yankov ", "contributors": [ diff --git a/packages/plugin-reanimated/CHANGELOG.md b/packages/plugin-reanimated/CHANGELOG.md index 54c0ada9a..679cb165b 100644 --- a/packages/plugin-reanimated/CHANGELOG.md +++ b/packages/plugin-reanimated/CHANGELOG.md @@ -1,5 +1,7 @@ # @callstack/repack-plugin-reanimated +## 5.4.0 + ## 5.3.0 ## 5.2.5 diff --git a/packages/plugin-reanimated/package.json b/packages/plugin-reanimated/package.json index 337fb260d..4e75dace9 100644 --- a/packages/plugin-reanimated/package.json +++ b/packages/plugin-reanimated/package.json @@ -1,6 +1,6 @@ { "name": "@callstack/repack-plugin-reanimated", - "version": "5.3.0", + "version": "5.4.0", "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 85794b7bb..8399eb255 100644 --- a/packages/repack/CHANGELOG.md +++ b/packages/repack/CHANGELOG.md @@ -1,5 +1,25 @@ # @callstack/repack +## 5.4.0 + +### Minor Changes + +- [#1430](https://github.com/callstack/repack/pull/1430) [`33df89a`](https://github.com/callstack/repack/commit/33df89a735314be29cc8bc6f8e23f8d139164aa8) Thanks [@jbroma](https://github.com/jbroma)! - Bring the Rspack development experience in line with Webpack by compiling each + platform only when its bundle is first requested. Multi-platform development + servers no longer eagerly build unused platforms, so launching an iOS app does + not wait for Android to compile, and vice versa. + +- [#1424](https://github.com/callstack/repack/pull/1424) [`8dcc116`](https://github.com/callstack/repack/commit/8dcc116c291fe7fb7eb9f0f6c9640058e83a9c50) Thanks [@jbroma](https://github.com/jbroma)! - Add the unified `@callstack/repack/commands` entry point with automatic bundler detection and a `--bundler` override. Re.Pack Init now uses it, while bundler-specific entry points remain available with deprecation warnings. + +### Patch Changes + +- [#1434](https://github.com/callstack/repack/pull/1434) [`ed1003f`](https://github.com/callstack/repack/commit/ed1003fe1eec193001724ad239b279f543438b13) Thanks [@MikitasK](https://github.com/MikitasK)! - Fix development symbolication for Module Federation host and remote bundles. The host now follows a remote bundle's declared source map, invalid generated webpack source URLs no longer invalidate an otherwise usable map, symbolication continues when an individual frame cannot be mapped, and code frames use the matching source map's embedded source content. The dev server also logs the first useful symbolicated runtime frame as a fallback when opening the source file from the device is delayed. + +- [#1424](https://github.com/callstack/repack/pull/1424) [`8dcc116`](https://github.com/callstack/repack/commit/8dcc116c291fe7fb7eb9f0f6c9640058e83a9c50) Thanks [@jbroma](https://github.com/jbroma)! - Reject pending webpack asset requests when compilation fails instead of leaving requests hanging. + +- Updated dependencies [[`ed1003f`](https://github.com/callstack/repack/commit/ed1003fe1eec193001724ad239b279f543438b13)]: + - @callstack/repack-dev-server@5.4.0 + ## 5.3.0 ### Minor Changes diff --git a/packages/repack/package.json b/packages/repack/package.json index 50cf9a889..5e87d4d52 100644 --- a/packages/repack/package.json +++ b/packages/repack/package.json @@ -1,6 +1,6 @@ { "name": "@callstack/repack", - "version": "5.3.0", + "version": "5.4.0", "description": "A toolkit to build your React Native application with Rspack or Webpack.", "type": "commonjs", "main": "./dist/index.js",