@automattic/jetpack-connection 1.4.33 → 1.4.35
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/connect-screen/basic/style.scss +1 -1
- package/package.json +10 -11
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.35] - 2026-02-18
|
|
6
|
+
### Changed
|
|
7
|
+
- Set `.repository.url` in `package.json` to the mirror repo rather than the monorepo. [#47149]
|
|
8
|
+
|
|
9
|
+
## [1.4.34] - 2026-02-16
|
|
10
|
+
### Changed
|
|
11
|
+
- Update package dependencies. [#47099]
|
|
12
|
+
|
|
13
|
+
### Fixed
|
|
14
|
+
- Compatibility: Clean up deprecated CSS. [#47067]
|
|
15
|
+
|
|
5
16
|
## [1.4.33] - 2026-02-10
|
|
6
17
|
### Changed
|
|
7
18
|
- Connection: Add separate use-connection export. [#46938]
|
|
@@ -1262,6 +1273,8 @@
|
|
|
1262
1273
|
- `Main` and `ConnectUser` components added.
|
|
1263
1274
|
- `JetpackRestApiClient` API client added.
|
|
1264
1275
|
|
|
1276
|
+
[1.4.35]: https://github.com/Automattic/jetpack-connection-js/compare/v1.4.34...v1.4.35
|
|
1277
|
+
[1.4.34]: https://github.com/Automattic/jetpack-connection-js/compare/v1.4.33...v1.4.34
|
|
1265
1278
|
[1.4.33]: https://github.com/Automattic/jetpack-connection-js/compare/v1.4.32...v1.4.33
|
|
1266
1279
|
[1.4.32]: https://github.com/Automattic/jetpack-connection-js/compare/v1.4.31...v1.4.32
|
|
1267
1280
|
[1.4.31]: https://github.com/Automattic/jetpack-connection-js/compare/v1.4.30...v1.4.31
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@automattic/jetpack-connection",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.35",
|
|
4
4
|
"description": "Jetpack Connection Component",
|
|
5
5
|
"homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/js-packages/connection/#readme",
|
|
6
6
|
"bugs": {
|
|
@@ -8,8 +8,7 @@
|
|
|
8
8
|
},
|
|
9
9
|
"repository": {
|
|
10
10
|
"type": "git",
|
|
11
|
-
"url": "https://github.com/Automattic/jetpack.git"
|
|
12
|
-
"directory": "projects/js-packages/connection"
|
|
11
|
+
"url": "git+https://github.com/Automattic/jetpack-connection-js.git"
|
|
13
12
|
},
|
|
14
13
|
"license": "GPL-2.0-or-later",
|
|
15
14
|
"author": "Automattic",
|
|
@@ -29,11 +28,11 @@
|
|
|
29
28
|
"typecheck": "tsc --noEmit"
|
|
30
29
|
},
|
|
31
30
|
"dependencies": {
|
|
32
|
-
"@automattic/jetpack-analytics": "^1.0.
|
|
33
|
-
"@automattic/jetpack-api": "^1.0.
|
|
34
|
-
"@automattic/jetpack-components": "^1.4.
|
|
35
|
-
"@automattic/jetpack-config": "^1.0.
|
|
36
|
-
"@automattic/jetpack-script-data": "^0.5.
|
|
31
|
+
"@automattic/jetpack-analytics": "^1.0.8",
|
|
32
|
+
"@automattic/jetpack-api": "^1.0.17",
|
|
33
|
+
"@automattic/jetpack-components": "^1.4.14",
|
|
34
|
+
"@automattic/jetpack-config": "^1.0.7",
|
|
35
|
+
"@automattic/jetpack-script-data": "^0.5.5",
|
|
37
36
|
"@wordpress/base-styles": "6.15.0",
|
|
38
37
|
"@wordpress/browserslist-config": "6.39.0",
|
|
39
38
|
"@wordpress/components": "32.1.0",
|
|
@@ -47,9 +46,9 @@
|
|
|
47
46
|
"prop-types": "^15.7.2"
|
|
48
47
|
},
|
|
49
48
|
"devDependencies": {
|
|
50
|
-
"@automattic/jetpack-base-styles": "^1.0.
|
|
51
|
-
"@babel/core": "7.
|
|
52
|
-
"@babel/preset-react": "7.
|
|
49
|
+
"@automattic/jetpack-base-styles": "^1.0.17",
|
|
50
|
+
"@babel/core": "7.29.0",
|
|
51
|
+
"@babel/preset-react": "7.28.5",
|
|
53
52
|
"@testing-library/dom": "10.4.1",
|
|
54
53
|
"@testing-library/react": "16.3.0",
|
|
55
54
|
"@testing-library/user-event": "14.6.1",
|