@vercel/microfrontends 2.0.0-canary.2 → 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +11 -15
- package/dist/bin/cli.cjs +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,28 +1,24 @@
|
|
|
1
1
|
# @vercel/microfrontends
|
|
2
2
|
|
|
3
|
-
## 2.0.0
|
|
3
|
+
## 2.0.0
|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
- Use user-provided appName when inferring the location of microfrontends.json.
|
|
8
|
-
|
|
9
|
-
## 2.0.0-canary.1
|
|
10
|
-
|
|
11
|
-
### Patch Changes
|
|
12
|
-
|
|
13
|
-
- Support old and new asset prefixes in local development proxy.
|
|
14
|
-
|
|
15
|
-
## 2.0.0-canary.0
|
|
16
|
-
|
|
17
|
-
> **Check out our [Public Beta](https://vercel.com/changelog/microfrontends-are-now-in-public-beta) changelog to learn more about this release.**
|
|
5
|
+
> **Check out our [Public Beta](https://vercel.com/changelog/microfrontends-support-is-now-in-public-beta) changelog to learn more about this release.**
|
|
18
6
|
|
|
19
7
|
### Major Changes
|
|
20
8
|
|
|
21
9
|
- This release removes the project name and flag names from being visible to client side code.
|
|
22
10
|
- Modify the auto-generated asset prefix to use a hash of the project name instead of the project name itself.
|
|
23
|
-
- Allow users to specify a custom asset prefix in
|
|
11
|
+
- Allow users to specify a custom asset prefix in `microfrontends.json`.
|
|
24
12
|
- Remove project names and flag names from the Microfrontends client configuration.
|
|
25
13
|
|
|
14
|
+
### Minor Changes
|
|
15
|
+
|
|
16
|
+
- Use user-provided appName when inferring the location of microfrontends.json.
|
|
17
|
+
|
|
18
|
+
### Patch Changes
|
|
19
|
+
|
|
20
|
+
- Improve error messages when the name in `package.json` does not match the Vercel project name.
|
|
21
|
+
|
|
26
22
|
## 1.5.0
|
|
27
23
|
|
|
28
24
|
### Minor Changes
|
package/dist/bin/cli.cjs
CHANGED
|
@@ -30,7 +30,7 @@ var import_env = require("@next/env");
|
|
|
30
30
|
// package.json
|
|
31
31
|
var package_default = {
|
|
32
32
|
name: "@vercel/microfrontends",
|
|
33
|
-
version: "2.0.0
|
|
33
|
+
version: "2.0.0",
|
|
34
34
|
private: false,
|
|
35
35
|
description: "Defines configuration and utilities for microfrontends development",
|
|
36
36
|
keywords: [
|