@automattic/jetpack-connection 0.35.0 → 0.35.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/package.json +15 -14
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
|
+
## [0.35.2] - 2024-08-19
|
|
6
|
+
### Changed
|
|
7
|
+
- Updated package dependencies. [#38893]
|
|
8
|
+
|
|
9
|
+
### Fixed
|
|
10
|
+
- Lossless image optimization for images (should improve performance with no visible changes). [#38750]
|
|
11
|
+
|
|
12
|
+
## [0.35.1] - 2024-08-15
|
|
13
|
+
### Changed
|
|
14
|
+
- Updated package dependencies. [#38665]
|
|
15
|
+
|
|
5
16
|
## [0.35.0] - 2024-08-13
|
|
6
17
|
### Added
|
|
7
18
|
- Updated the connection initial state to fallback on the new consolidated Jetpack script data [#38825]
|
|
@@ -816,6 +827,8 @@
|
|
|
816
827
|
- `Main` and `ConnectUser` components added.
|
|
817
828
|
- `JetpackRestApiClient` API client added.
|
|
818
829
|
|
|
830
|
+
[0.35.2]: https://github.com/Automattic/jetpack-connection-js/compare/v0.35.1...v0.35.2
|
|
831
|
+
[0.35.1]: https://github.com/Automattic/jetpack-connection-js/compare/v0.35.0...v0.35.1
|
|
819
832
|
[0.35.0]: https://github.com/Automattic/jetpack-connection-js/compare/v0.34.2...v0.35.0
|
|
820
833
|
[0.34.2]: https://github.com/Automattic/jetpack-connection-js/compare/v0.34.1...v0.34.2
|
|
821
834
|
[0.34.1]: https://github.com/Automattic/jetpack-connection-js/compare/v0.34.0...v0.34.1
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@automattic/jetpack-connection",
|
|
3
|
-
"version": "0.35.
|
|
3
|
+
"version": "0.35.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": {
|
|
@@ -15,34 +15,35 @@
|
|
|
15
15
|
"license": "GPL-2.0-or-later",
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"@automattic/jetpack-analytics": "^0.1.29",
|
|
18
|
-
"@automattic/jetpack-api": "^0.17.
|
|
19
|
-
"@automattic/jetpack-components": "^0.55.
|
|
18
|
+
"@automattic/jetpack-api": "^0.17.10",
|
|
19
|
+
"@automattic/jetpack-components": "^0.55.8",
|
|
20
20
|
"@automattic/jetpack-config": "^0.1.24",
|
|
21
21
|
"@automattic/jetpack-script-data": "^0.1.1",
|
|
22
|
-
"@wordpress/base-styles": "5.
|
|
23
|
-
"@wordpress/browserslist-config": "6.
|
|
24
|
-
"@wordpress/components": "28.
|
|
25
|
-
"@wordpress/data": "10.
|
|
26
|
-
"@wordpress/element": "6.
|
|
27
|
-
"@wordpress/i18n": "5.
|
|
28
|
-
"@wordpress/icons": "10.
|
|
22
|
+
"@wordpress/base-styles": "5.5.0",
|
|
23
|
+
"@wordpress/browserslist-config": "6.5.0",
|
|
24
|
+
"@wordpress/components": "28.5.0",
|
|
25
|
+
"@wordpress/data": "10.5.0",
|
|
26
|
+
"@wordpress/element": "6.5.0",
|
|
27
|
+
"@wordpress/i18n": "5.5.0",
|
|
28
|
+
"@wordpress/icons": "10.5.0",
|
|
29
29
|
"clsx": "2.1.1",
|
|
30
30
|
"debug": "4.3.4",
|
|
31
31
|
"prop-types": "^15.7.2"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
|
-
"@automattic/jetpack-base-styles": "^0.6.
|
|
34
|
+
"@automattic/jetpack-base-styles": "^0.6.29",
|
|
35
35
|
"@babel/core": "7.24.7",
|
|
36
36
|
"@babel/preset-react": "7.24.7",
|
|
37
|
-
"@storybook/addon-actions": "8.
|
|
37
|
+
"@storybook/addon-actions": "8.2.9",
|
|
38
38
|
"@testing-library/dom": "10.1.0",
|
|
39
39
|
"@testing-library/react": "15.0.7",
|
|
40
40
|
"@testing-library/user-event": "14.5.2",
|
|
41
|
-
"@types/react": "18.3.
|
|
41
|
+
"@types/react": "18.3.3",
|
|
42
42
|
"jest": "29.7.0",
|
|
43
43
|
"jest-environment-jsdom": "29.7.0",
|
|
44
44
|
"react": "18.3.1",
|
|
45
|
-
"react-dom": "18.3.1"
|
|
45
|
+
"react-dom": "18.3.1",
|
|
46
|
+
"storybook": "8.2.9"
|
|
46
47
|
},
|
|
47
48
|
"peerDependencies": {
|
|
48
49
|
"react": "^18.0.0",
|