Skip to content

Commit 7d84beb

Browse files
committed
release: 4.0.0-rc.1
1 parent 8a57f57 commit 7d84beb

8 files changed

Lines changed: 46 additions & 19 deletions

File tree

.changeset/pre.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,11 @@
1919
"good-planes-confess",
2020
"grumpy-tigers-eat",
2121
"honest-wolves-act",
22+
"kind-beds-clap",
2223
"kind-scissors-kick",
24+
"modern-dryers-itch",
25+
"polite-islands-fetch",
26+
"sharp-stingrays-wave",
2327
"shiny-planes-hope",
2428
"warm-numbers-doubt",
2529
"yellow-spiders-smash"

packages/TesterApp/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"serve-remote-assets:ios": "pnpm http-server -p 9999 build/output/ios/remote"
1515
},
1616
"dependencies": {
17-
"@callstack/repack": "4.0.0-rc.0",
17+
"@callstack/repack": "4.0.0-rc.1",
1818
"@react-native-async-storage/async-storage": "^1.21.0",
1919
"lodash.throttle": "^4.1.1",
2020
"react": "18.2.0",

packages/dev-server/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @callstack/repack-dev-server
22

3+
## 4.0.0-rc.1
4+
5+
### Patch Changes
6+
7+
- [#554](https://github.com/callstack/repack/pull/554) [`ed82e29`](https://github.com/callstack/repack/commit/ed82e29c2871411fd73616f29a7d4b75ff3dd913) Thanks [@jbroma](https://github.com/jbroma)! - Fix path to favicon.ico on Windows
8+
39
## 4.0.0-rc.0
410

511
### Major Changes

packages/dev-server/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@callstack/repack-dev-server",
33
"description": "A bundler-agnostic development server for React Native applications as part of @callstack/repack.",
44
"license": "MIT",
5-
"version": "4.0.0-rc.0",
5+
"version": "4.0.0-rc.1",
66
"type": "module",
77
"main": "./dist/index.js",
88
"types": "./dist/index.d.ts",

packages/init/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @callstack/repack-init
22

3+
## 4.0.0-rc.1
4+
5+
### Minor Changes
6+
7+
- [#557](https://github.com/callstack/repack/pull/557) [`8a57f57`](https://github.com/callstack/repack/commit/8a57f57912748efe806dbac52e29a8f4e238652d) Thanks [@jbroma](https://github.com/jbroma)! - add `custom-version` flag
8+
39
## 4.0.0-rc.0
410

511
### Major Changes

packages/init/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "Automates the integration of the @callstack/repack into React-Native projects",
44
"author": "Jakub Romańczyk <jakub.romanczyk@callstack.com>",
55
"license": "MIT",
6-
"version": "4.0.0-rc.0",
6+
"version": "4.0.0-rc.1",
77
"homepage": "https://github.com/callstack/repack",
88
"repository": "github:callstack/repack",
99
"keywords": [

packages/repack/CHANGELOG.md

Lines changed: 25 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# @callstack/repack
22

3+
## 4.0.0-rc.1
4+
5+
### Patch Changes
6+
7+
- [#555](https://github.com/callstack/repack/pull/555) [`8fe92be`](https://github.com/callstack/repack/commit/8fe92bedc65c1757f3105d21d4c498cf17327ee7) Thanks [@jbroma](https://github.com/jbroma)! - Fix getDirname on Windows
8+
9+
- [#556](https://github.com/callstack/repack/pull/556) [`6c09015`](https://github.com/callstack/repack/commit/6c09015c1afe3ac2d932dad5ed158165fd548c87) Thanks [@jbroma](https://github.com/jbroma)! - Update webpack.config templates
10+
11+
- Updated dependencies [[`ed82e29`](https://github.com/callstack/repack/commit/ed82e29c2871411fd73616f29a7d4b75ff3dd913)]:
12+
- @callstack/repack-dev-server@4.0.0-rc.1
13+
314
## 4.0.0-rc.0
415

516
### Major Changes
@@ -29,10 +40,10 @@
2940

3041
```js
3142
// react-native.config.js
32-
const commands = require('@callstack/repack/commands');
43+
const commands = require("@callstack/repack/commands");
3344

3445
module.exports = {
35-
commands: commands.filter((command) => command.name.startsWith('webpack')),
46+
commands: commands.filter((command) => command.name.startsWith("webpack")),
3647
};
3748
```
3849

@@ -361,22 +372,22 @@ This Release candidate introduces a new feature – **Code Signing**. It allows
361372
import * as Repack from "@callstack/repack";
362373
363374
new Repack.plugins.ModuleFederationPlugin({
364-
name: "host"
375+
name: "host",
365376
});
366377
367378
new Repack.plugins.ModuleFederationPlugin({
368379
name: "app1",
369380
remotes: {
370-
module1: "module1@https://example.com/module1.container.bundle"
371-
}
381+
module1: "module1@https://example.com/module1.container.bundle",
382+
},
372383
});
373384
374385
new Repack.plugins.ModuleFederationPlugin({
375386
name: "app2",
376387
remotes: {
377388
module1: "module1@https://example.com/module1.container.bundle",
378-
module2: "module1@dynamic"
379-
}
389+
module2: "module1@dynamic",
390+
},
380391
});
381392
```
382393

@@ -398,7 +409,7 @@ This Release candidate introduces a new feature – **Code Signing**. It allows
398409
async (scriptId, caller) => {
399410
// ...
400411
},
401-
{ priority: 1 }
412+
{ priority: 1 },
402413
); // Default priority is `2`.
403414
```
404415

@@ -455,22 +466,22 @@ This Release candidate introduces a new feature – **Code Signing**. It allows
455466
import * as Repack from "@callstack/repack";
456467
457468
new Repack.plugins.ModuleFederationPlugin({
458-
name: "host"
469+
name: "host",
459470
});
460471
461472
new Repack.plugins.ModuleFederationPlugin({
462473
name: "app1",
463474
remotes: {
464-
module1: "module1@https://example.com/module1.container.bundle"
465-
}
475+
module1: "module1@https://example.com/module1.container.bundle",
476+
},
466477
});
467478
468479
new Repack.plugins.ModuleFederationPlugin({
469480
name: "app2",
470481
remotes: {
471482
module1: "module1@https://example.com/module1.container.bundle",
472-
module2: "module1@dynamic"
473-
}
483+
module2: "module1@dynamic",
484+
},
474485
});
475486
```
476487

@@ -492,7 +503,7 @@ This Release candidate introduces a new feature – **Code Signing**. It allows
492503
async (scriptId, caller) => {
493504
// ...
494505
},
495-
{ priority: 1 }
506+
{ priority: 1 },
496507
); // Default priority is `2`.
497508
```
498509

packages/repack/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@callstack/repack",
3-
"version": "4.0.0-rc.0",
3+
"version": "4.0.0-rc.1",
44
"description": "A Webpack-based toolkit to build your React Native application with full support of Webpack ecosystem.",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",
@@ -58,7 +58,7 @@
5858
"webpack": "5.x"
5959
},
6060
"dependencies": {
61-
"@callstack/repack-dev-server": "^4.0.0-rc.0",
61+
"@callstack/repack-dev-server": "^4.0.0-rc.1",
6262
"@discoveryjs/json-ext": "^0.5.7",
6363
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.7",
6464
"colorette": "^1.2.2",

0 commit comments

Comments
 (0)