@equinor/fusion-framework-react-components-bookmark 1.2.0-next.0 → 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 +40 -33
- package/dist/esm/version.js +1 -1
- package/dist/esm/version.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/types/version.d.ts +1 -1
- package/package.json +16 -16
- package/src/version.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,44 +1,31 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
-
##
|
|
3
|
+
## 2.0.0
|
|
4
4
|
|
|
5
|
-
###
|
|
6
|
-
|
|
7
|
-
- [#3820](https://github.com/equinor/fusion-framework/pull/3820) [`fa89ed8`](https://github.com/equinor/fusion-framework/commit/fa89ed8aeed919950ef6a6775e60eb6904ec7946) Thanks [@odinr](https://github.com/odinr)! - Update EDS (Equinor Design System) packages to latest versions: `@equinor/eds-core-react` to ^2.2.0, `@equinor/eds-icons` to ^1.1.0, `@equinor/eds-tokens` to ^2.1.1, and `@equinor/eds-utils` to ^2.0.0.
|
|
8
|
-
|
|
9
|
-
These are major version updates from the 0.x series. Consumers should verify compatibility with their applications, particularly if using `@equinor/fusion-react-side-sheet` which may require updates to support the new EDS versions.
|
|
10
|
-
|
|
11
|
-
### Patch Changes
|
|
12
|
-
|
|
13
|
-
- [#3820](https://github.com/equinor/fusion-framework/pull/3820) [`f647825`](https://github.com/equinor/fusion-framework/commit/f647825cb5712763b09dafda21fd996211c78b78) Thanks [@odinr](https://github.com/odinr)! - relase next
|
|
14
|
-
|
|
15
|
-
- Updated dependencies [[`f647825`](https://github.com/equinor/fusion-framework/commit/f647825cb5712763b09dafda21fd996211c78b78)]:
|
|
16
|
-
- @equinor/fusion-framework-react-module-bookmark@5.0.3-next.0
|
|
17
|
-
- @equinor/fusion-observable@8.5.9-next.0
|
|
18
|
-
- @equinor/fusion-framework-react@7.4.21-next.0
|
|
19
|
-
|
|
20
|
-
## 1.1.3
|
|
5
|
+
### Major Changes
|
|
21
6
|
|
|
22
|
-
|
|
7
|
+
- abffa53: Major version bump for Fusion Framework React 19 release.
|
|
23
8
|
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
- Updated dependencies [[`6aa8e1f`](https://github.com/equinor/fusion-framework/commit/6aa8e1f5c9d852b25e97aa7d98a63008c64d4581)]:
|
|
27
|
-
- @equinor/fusion-framework-react@7.4.20
|
|
28
|
-
- @equinor/fusion-framework-react-module-bookmark@5.0.2
|
|
29
|
-
- @equinor/fusion-observable@8.5.8
|
|
9
|
+
All packages are bumped to the next major version as part of the React 19 upgrade. This release drops support for React versions below 18 and includes breaking changes across the framework.
|
|
30
10
|
|
|
31
|
-
|
|
11
|
+
**Breaking changes:**
|
|
12
|
+
- Peer dependencies now require React 18 or 19 (`^18.0.0 || ^19.0.0`)
|
|
13
|
+
- React Router upgraded from v6 to v7
|
|
14
|
+
- Navigation module refactored with new history API
|
|
15
|
+
- `renderComponent` and `renderApp` now use `createRoot` API
|
|
32
16
|
|
|
33
|
-
|
|
17
|
+
**Migration:**
|
|
18
|
+
- Update your React version to 18.0.0 or higher before upgrading
|
|
19
|
+
- Replace `NavigationProvider.createRouter()` with `@equinor/fusion-framework-react-router`
|
|
20
|
+
- See individual package changelogs for package-specific migration steps
|
|
34
21
|
|
|
35
|
-
-
|
|
22
|
+
- abffa53: Require React 18+ as peer dependency. React 17 is no longer supported.
|
|
36
23
|
|
|
37
24
|
**Migration:** Update your application to React 18+ to continue using these packages.
|
|
38
25
|
|
|
39
26
|
Closes https://github.com/equinor/fusion-framework/issues/3504
|
|
40
27
|
|
|
41
|
-
-
|
|
28
|
+
- abffa53: Upgrade to React 19 and remove support for React versions lower than 18.
|
|
42
29
|
|
|
43
30
|
**Breaking changes:**
|
|
44
31
|
- Peer dependencies now require React 18 or 19 (`^18.0.0 || ^19.0.0`)
|
|
@@ -49,14 +36,34 @@
|
|
|
49
36
|
- Update your React version to 18.0.0 or higher before upgrading these packages
|
|
50
37
|
- If using React 16 or 17, upgrade to React 18 or 19 first
|
|
51
38
|
|
|
39
|
+
Closes https://github.com/equinor/fusion-framework/issues/3504
|
|
40
|
+
|
|
41
|
+
### Minor Changes
|
|
42
|
+
|
|
43
|
+
- abffa53: Update EDS (Equinor Design System) packages to latest versions: `@equinor/eds-core-react` to ^2.2.0, `@equinor/eds-icons` to ^1.1.0, `@equinor/eds-tokens` to ^2.1.1, and `@equinor/eds-utils` to ^2.0.0.
|
|
44
|
+
|
|
45
|
+
These are major version updates from the 0.x series. Consumers should verify compatibility with their applications, particularly if using `@equinor/fusion-react-side-sheet` which may require updates to support the new EDS versions.
|
|
46
|
+
|
|
52
47
|
### Patch Changes
|
|
53
48
|
|
|
54
|
-
-
|
|
49
|
+
- Updated dependencies [abffa53]
|
|
50
|
+
- Updated dependencies [abffa53]
|
|
51
|
+
- Updated dependencies [abffa53]
|
|
52
|
+
- Updated dependencies [abffa53]
|
|
53
|
+
- @equinor/fusion-framework-react@8.0.0
|
|
54
|
+
- @equinor/fusion-framework-react-module-bookmark@6.0.0
|
|
55
|
+
- @equinor/fusion-observable@9.0.0
|
|
55
56
|
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
57
|
+
## 1.1.3
|
|
58
|
+
|
|
59
|
+
### Patch Changes
|
|
60
|
+
|
|
61
|
+
- [#4157](https://github.com/equinor/fusion-framework/pull/4157) [`6aa8e1f`](https://github.com/equinor/fusion-framework/commit/6aa8e1f5c9d852b25e97aa7d98a63008c64d4581) Thanks [@Noggling](https://github.com/Noggling)! - Internal: patch release to align TypeScript types across packages for consistent type compatibility.
|
|
62
|
+
|
|
63
|
+
- Updated dependencies [[`6aa8e1f`](https://github.com/equinor/fusion-framework/commit/6aa8e1f5c9d852b25e97aa7d98a63008c64d4581)]:
|
|
64
|
+
- @equinor/fusion-framework-react@7.4.20
|
|
65
|
+
- @equinor/fusion-framework-react-module-bookmark@5.0.2
|
|
66
|
+
- @equinor/fusion-observable@8.5.8
|
|
60
67
|
|
|
61
68
|
## 1.1.2
|
|
62
69
|
|
package/dist/esm/version.js
CHANGED
package/dist/esm/version.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"version.js","sourceRoot":"","sources":["../../src/version.ts"],"names":[],"mappings":"AAAA,2BAA2B;AAC3B,MAAM,CAAC,MAAM,OAAO,GAAG,
|
|
1
|
+
{"version":3,"file":"version.js","sourceRoot":"","sources":["../../src/version.ts"],"names":[],"mappings":"AAAA,2BAA2B;AAC3B,MAAM,CAAC,MAAM,OAAO,GAAG,OAAO,CAAC"}
|