@atlaskit/analytics-next 9.3.4 → 10.1.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 +21 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
# @atlaskit/analytics-next
|
|
2
2
|
|
|
3
|
+
## 10.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#127511](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/127511)
|
|
8
|
+
[`db30e29344013`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/db30e29344013) -
|
|
9
|
+
Widening range of `react` and `react-dom` peer dependencies from `^16.8.0 || ^17.0.0 || ~18.2.0`
|
|
10
|
+
to the wider range of ``^16.8.0 || ^17.0.0 || ^18.0.0` (where applicable).
|
|
11
|
+
|
|
12
|
+
This change has been done to enable usage of `react@18.3` as well as to have a consistent peer
|
|
13
|
+
dependency range for `react` and `react-dom` for `/platform` packages.
|
|
14
|
+
|
|
15
|
+
## 10.0.0
|
|
16
|
+
|
|
17
|
+
### Major Changes
|
|
18
|
+
|
|
19
|
+
- [#127454](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/127454)
|
|
20
|
+
[`7d3290f61ac09`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/7d3290f61ac09) -
|
|
21
|
+
AFO-2278: React-dom 18 resolving yarn build package errors. Introducing react-dom as a peer
|
|
22
|
+
dependency https://hello.atlassian.net/wiki/x/HtE48
|
|
23
|
+
|
|
3
24
|
## 9.3.4
|
|
4
25
|
|
|
5
26
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/analytics-next",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "10.1.0",
|
|
4
4
|
"description": "React components, HOCs and hooks to assist with tracking user activity with React components",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -57,7 +57,8 @@
|
|
|
57
57
|
"use-memo-one": "^1.1.1"
|
|
58
58
|
},
|
|
59
59
|
"peerDependencies": {
|
|
60
|
-
"react": "^16.8.0 || ^17.0.0 ||
|
|
60
|
+
"react": "^16.8.0 || ^17.0.0 || ^18.0.0",
|
|
61
|
+
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
|
|
61
62
|
},
|
|
62
63
|
"runReact18": true,
|
|
63
64
|
"devDependencies": {
|
|
@@ -65,7 +66,6 @@
|
|
|
65
66
|
"@atlassian/feature-flags-test-utils": "*",
|
|
66
67
|
"@testing-library/react": "^12.1.5",
|
|
67
68
|
"enzyme": "^3.10.0",
|
|
68
|
-
"react-dom-18": "npm:react-dom@^18.2.0",
|
|
69
69
|
"redux": "^3.7.2",
|
|
70
70
|
"storybook-addon-performance": "^0.16.0",
|
|
71
71
|
"typescript": "~5.4.2"
|