@atlaskit/right-side-panel 3.0.19 → 4.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 CHANGED
@@ -1,5 +1,20 @@
1
1
  # @atlaskit/right-side-panel
2
2
 
3
+ ## 4.0.0
4
+
5
+ ### Major Changes
6
+
7
+ - [`770f036c93884`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/770f036c93884) -
8
+ Removed `react-intl-next` alias and replaced all usages with `react-intl` directly.
9
+
10
+ What changed: The `react-intl-next` npm alias (which resolved to `react-intl@^5`) has been
11
+ removed. All imports now reference `react-intl` directly, and `peerDependencies` have been updated
12
+ to `"^5.25.1 || ^6.0.0 || ^7.0.0"`.
13
+
14
+ How consumer should update their code: Ensure `react-intl` is installed at a version satisfying
15
+ `^5.25.1 || ^6.0.0 || ^7.0.0`. If your application was using `react-intl-next` as an npm alias, it
16
+ can be safely removed. Replace any remaining `react-intl-next` imports with `react-intl`.
17
+
3
18
  ## 3.0.19
4
19
 
5
20
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/right-side-panel",
3
- "version": "3.0.19",
3
+ "version": "4.0.0",
4
4
  "description": "A cross-product right-side-panel component",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -40,7 +40,7 @@
40
40
  "peerDependencies": {
41
41
  "react": "^18.2.0 || ^19.0.0",
42
42
  "react-dom": "^18.2.0 || ^19.0.0",
43
- "react-intl-next": "npm:react-intl@^5.18.1"
43
+ "react-intl": "^5.25.1 || ^6.0.0 || ^7.0.0"
44
44
  },
45
45
  "devDependencies": {
46
46
  "@atlaskit/page": "^14.0.0",
@@ -48,6 +48,7 @@
48
48
  "@types/exenv": "^1.2.0",
49
49
  "@types/react-transition-group": "^2.0.6",
50
50
  "enzyme": "^3.10.0",
51
+ "react-intl": "^6.6.2",
51
52
  "react-test-renderer": "^18.2.0"
52
53
  },
53
54
  "keywords": [
package/report.api.md CHANGED
@@ -108,7 +108,7 @@ interface State {
108
108
  {
109
109
  "react": "^16.8.0",
110
110
  "react-dom": "^16.8.0",
111
- "react-intl-next": "npm:react-intl@^5.18.1"
111
+ "react-intl": "npm:react-intl@^5.18.1"
112
112
  }
113
113
  ```
114
114