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..ba32e2a76 100644 --- a/packages/dev-server/CHANGELOG.md +++ b/packages/dev-server/CHANGELOG.md @@ -1,5 +1,7 @@ # @callstack/repack-dev-server +## 5.4.0 + ## 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..97368e4f7 100644 --- a/packages/repack/CHANGELOG.md +++ b/packages/repack/CHANGELOG.md @@ -1,5 +1,18 @@ # @callstack/repack +## 5.4.0 + +### Minor 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. + +### Patch Changes + +- [#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 []: + - @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",