Skip to content

Commit

Permalink
Release v0.10.0 (#3568)
Browse files Browse the repository at this point in the history
  • Loading branch information
2heal1 authored Mar 4, 2025
1 parent 0e9b854 commit b0e7c8c
Show file tree
Hide file tree
Showing 66 changed files with 300 additions and 77 deletions.
3 changes: 2 additions & 1 deletion .changeset/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@
"@module-federation/data-prefetch",
"@module-federation/rsbuild-plugin",
"@module-federation/error-codes",
"@module-federation/inject-external-runtime-core-plugin"
"@module-federation/inject-external-runtime-core-plugin",
"@module-federation/runtime-core"
]
],
"ignorePatterns": ["^alpha|^beta"],
Expand Down
5 changes: 0 additions & 5 deletions .changeset/dry-keys-taste.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/fair-lies-move.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/many-rings-compete.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/poor-mails-shave.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/seven-geckos-carry.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/sharp-pans-cheer.md

This file was deleted.

12 changes: 0 additions & 12 deletions .changeset/tough-pets-learn.md

This file was deleted.

7 changes: 7 additions & 0 deletions apps/modernjs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @module-federation/modernjsapp

## 0.1.86

### Patch Changes

- 1010f96: chore(modern-js-plugin): use bundlerChain instead of tools.webpack or tools.rspack
- @module-federation/enhanced@0.10.0

## 0.1.85

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion apps/modernjs/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@module-federation/modernjsapp",
"private": true,
"version": "0.1.85",
"version": "0.1.86",
"scripts": {
"reset": "npx rimraf ./**/node_modules",
"dev": "modern dev",
Expand Down
6 changes: 6 additions & 0 deletions apps/website-new/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# website-new

## 1.0.28

### Patch Changes

- @module-federation/error-codes@0.10.0

## 1.0.27

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion apps/website-new/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "website-new",
"version": "1.0.27",
"version": "1.0.28",
"private": true,
"scripts": {
"dev": "rspress dev",
Expand Down
8 changes: 8 additions & 0 deletions packages/bridge/bridge-react-webpack-plugin/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @module-federation/bridge-react-webpack-plugin

## 0.10.0

### Patch Changes

- Updated dependencies [0f71cbc]
- Updated dependencies [22fcccd]
- @module-federation/sdk@0.10.0

## 0.9.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/bridge/bridge-react-webpack-plugin/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@module-federation/bridge-react-webpack-plugin",
"version": "0.9.1",
"version": "0.10.0",
"publishConfig": {
"access": "public"
},
Expand Down
13 changes: 13 additions & 0 deletions packages/bridge/bridge-react/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# @module-federation/bridge-react

## 0.10.0

### Minor Changes

- 578aa43: fix(bridge-react): prevent destroy/render the remote component every time after the states changed

### Patch Changes

- Updated dependencies [0f71cbc]
- Updated dependencies [22fcccd]
- @module-federation/sdk@0.10.0
- @module-federation/bridge-shared@0.10.0

## 0.9.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/bridge/bridge-react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@module-federation/bridge-react",
"version": "0.9.1",
"version": "0.10.0",
"publishConfig": {
"access": "public"
},
Expand Down
2 changes: 2 additions & 0 deletions packages/bridge/bridge-shared/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# @module-federation/bridge-shared

## 0.10.0

## 0.9.1

## 0.9.0
Expand Down
2 changes: 1 addition & 1 deletion packages/bridge/bridge-shared/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@module-federation/bridge-shared",
"version": "0.9.1",
"version": "0.10.0",
"publishConfig": {
"access": "public"
},
Expand Down
17 changes: 17 additions & 0 deletions packages/bridge/vue3-bridge/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# @module-federation/bridge-vue3

## 0.10.0

### Patch Changes

- 6bc13cf: Fixed several issues:

1. Resolved inconsistencies in naming between `name` and `moduleName` to align with the type defined in `packages/bridge/bridge-shared/src/type.ts`. This also fixed an issue where `name` was being passed to the remote component, and if it was `<router-view>`, it caused rendering issues.
2. Issue: When passing props from a Vue 3 host application to a Vue 3 remote application created with `createRemoteComponent`, the props were being applied as attributes on the root container instead of being passed to the remote component.
Fix: Set `inheritAttrs: false` in `remoteApp.tsx` and explicitly pass all attributes to the remote component using `useAttrs()`.
3. Added a `rootAttrs` parameter to `createRemoteComponent` to allow passing attributes to the root container where the remote application is mounted. This enables setting classes, identifiers, and other attributes for the container element.

- Updated dependencies [0f71cbc]
- Updated dependencies [22fcccd]
- @module-federation/sdk@0.10.0
- @module-federation/runtime@0.10.0
- @module-federation/bridge-shared@0.10.0

## 0.9.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/bridge/vue3-bridge/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"url": "https://github.com/module-federation/core",
"directory": "packages/vue3-bridge"
},
"version": "0.9.1",
"version": "0.10.0",
"publishConfig": {
"access": "public"
},
Expand Down
8 changes: 8 additions & 0 deletions packages/chrome-devtools/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @module-federation/devtools

## 0.10.0

### Patch Changes

- Updated dependencies [0f71cbc]
- Updated dependencies [22fcccd]
- @module-federation/sdk@0.10.0

## 0.9.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/chrome-devtools/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@module-federation/devtools",
"version": "0.9.1",
"version": "0.10.0",
"license": "MIT",
"repository": {
"type": "git",
Expand Down
9 changes: 9 additions & 0 deletions packages/data-prefetch/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @module-federation/data-prefetch

## 0.10.0

### Patch Changes

- Updated dependencies [0f71cbc]
- Updated dependencies [22fcccd]
- @module-federation/sdk@0.10.0
- @module-federation/runtime@0.10.0

## 0.9.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/data-prefetch/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@module-federation/data-prefetch",
"description": "Module Federation Data Prefetch",
"version": "0.9.1",
"version": "0.10.0",
"author": "nieyan <[email protected]>",
"homepage": "https://github.com/module-federation/core",
"license": "MIT",
Expand Down
12 changes: 12 additions & 0 deletions packages/dts-plugin/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# @module-federation/dts-plugin

## 0.10.0

### Patch Changes

- 22fcccd: perf(dts-plugin): add fetch timeout and add log
- Updated dependencies [0f71cbc]
- Updated dependencies [22fcccd]
- @module-federation/sdk@0.10.0
- @module-federation/managers@0.10.0
- @module-federation/third-party-dts-extractor@0.10.0
- @module-federation/error-codes@0.10.0

## 0.9.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/dts-plugin/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@module-federation/dts-plugin",
"version": "0.9.1",
"version": "0.10.0",
"author": "hanric <[email protected]>",
"main": "./dist/index.js",
"module": "./dist/index.js",
Expand Down
17 changes: 17 additions & 0 deletions packages/enhanced/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# @module-federation/enhanced

## 0.10.0

### Patch Changes

- Updated dependencies [0f71cbc]
- Updated dependencies [22fcccd]
- @module-federation/sdk@0.10.0
- @module-federation/dts-plugin@0.10.0
- @module-federation/bridge-react-webpack-plugin@0.10.0
- @module-federation/data-prefetch@0.10.0
- @module-federation/managers@0.10.0
- @module-federation/manifest@0.10.0
- @module-federation/rspack@0.10.0
- @module-federation/runtime-tools@0.10.0
- @module-federation/inject-external-runtime-core-plugin@0.10.0
- @module-federation/error-codes@0.10.0

## 0.9.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/enhanced/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@module-federation/enhanced",
"version": "0.9.1",
"version": "0.10.0",
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"repository": {
Expand Down
2 changes: 2 additions & 0 deletions packages/error-codes/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# @module-federation/error-codes

## 0.10.0

## 0.9.1

## 0.9.0
Expand Down
2 changes: 1 addition & 1 deletion packages/error-codes/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"author": "zhanghang <[email protected]>",
"public": true,
"sideEffects": false,
"version": "0.9.1",
"version": "0.10.0",
"license": "MIT",
"repository": {
"type": "git",
Expand Down
8 changes: 8 additions & 0 deletions packages/esbuild/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @module-federation/esbuild

## 0.0.58

### Patch Changes

- Updated dependencies [0f71cbc]
- Updated dependencies [22fcccd]
- @module-federation/sdk@0.10.0

## 0.0.57

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/esbuild/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@module-federation/esbuild",
"version": "0.0.57",
"version": "0.0.58",
"author": "Zack Jackson (@ScriptedAlchemy)",
"main": "./dist/index.cjs.js",
"module": "./dist/index.esm.js",
Expand Down
8 changes: 8 additions & 0 deletions packages/managers/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @module-federation/managers

## 0.10.0

### Patch Changes

- Updated dependencies [0f71cbc]
- Updated dependencies [22fcccd]
- @module-federation/sdk@0.10.0

## 0.9.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/managers/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@module-federation/managers",
"version": "0.9.1",
"version": "0.10.0",
"license": "MIT",
"description": "Provide managers for helping handle mf data .",
"keywords": [
Expand Down
10 changes: 10 additions & 0 deletions packages/manifest/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @module-federation/manifest

## 0.10.0

### Patch Changes

- Updated dependencies [0f71cbc]
- Updated dependencies [22fcccd]
- @module-federation/sdk@0.10.0
- @module-federation/dts-plugin@0.10.0
- @module-federation/managers@0.10.0

## 0.9.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/manifest/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@module-federation/manifest",
"version": "0.9.1",
"version": "0.10.0",
"license": "MIT",
"description": "Provide manifest/stats for webpack/rspack MF project .",
"keywords": [
Expand Down
Loading

0 comments on commit b0e7c8c

Please sign in to comment.