Skip to content

Commit f93935e

Browse files
committed
chore: changeset version
1 parent 38a9ff0 commit f93935e

9 files changed

Lines changed: 44 additions & 40 deletions

File tree

.changeset/nine-beers-shop.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/pink-ants-type.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/silent-tigers-kiss.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

packages/dev-server/CHANGELOG.md

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

3+
## 4.1.0
4+
35
## 4.0.0
46

57
### 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",
5+
"version": "4.1.0",
66
"type": "module",
77
"main": "./dist/index.js",
88
"types": "./dist/index.d.ts",

packages/init/CHANGELOG.md

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

3+
## 4.1.0
4+
35
## 4.0.0
46

57
### 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",
6+
"version": "4.1.0",
77
"homepage": "https://github.com/callstack/repack",
88
"repository": "github:callstack/repack",
99
"keywords": [

packages/repack/CHANGELOG.md

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

3+
## 4.1.0
4+
5+
### Minor Changes
6+
7+
- [#633](https://github.com/callstack/repack/pull/633) [`38a9ff0`](https://github.com/callstack/repack/commit/38a9ff013d9fb79a75e64a557be2cee75e964cc1) Thanks [@jbroma](https://github.com/jbroma)! - Support for bridgeless new architecture
8+
9+
### Patch Changes
10+
11+
- [#628](https://github.com/callstack/repack/pull/628) [`9485bd6`](https://github.com/callstack/repack/commit/9485bd6c6c377498159d0523f39eb98eee5e638a) Thanks [@jbroma](https://github.com/jbroma)! - Remove loader-utils in favor of webpack loader builtins
12+
13+
- [#630](https://github.com/callstack/repack/pull/630) [`dc55cef`](https://github.com/callstack/repack/commit/dc55cef0d07749b64aded2854ed998964a0b2341) Thanks [@jbroma](https://github.com/jbroma)! - Use the current Node when composing Hermes sourcemaps
14+
15+
- Updated dependencies []:
16+
- @callstack/repack-dev-server@4.1.0
17+
318
## 4.0.0
419

520
### Major Changes
@@ -121,10 +136,10 @@
121136

122137
```js
123138
// react-native.config.js
124-
const commands = require("@callstack/repack/commands");
139+
const commands = require('@callstack/repack/commands');
125140

126141
module.exports = {
127-
commands: commands.filter((command) => command.name.startsWith("webpack")),
142+
commands: commands.filter((command) => command.name.startsWith('webpack')),
128143
};
129144
```
130145

@@ -378,7 +393,7 @@ This Release candidate introduces a new feature – **Code Signing**. It allows
378393
- All Repack plugins are consolidated under single `RepackPlugin`, all sub-plugins are available under `plugins`:
379394

380395
```ts
381-
import * as Repack from "@callstack/repack";
396+
import * as Repack from '@callstack/repack';
382397

383398
new Repack.plugins.AssetResolverPlugin();
384399
```
@@ -450,24 +465,24 @@ This Release candidate introduces a new feature – **Code Signing**. It allows
450465
For example, instead of using `webpack.container.ModuleFederationPlugin`, you can now use:
451466

452467
```js
453-
import * as Repack from "@callstack/repack";
468+
import * as Repack from '@callstack/repack';
454469
455470
new Repack.plugins.ModuleFederationPlugin({
456-
name: "host",
471+
name: 'host',
457472
});
458473
459474
new Repack.plugins.ModuleFederationPlugin({
460-
name: "app1",
475+
name: 'app1',
461476
remotes: {
462-
module1: "module1@https://example.com/module1.container.bundle",
477+
module1: 'module1@https://example.com/module1.container.bundle',
463478
},
464479
});
465480
466481
new Repack.plugins.ModuleFederationPlugin({
467-
name: "app2",
482+
name: 'app2',
468483
remotes: {
469-
module1: "module1@https://example.com/module1.container.bundle",
470-
module2: "module1@dynamic",
484+
module1: 'module1@https://example.com/module1.container.bundle',
485+
module2: 'module1@dynamic',
471486
},
472487
});
473488
```
@@ -484,13 +499,13 @@ This Release candidate introduces a new feature – **Code Signing**. It allows
484499
To specify custom priority use 2nd options argument:
485500

486501
```js
487-
import { ScriptManager } from "@callstack/repack/client";
502+
import { ScriptManager } from '@callstack/repack/client';
488503
489504
ScriptManager.shared.addResolver(
490505
async (scriptId, caller) => {
491506
// ...
492507
},
493-
{ priority: 1 },
508+
{ priority: 1 }
494509
); // Default priority is `2`.
495510
```
496511

@@ -544,24 +559,24 @@ This Release candidate introduces a new feature – **Code Signing**. It allows
544559
For example, instead of using `webpack.container.ModuleFederationPlugin`, you can now use:
545560

546561
```js
547-
import * as Repack from "@callstack/repack";
562+
import * as Repack from '@callstack/repack';
548563
549564
new Repack.plugins.ModuleFederationPlugin({
550-
name: "host",
565+
name: 'host',
551566
});
552567
553568
new Repack.plugins.ModuleFederationPlugin({
554-
name: "app1",
569+
name: 'app1',
555570
remotes: {
556-
module1: "module1@https://example.com/module1.container.bundle",
571+
module1: 'module1@https://example.com/module1.container.bundle',
557572
},
558573
});
559574
560575
new Repack.plugins.ModuleFederationPlugin({
561-
name: "app2",
576+
name: 'app2',
562577
remotes: {
563-
module1: "module1@https://example.com/module1.container.bundle",
564-
module2: "module1@dynamic",
578+
module1: 'module1@https://example.com/module1.container.bundle',
579+
module2: 'module1@dynamic',
565580
},
566581
});
567582
```
@@ -578,13 +593,13 @@ This Release candidate introduces a new feature – **Code Signing**. It allows
578593
To specify custom priority use 2nd options argument:
579594

580595
```js
581-
import { ScriptManager } from "@callstack/repack/client";
596+
import { ScriptManager } from '@callstack/repack/client';
582597
583598
ScriptManager.shared.addResolver(
584599
async (scriptId, caller) => {
585600
// ...
586601
},
587-
{ priority: 1 },
602+
{ priority: 1 }
588603
); // Default priority is `2`.
589604
```
590605

@@ -707,7 +722,7 @@ This Release candidate introduces a new feature – **Code Signing**. It allows
707722
- All Repack plugins are consolidated under single `RepackPlugin`, all sub-plugins are available under `plugins`:
708723

709724
```ts
710-
import * as Repack from "@callstack/repack";
725+
import * as Repack from '@callstack/repack';
711726
712727
new Repack.plugins.AssetResolverPlugin();
713728
```

packages/repack/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@callstack/repack",
3-
"version": "4.0.0",
3+
"version": "4.1.0",
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",

0 commit comments

Comments
 (0)