@automattic/jetpack-connection 0.35.11 → 0.35.13

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,14 @@
2
2
 
3
3
  ### This is a list detailing changes for the Jetpack RNA Connection Component releases.
4
4
 
5
+ ## [0.35.13] - 2024-10-14
6
+ ### Changed
7
+ - Internal updates.
8
+
9
+ ## [0.35.12] - 2024-10-10
10
+ ### Changed
11
+ - Updated package dependencies.
12
+
5
13
  ## [0.35.11] - 2024-10-07
6
14
  ### Changed
7
15
  - Updated package dependencies. [#39594]
@@ -863,6 +871,8 @@
863
871
  - `Main` and `ConnectUser` components added.
864
872
  - `JetpackRestApiClient` API client added.
865
873
 
874
+ [0.35.13]: https://github.com/Automattic/jetpack-connection-js/compare/v0.35.12...v0.35.13
875
+ [0.35.12]: https://github.com/Automattic/jetpack-connection-js/compare/v0.35.11...v0.35.12
866
876
  [0.35.11]: https://github.com/Automattic/jetpack-connection-js/compare/v0.35.10...v0.35.11
867
877
  [0.35.10]: https://github.com/Automattic/jetpack-connection-js/compare/v0.35.9...v0.35.10
868
878
  [0.35.9]: https://github.com/Automattic/jetpack-connection-js/compare/v0.35.8...v0.35.9
@@ -108,6 +108,7 @@ const DisconnectSurvey = props => {
108
108
  return options.map( option => {
109
109
  return (
110
110
  <SurveyChoice
111
+ key={ option.id }
111
112
  id={ option.id }
112
113
  onClick={ setSelectedAnswer }
113
114
  onKeyDown={ handleAnswerKeyDown }
@@ -52,7 +52,7 @@ export default function useProductCheckoutWorkflow( {
52
52
  const [ hasCheckoutStarted, setCheckoutStarted ] = useState( false );
53
53
  const { registerSite } = useDispatch( STORE_ID );
54
54
 
55
- const blogID = useSelect( select => select( STORE_ID ).getBlogId(), [ STORE_ID ] );
55
+ const blogID = useSelect( select => select( STORE_ID ).getBlogId(), [] );
56
56
  debug( 'blogID is %s', blogID ?? 'undefined' );
57
57
 
58
58
  useBlogIdSuffix = useBlogIdSuffix && !! blogID;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@automattic/jetpack-connection",
3
- "version": "0.35.11",
3
+ "version": "0.35.13",
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,26 +15,26 @@
15
15
  "license": "GPL-2.0-or-later",
16
16
  "dependencies": {
17
17
  "@automattic/jetpack-analytics": "^0.1.31",
18
- "@automattic/jetpack-api": "^0.17.14",
19
- "@automattic/jetpack-components": "^0.56.2",
18
+ "@automattic/jetpack-api": "^0.17.15",
19
+ "@automattic/jetpack-components": "^0.57.0",
20
20
  "@automattic/jetpack-config": "^0.1.25",
21
21
  "@automattic/jetpack-script-data": "^0.1.2",
22
- "@wordpress/base-styles": "5.8.1",
23
- "@wordpress/browserslist-config": "6.8.1",
24
- "@wordpress/components": "28.8.4",
25
- "@wordpress/data": "10.8.3",
26
- "@wordpress/element": "6.8.1",
27
- "@wordpress/i18n": "5.8.2",
28
- "@wordpress/icons": "10.8.2",
22
+ "@wordpress/base-styles": "5.9.0",
23
+ "@wordpress/browserslist-config": "6.9.0",
24
+ "@wordpress/components": "28.9.0",
25
+ "@wordpress/data": "10.9.0",
26
+ "@wordpress/element": "6.9.0",
27
+ "@wordpress/i18n": "5.9.0",
28
+ "@wordpress/icons": "10.9.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.33",
34
+ "@automattic/jetpack-base-styles": "^0.6.34",
35
35
  "@babel/core": "7.24.7",
36
36
  "@babel/preset-react": "7.24.7",
37
- "@storybook/addon-actions": "8.2.9",
37
+ "@storybook/addon-actions": "8.3.5",
38
38
  "@testing-library/dom": "10.4.0",
39
39
  "@testing-library/react": "16.0.1",
40
40
  "@testing-library/user-event": "14.5.2",
@@ -43,7 +43,7 @@
43
43
  "jest-environment-jsdom": "29.7.0",
44
44
  "react": "18.3.1",
45
45
  "react-dom": "18.3.1",
46
- "storybook": "8.2.9"
46
+ "storybook": "8.3.5"
47
47
  },
48
48
  "peerDependencies": {
49
49
  "react": "^18.0.0",