@automattic/jetpack-components 0.55.10 → 0.55.11

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,10 @@
2
2
 
3
3
  ### This is a list detailing changes for the Jetpack RNA Components package releases.
4
4
 
5
+ ## [0.55.11] - 2024-08-29
6
+ ### Changed
7
+ - Updated package dependencies. [#39111]
8
+
5
9
  ## [0.55.10] - 2024-08-23
6
10
  ### Changed
7
11
  - Internal updates.
@@ -1137,6 +1141,7 @@
1137
1141
  ### Changed
1138
1142
  - Update node version requirement to 14.16.1
1139
1143
 
1144
+ [0.55.11]: https://github.com/Automattic/jetpack-components/compare/0.55.10...0.55.11
1140
1145
  [0.55.10]: https://github.com/Automattic/jetpack-components/compare/0.55.9...0.55.10
1141
1146
  [0.55.9]: https://github.com/Automattic/jetpack-components/compare/0.55.8...0.55.9
1142
1147
  [0.55.8]: https://github.com/Automattic/jetpack-components/compare/0.55.7...0.55.8
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@automattic/jetpack-components",
3
- "version": "0.55.10",
3
+ "version": "0.55.11",
4
4
  "description": "Jetpack Components Package",
5
5
  "author": "Automattic",
6
6
  "license": "GPL-2.0-or-later",
@@ -15,7 +15,7 @@
15
15
  },
16
16
  "dependencies": {
17
17
  "@automattic/format-currency": "1.0.1",
18
- "@automattic/jetpack-boost-score-api": "^0.1.36",
18
+ "@automattic/jetpack-boost-score-api": "^0.1.37",
19
19
  "@babel/runtime": "^7",
20
20
  "@wordpress/browserslist-config": "6.5.0",
21
21
  "@wordpress/components": "28.5.0",
@@ -60,7 +60,7 @@
60
60
  "storybook": "8.2.9",
61
61
  "ts-dedent": "2.2.0",
62
62
  "typescript": "5.0.4",
63
- "webpack": "5.76.0",
63
+ "webpack": "5.94.0",
64
64
  "webpack-cli": "4.9.1"
65
65
  },
66
66
  "peerDependencies": {
@@ -45,7 +45,7 @@ export default function getRedirectUrl( source: string, args: GetRedirectUrlArgs
45
45
  if (
46
46
  ! Object.keys( queryVars ).includes( 'site' ) &&
47
47
  typeof jetpack_redirects !== 'undefined' &&
48
- jetpack_redirects.hasOwnProperty( 'currentSiteRawUrl' )
48
+ Object.hasOwn( jetpack_redirects, 'currentSiteRawUrl' )
49
49
  ) {
50
50
  queryVars.site = jetpack_redirects.currentBlogID ?? jetpack_redirects.currentSiteRawUrl;
51
51
  }