@automattic/jetpack-connection 1.4.7 → 1.4.9

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.
Files changed (3) hide show
  1. package/CHANGELOG.md +10 -0
  2. package/README.md +1 -1
  3. package/package.json +14 -14
package/CHANGELOG.md CHANGED
@@ -2,6 +2,14 @@
2
2
 
3
3
  ### This is a list detailing changes for the Jetpack RNA Connection Component releases.
4
4
 
5
+ ## [1.4.9] - 2025-09-15
6
+ ### Changed
7
+ - Internal updates.
8
+
9
+ ## [1.4.8] - 2025-09-08
10
+ ### Changed
11
+ - Update package dependencies. [#45027] [#45097]
12
+
5
13
  ## [1.4.7] - 2025-09-01
6
14
  ### Changed
7
15
  - Update dependencies.
@@ -1158,6 +1166,8 @@
1158
1166
  - `Main` and `ConnectUser` components added.
1159
1167
  - `JetpackRestApiClient` API client added.
1160
1168
 
1169
+ [1.4.9]: https://github.com/Automattic/jetpack-connection-js/compare/v1.4.8...v1.4.9
1170
+ [1.4.8]: https://github.com/Automattic/jetpack-connection-js/compare/v1.4.7...v1.4.8
1161
1171
  [1.4.7]: https://github.com/Automattic/jetpack-connection-js/compare/v1.4.6...v1.4.7
1162
1172
  [1.4.6]: https://github.com/Automattic/jetpack-connection-js/compare/v1.4.5...v1.4.6
1163
1173
  [1.4.5]: https://github.com/Automattic/jetpack-connection-js/compare/v1.4.4...v1.4.5
package/README.md CHANGED
@@ -176,7 +176,7 @@ If an error occurs while trying to disconnect, a custmomizable error message wil
176
176
  - *errorMessage* - string, error message to display when an error occurs while disconnecting. Defaults to: "Failed to disconnect. Please try again."
177
177
 
178
178
  ### Important Notes
179
- It's important to note that the `onDisconnected` callback will not immediately trigger upon receiving a successfull API response. This happens because we want to display a success message to the user first within the `DisconnectDialog`.
179
+ It's important to note that the `onDisconnected` callback will not immediately trigger upon receiving a successful API response. This happens because we want to display a success message to the user first within the `DisconnectDialog`.
180
180
  If a parent consumer for example, were to update their connection status using this event, the `DisconnectDialog` would be hidden before showing the success message to the user.
181
181
  Because we made this design decision, and to ensure a non-breaking UX, the `Modal` (see `wordpress/components/modal`) used by the `DisconnectDialog` will not close (as usual) using either ESC key or clicking outside of the Dialog.
182
182
  This way we ensure that `onDisconnected` will always be called via clicking the "Return to WordPress" button, after successfully disconnecting the site.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@automattic/jetpack-connection",
3
- "version": "1.4.7",
3
+ "version": "1.4.9",
4
4
  "description": "Jetpack Connection Component",
5
5
  "homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/js-packages/connection/#readme",
6
6
  "bugs": {
@@ -29,24 +29,24 @@
29
29
  },
30
30
  "dependencies": {
31
31
  "@automattic/jetpack-analytics": "^1.0.4",
32
- "@automattic/jetpack-api": "^1.0.8",
33
- "@automattic/jetpack-components": "^1.3.1",
32
+ "@automattic/jetpack-api": "^1.0.9",
33
+ "@automattic/jetpack-components": "^1.3.2",
34
34
  "@automattic/jetpack-config": "^1.0.4",
35
- "@automattic/jetpack-script-data": "^0.5.2",
36
- "@wordpress/base-styles": "6.4.0",
37
- "@wordpress/browserslist-config": "6.28.0",
38
- "@wordpress/components": "30.1.0",
39
- "@wordpress/data": "10.28.0",
40
- "@wordpress/element": "6.28.0",
41
- "@wordpress/i18n": "6.1.0",
42
- "@wordpress/icons": "10.28.0",
43
- "@wordpress/url": "4.28.0",
35
+ "@automattic/jetpack-script-data": "^0.5.3",
36
+ "@wordpress/base-styles": "6.6.0",
37
+ "@wordpress/browserslist-config": "6.30.0",
38
+ "@wordpress/components": "30.3.0",
39
+ "@wordpress/data": "10.30.0",
40
+ "@wordpress/element": "6.30.0",
41
+ "@wordpress/i18n": "6.3.0",
42
+ "@wordpress/icons": "10.30.0",
43
+ "@wordpress/url": "4.30.0",
44
44
  "clsx": "2.1.1",
45
45
  "debug": "4.4.1",
46
46
  "prop-types": "^15.7.2"
47
47
  },
48
48
  "devDependencies": {
49
- "@automattic/jetpack-base-styles": "^1.0.8",
49
+ "@automattic/jetpack-base-styles": "^1.0.9",
50
50
  "@babel/core": "7.28.0",
51
51
  "@babel/preset-react": "7.27.1",
52
52
  "@testing-library/dom": "10.4.0",
@@ -58,7 +58,7 @@
58
58
  "react": "18.3.1",
59
59
  "react-dom": "18.3.1",
60
60
  "storybook": "9.0.15",
61
- "typescript": "5.8.3"
61
+ "typescript": "5.9.2"
62
62
  },
63
63
  "peerDependencies": {
64
64
  "react": "^18.0.0",