@automattic/jetpack-connection 0.30.0 → 0.30.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 +10 -0
- package/SECURITY.md +11 -2
- package/package.json +13 -13
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
|
+
## [0.30.2] - 2023-10-16
|
|
6
|
+
### Changed
|
|
7
|
+
- Updated package dependencies. [#33429, #33584]
|
|
8
|
+
|
|
9
|
+
## [0.30.1] - 2023-10-10
|
|
10
|
+
### Changed
|
|
11
|
+
- Updated package dependencies. [#33428]
|
|
12
|
+
|
|
5
13
|
## [0.30.0] - 2023-09-25
|
|
6
14
|
### Added
|
|
7
15
|
- Handle connection error codes and display proper error messages. Enabled for the "private network" error only at the moment. [#32898]
|
|
@@ -632,6 +640,8 @@
|
|
|
632
640
|
- `Main` and `ConnectUser` components added.
|
|
633
641
|
- `JetpackRestApiClient` API client added.
|
|
634
642
|
|
|
643
|
+
[0.30.2]: https://github.com/Automattic/jetpack-connection-js/compare/v0.30.1...v0.30.2
|
|
644
|
+
[0.30.1]: https://github.com/Automattic/jetpack-connection-js/compare/v0.30.0...v0.30.1
|
|
635
645
|
[0.30.0]: https://github.com/Automattic/jetpack-connection-js/compare/v0.29.10...v0.30.0
|
|
636
646
|
[0.29.10]: https://github.com/Automattic/jetpack-connection-js/compare/v0.29.9...v0.29.10
|
|
637
647
|
[0.29.9]: https://github.com/Automattic/jetpack-connection-js/compare/v0.29.8...v0.29.9
|
package/SECURITY.md
CHANGED
|
@@ -4,11 +4,20 @@ Full details of the Automattic Security Policy can be found on [automattic.com](
|
|
|
4
4
|
|
|
5
5
|
## Supported Versions
|
|
6
6
|
|
|
7
|
-
Generally, only the latest version of Jetpack
|
|
7
|
+
Generally, only the latest version of Jetpack and its associated plugins have continued support. If a critical vulnerability is found in the current version of a plugin, we may opt to backport any patches to previous versions.
|
|
8
8
|
|
|
9
9
|
## Reporting a Vulnerability
|
|
10
10
|
|
|
11
|
-
|
|
11
|
+
Our HackerOne program covers the below plugin software, as well as a variety of related projects and infrastructure:
|
|
12
|
+
|
|
13
|
+
* [Jetpack](https://jetpack.com/)
|
|
14
|
+
* Jetpack Backup
|
|
15
|
+
* Jetpack Boost
|
|
16
|
+
* Jetpack CRM
|
|
17
|
+
* Jetpack Protect
|
|
18
|
+
* Jetpack Search
|
|
19
|
+
* Jetpack Social
|
|
20
|
+
* Jetpack VideoPress
|
|
12
21
|
|
|
13
22
|
**For responsible disclosure of security issues and to be eligible for our bug bounty program, please submit your report via the [HackerOne](https://hackerone.com/automattic) portal.**
|
|
14
23
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@automattic/jetpack-connection",
|
|
3
|
-
"version": "0.30.
|
|
3
|
+
"version": "0.30.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,25 +15,25 @@
|
|
|
15
15
|
"license": "GPL-2.0-or-later",
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"@automattic/jetpack-analytics": "^0.1.27",
|
|
18
|
-
"@automattic/jetpack-api": "^0.16.
|
|
19
|
-
"@automattic/jetpack-components": "^0.
|
|
18
|
+
"@automattic/jetpack-api": "^0.16.3",
|
|
19
|
+
"@automattic/jetpack-components": "^0.43.3",
|
|
20
20
|
"@automattic/jetpack-config": "^0.1.21",
|
|
21
|
-
"@wordpress/base-styles": "4.
|
|
22
|
-
"@wordpress/browserslist-config": "5.
|
|
23
|
-
"@wordpress/components": "25.
|
|
24
|
-
"@wordpress/data": "9.
|
|
25
|
-
"@wordpress/element": "5.
|
|
26
|
-
"@wordpress/i18n": "4.
|
|
27
|
-
"@wordpress/icons": "9.
|
|
21
|
+
"@wordpress/base-styles": "4.34.0",
|
|
22
|
+
"@wordpress/browserslist-config": "5.26.0",
|
|
23
|
+
"@wordpress/components": "25.9.0",
|
|
24
|
+
"@wordpress/data": "9.13.0",
|
|
25
|
+
"@wordpress/element": "5.20.0",
|
|
26
|
+
"@wordpress/i18n": "4.43.0",
|
|
27
|
+
"@wordpress/icons": "9.34.0",
|
|
28
28
|
"classnames": "2.3.2",
|
|
29
29
|
"debug": "4.3.4",
|
|
30
30
|
"prop-types": "^15.7.2"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
|
-
"@automattic/jetpack-base-styles": "^0.6.
|
|
34
|
-
"@babel/core": "7.
|
|
33
|
+
"@automattic/jetpack-base-styles": "^0.6.10",
|
|
34
|
+
"@babel/core": "7.23.0",
|
|
35
35
|
"@babel/preset-react": "7.22.15",
|
|
36
|
-
"@storybook/addon-actions": "7.
|
|
36
|
+
"@storybook/addon-actions": "7.4.6",
|
|
37
37
|
"@testing-library/dom": "8.19.1",
|
|
38
38
|
"@testing-library/react": "13.4.0",
|
|
39
39
|
"@testing-library/user-event": "14.4.3",
|