@automattic/jetpack-connection 1.4.0 → 1.4.2
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 +13 -0
- package/components/connection-error-notice/index.jsx +1 -1
- package/package.json +12 -12
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,17 @@
|
|
|
2
2
|
|
|
3
3
|
### This is a list detailing changes for the Jetpack RNA Connection Component releases.
|
|
4
4
|
|
|
5
|
+
## [1.4.2] - 2025-08-13
|
|
6
|
+
### Changed
|
|
7
|
+
- Update package dependencies. [#44701]
|
|
8
|
+
|
|
9
|
+
## [1.4.1] - 2025-08-11
|
|
10
|
+
### Changed
|
|
11
|
+
- Update package dependencies. [#44677]
|
|
12
|
+
|
|
13
|
+
### Fixed
|
|
14
|
+
- I18n: Improve context hints in comments for translators. [#44686]
|
|
15
|
+
|
|
5
16
|
## [1.4.0] - 2025-08-04
|
|
6
17
|
### Added
|
|
7
18
|
- Add "from" argument to user connection url. [#44587]
|
|
@@ -1127,6 +1138,8 @@
|
|
|
1127
1138
|
- `Main` and `ConnectUser` components added.
|
|
1128
1139
|
- `JetpackRestApiClient` API client added.
|
|
1129
1140
|
|
|
1141
|
+
[1.4.2]: https://github.com/Automattic/jetpack-connection-js/compare/v1.4.1...v1.4.2
|
|
1142
|
+
[1.4.1]: https://github.com/Automattic/jetpack-connection-js/compare/v1.4.0...v1.4.1
|
|
1130
1143
|
[1.4.0]: https://github.com/Automattic/jetpack-connection-js/compare/v1.3.2...v1.4.0
|
|
1131
1144
|
[1.3.2]: https://github.com/Automattic/jetpack-connection-js/compare/v1.3.1...v1.3.2
|
|
1132
1145
|
[1.3.1]: https://github.com/Automattic/jetpack-connection-js/compare/v1.3.0...v1.3.1
|
|
@@ -67,7 +67,7 @@ const ConnectionErrorNotice = props => {
|
|
|
67
67
|
<div className={ styles.message }>
|
|
68
68
|
{ icon }
|
|
69
69
|
{ sprintf(
|
|
70
|
-
/* translators:
|
|
70
|
+
/* translators: %s: the error. */
|
|
71
71
|
__( 'There was an error reconnecting Jetpack. Error: %s', 'jetpack-connection-js' ),
|
|
72
72
|
restoreConnectionError
|
|
73
73
|
) }
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@automattic/jetpack-connection",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.2",
|
|
4
4
|
"description": "Jetpack Connection Component",
|
|
5
5
|
"homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/js-packages/connection/#readme",
|
|
6
6
|
"bugs": {
|
|
@@ -28,24 +28,24 @@
|
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
30
|
"@automattic/jetpack-analytics": "^1.0.4",
|
|
31
|
-
"@automattic/jetpack-api": "^1.0.
|
|
32
|
-
"@automattic/jetpack-components": "^1.1.
|
|
31
|
+
"@automattic/jetpack-api": "^1.0.8",
|
|
32
|
+
"@automattic/jetpack-components": "^1.1.19",
|
|
33
33
|
"@automattic/jetpack-config": "^1.0.4",
|
|
34
34
|
"@automattic/jetpack-script-data": "^0.5.1",
|
|
35
|
-
"@wordpress/base-styles": "6.
|
|
36
|
-
"@wordpress/browserslist-config": "6.
|
|
37
|
-
"@wordpress/components": "
|
|
38
|
-
"@wordpress/data": "10.
|
|
39
|
-
"@wordpress/element": "6.
|
|
40
|
-
"@wordpress/i18n": "
|
|
41
|
-
"@wordpress/icons": "10.
|
|
42
|
-
"@wordpress/url": "4.
|
|
35
|
+
"@wordpress/base-styles": "6.4.0",
|
|
36
|
+
"@wordpress/browserslist-config": "6.28.0",
|
|
37
|
+
"@wordpress/components": "30.1.0",
|
|
38
|
+
"@wordpress/data": "10.28.0",
|
|
39
|
+
"@wordpress/element": "6.28.0",
|
|
40
|
+
"@wordpress/i18n": "6.1.0",
|
|
41
|
+
"@wordpress/icons": "10.28.0",
|
|
42
|
+
"@wordpress/url": "4.28.0",
|
|
43
43
|
"clsx": "2.1.1",
|
|
44
44
|
"debug": "4.4.1",
|
|
45
45
|
"prop-types": "^15.7.2"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
|
-
"@automattic/jetpack-base-styles": "^1.0.
|
|
48
|
+
"@automattic/jetpack-base-styles": "^1.0.8",
|
|
49
49
|
"@babel/core": "7.28.0",
|
|
50
50
|
"@babel/preset-react": "7.27.1",
|
|
51
51
|
"@testing-library/dom": "10.4.0",
|