@automattic/jetpack-connection 1.4.0 → 1.4.1
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
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
### This is a list detailing changes for the Jetpack RNA Connection Component releases.
|
|
4
4
|
|
|
5
|
+
## [1.4.1] - 2025-08-11
|
|
6
|
+
### Changed
|
|
7
|
+
- Update package dependencies. [#44677]
|
|
8
|
+
|
|
9
|
+
### Fixed
|
|
10
|
+
- I18n: Improve context hints in comments for translators. [#44686]
|
|
11
|
+
|
|
5
12
|
## [1.4.0] - 2025-08-04
|
|
6
13
|
### Added
|
|
7
14
|
- Add "from" argument to user connection url. [#44587]
|
|
@@ -1127,6 +1134,7 @@
|
|
|
1127
1134
|
- `Main` and `ConnectUser` components added.
|
|
1128
1135
|
- `JetpackRestApiClient` API client added.
|
|
1129
1136
|
|
|
1137
|
+
[1.4.1]: https://github.com/Automattic/jetpack-connection-js/compare/v1.4.0...v1.4.1
|
|
1130
1138
|
[1.4.0]: https://github.com/Automattic/jetpack-connection-js/compare/v1.3.2...v1.4.0
|
|
1131
1139
|
[1.3.2]: https://github.com/Automattic/jetpack-connection-js/compare/v1.3.1...v1.3.2
|
|
1132
1140
|
[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.1",
|
|
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.7",
|
|
32
|
+
"@automattic/jetpack-components": "^1.1.18",
|
|
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.3.0",
|
|
36
|
+
"@wordpress/browserslist-config": "6.27.0",
|
|
37
|
+
"@wordpress/components": "30.0.0",
|
|
38
|
+
"@wordpress/data": "10.27.0",
|
|
39
|
+
"@wordpress/element": "6.27.0",
|
|
40
|
+
"@wordpress/i18n": "6.0.0",
|
|
41
|
+
"@wordpress/icons": "10.27.0",
|
|
42
|
+
"@wordpress/url": "4.27.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.7",
|
|
49
49
|
"@babel/core": "7.28.0",
|
|
50
50
|
"@babel/preset-react": "7.27.1",
|
|
51
51
|
"@testing-library/dom": "10.4.0",
|