Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions .changeset/fix-federated-source-maps.md

This file was deleted.

8 changes: 0 additions & 8 deletions .changeset/lazy-platform-compilation.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/reject-webpack-asset-requests.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/unify-bundler-commands.md

This file was deleted.

6 changes: 6 additions & 0 deletions packages/dev-server/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion packages/dev-server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
6 changes: 6 additions & 0 deletions packages/init/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion packages/init/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"description": "Automates the integration of the @callstack/repack into React-Native projects",
"author": "Jakub Romańczyk <jakub.romanczyk@callstack.com>",
"license": "MIT",
"version": "5.3.0",
"version": "5.4.0",
"homepage": "https://github.com/callstack/repack",
"repository": {
"type": "git",
Expand Down
2 changes: 2 additions & 0 deletions packages/plugin-expo-modules/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# @callstack/repack-plugin-expo-modules

## 5.4.0

## 5.3.0

## 5.2.5
Expand Down
2 changes: 1 addition & 1 deletion packages/plugin-expo-modules/package.json
Original file line number Diff line number Diff line change
@@ -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 <jakub.romanczyk@callstack.com>",
"license": "MIT",
Expand Down
2 changes: 2 additions & 0 deletions packages/plugin-nativewind/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# @callstack/repack-plugin-nativewind

## 5.4.0

## 5.3.0

## 5.2.5
Expand Down
2 changes: 1 addition & 1 deletion packages/plugin-nativewind/package.json
Original file line number Diff line number Diff line change
@@ -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 <boris.yankov@callstack.com>",
"contributors": [
Expand Down
2 changes: 2 additions & 0 deletions packages/plugin-reanimated/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# @callstack/repack-plugin-reanimated

## 5.4.0

## 5.3.0

## 5.2.5
Expand Down
2 changes: 1 addition & 1 deletion packages/plugin-reanimated/package.json
Original file line number Diff line number Diff line change
@@ -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 <jakub.romanczyk@callstack.com>",
"license": "MIT",
Expand Down
20 changes: 20 additions & 0 deletions packages/repack/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion packages/repack/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down