Skip to content

Commit

Permalink
chore: changeset version
Browse files Browse the repository at this point in the history
  • Loading branch information
jbroma committed Jun 5, 2024
1 parent 38a9ff0 commit f93935e
Show file tree
Hide file tree
Showing 9 changed files with 44 additions and 40 deletions.
5 changes: 0 additions & 5 deletions .changeset/nine-beers-shop.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/pink-ants-type.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/silent-tigers-kiss.md

This file was deleted.

2 changes: 2 additions & 0 deletions packages/dev-server/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# @callstack/repack-dev-server

## 4.1.0

## 4.0.0

### Major 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": "4.0.0",
"version": "4.1.0",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
Expand Down
2 changes: 2 additions & 0 deletions packages/init/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# @callstack/repack-init

## 4.1.0

## 4.0.0

### Major Changes
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 <[email protected]>",
"license": "MIT",
"version": "4.0.0",
"version": "4.1.0",
"homepage": "https://github.com/callstack/repack",
"repository": "github:callstack/repack",
"keywords": [
Expand Down
59 changes: 37 additions & 22 deletions packages/repack/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# @callstack/repack

## 4.1.0

### Minor Changes

- [#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

### Patch Changes

- [#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

- [#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

- Updated dependencies []:
- @callstack/repack-dev-server@4.1.0

## 4.0.0

### Major Changes
Expand Down Expand Up @@ -121,10 +136,10 @@

```js
// react-native.config.js
const commands = require("@callstack/repack/commands");
const commands = require('@callstack/repack/commands');

module.exports = {
commands: commands.filter((command) => command.name.startsWith("webpack")),
commands: commands.filter((command) => command.name.startsWith('webpack')),
};
```

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

```ts
import * as Repack from "@callstack/repack";
import * as Repack from '@callstack/repack';

new Repack.plugins.AssetResolverPlugin();
```
Expand Down Expand Up @@ -450,24 +465,24 @@ This Release candidate introduces a new feature – **Code Signing**. It allows
For example, instead of using `webpack.container.ModuleFederationPlugin`, you can now use:
```js
import * as Repack from "@callstack/repack";
import * as Repack from '@callstack/repack';

new Repack.plugins.ModuleFederationPlugin({
name: "host",
name: 'host',
});

new Repack.plugins.ModuleFederationPlugin({
name: "app1",
name: 'app1',
remotes: {
module1: "module1@https://example.com/module1.container.bundle",
module1: 'module1@https://example.com/module1.container.bundle',
},
});

new Repack.plugins.ModuleFederationPlugin({
name: "app2",
name: 'app2',
remotes: {
module1: "module1@https://example.com/module1.container.bundle",
module2: "module1@dynamic",
module1: 'module1@https://example.com/module1.container.bundle',
module2: 'module1@dynamic',
},
});
```
Expand All @@ -484,13 +499,13 @@ This Release candidate introduces a new feature – **Code Signing**. It allows
To specify custom priority use 2nd options argument:

```js
import { ScriptManager } from "@callstack/repack/client";
import { ScriptManager } from '@callstack/repack/client';
ScriptManager.shared.addResolver(
async (scriptId, caller) => {
// ...
},
{ priority: 1 },
{ priority: 1 }
); // Default priority is `2`.
```

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

```js
import * as Repack from "@callstack/repack";
import * as Repack from '@callstack/repack';
new Repack.plugins.ModuleFederationPlugin({
name: "host",
name: 'host',
});
new Repack.plugins.ModuleFederationPlugin({
name: "app1",
name: 'app1',
remotes: {
module1: "module1@https://example.com/module1.container.bundle",
module1: 'module1@https://example.com/module1.container.bundle',
},
});
new Repack.plugins.ModuleFederationPlugin({
name: "app2",
name: 'app2',
remotes: {
module1: "module1@https://example.com/module1.container.bundle",
module2: "module1@dynamic",
module1: 'module1@https://example.com/module1.container.bundle',
module2: 'module1@dynamic',
},
});
```
Expand All @@ -578,13 +593,13 @@ This Release candidate introduces a new feature – **Code Signing**. It allows
To specify custom priority use 2nd options argument:
```js
import { ScriptManager } from "@callstack/repack/client";
import { ScriptManager } from '@callstack/repack/client';
ScriptManager.shared.addResolver(
async (scriptId, caller) => {
// ...
},
{ priority: 1 },
{ priority: 1 }
); // Default priority is `2`.
```
Expand Down Expand Up @@ -707,7 +722,7 @@ This Release candidate introduces a new feature – **Code Signing**. It allows
- All Repack plugins are consolidated under single `RepackPlugin`, all sub-plugins are available under `plugins`:

```ts
import * as Repack from "@callstack/repack";
import * as Repack from '@callstack/repack';
new Repack.plugins.AssetResolverPlugin();
```
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": "4.0.0",
"version": "4.1.0",
"description": "A Webpack-based toolkit to build your React Native application with full support of Webpack ecosystem.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down

0 comments on commit f93935e

Please sign in to comment.