Skip to content

Commit ccfb8cc

Browse files
manzoorwanijkmatticbot
authored andcommitted
Update wordpress monorepo (#45027)
* Update wordpress monorepo * Remove unwarranted change * Remove framer-motion hack Officially bumped here: WordPress/gutenberg#71442 * Update pnpm-lock.yaml * Add changelogs * Use moreHorizontal instead of moreHorizontalMobile WordPress/gutenberg#71172 * Fix some typecheck errors * Remove ESLint comment * Fix TypeScript parse option errors in useSimpleQuery and useSimpleMutation * Use a better fix for parse option * Fix Instagram Gallery tests: mock @wordpress/api-fetch instead of window.fetch * Fix extension block tests: mock @wordpress/api-fetch instead of window.fetch --------- Co-authored-by: Renovate Bot <[email protected]> Co-authored-by: tbradsha <[email protected]> Co-authored-by: Grzegorz Chudzinski-Pawlowski <[email protected]> Co-authored-by: Manzoor Wani <[email protected]> Committed via a GitHub action: https://github.com/Automattic/jetpack/actions/runs/17484937851 Upstream-Ref: Automattic/jetpack@28199bf
1 parent b343af2 commit ccfb8cc

File tree

4 files changed

+26
-18
lines changed

4 files changed

+26
-18
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.5.1-alpha] - unreleased
9+
10+
This is an alpha version! The changes listed here are not final.
11+
12+
### Changed
13+
- Update package dependencies.
14+
815
## [0.5.0] - 2025-09-01
916
### Added
1017
- Media Settings: Add Google Photos connection. [#44825]
@@ -174,6 +181,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
174181
- Fix the button size in the editor for Gutenberg 18 or below. [#41619]
175182
- Media Library: Fix the Import Media button color in some color schemes. [#41664]
176183

184+
[0.5.1-alpha]: https://github.com/Automattic/jetpack-external-media/compare/v0.5.0...v0.5.1-alpha
177185
[0.5.0]: https://github.com/Automattic/jetpack-external-media/compare/v0.4.11...v0.5.0
178186
[0.4.11]: https://github.com/Automattic/jetpack-external-media/compare/v0.4.10...v0.4.11
179187
[0.4.10]: https://github.com/Automattic/jetpack-external-media/compare/v0.4.9...v0.4.10

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"license": "GPL-2.0-or-later",
66
"require": {
77
"php": ">=7.2",
8-
"automattic/jetpack-assets": "^4.3.5",
8+
"automattic/jetpack-assets": "^4.3.6-alpha",
99
"automattic/jetpack-connection": "^6.18.6-alpha",
1010
"automattic/jetpack-constants": "^3.0.8",
1111
"automattic/jetpack-external-connections": "^0.1.1-alpha",

package.json

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@automattic/jetpack-external-media",
3-
"version": "0.5.0",
3+
"version": "0.5.1-alpha",
44
"private": true,
55
"description": "The external media feature allows users to select and import photos from external media",
66
"homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/packages/external-media/#readme",
@@ -23,25 +23,25 @@
2323
"watch": "pnpm run build-production-js && pnpm webpack watch"
2424
},
2525
"dependencies": {
26-
"@automattic/jetpack-ai-client": "^0.33.10",
26+
"@automattic/jetpack-ai-client": "^0.33.11-alpha",
2727
"@automattic/jetpack-analytics": "^1.0.4",
28-
"@automattic/jetpack-base-styles": "^1.0.8",
28+
"@automattic/jetpack-base-styles": "^1.0.9-alpha",
2929
"@automattic/jetpack-components": "^1.3.2-alpha",
3030
"@automattic/jetpack-script-data": "^0.5.2",
31-
"@automattic/jetpack-shared-extension-utils": "^1.3.14",
31+
"@automattic/jetpack-shared-extension-utils": "^1.3.15-alpha",
3232
"@automattic/request-external-access": "1.0.1",
33-
"@wordpress/api-fetch": "7.28.0",
34-
"@wordpress/block-editor": "15.1.0",
35-
"@wordpress/components": "30.1.0",
36-
"@wordpress/compose": "7.28.0",
37-
"@wordpress/data": "10.28.0",
38-
"@wordpress/date": "5.28.0",
39-
"@wordpress/element": "6.28.0",
40-
"@wordpress/hooks": "4.28.0",
41-
"@wordpress/i18n": "6.1.0",
42-
"@wordpress/icons": "10.28.0",
43-
"@wordpress/keycodes": "4.28.0",
44-
"@wordpress/url": "4.28.0",
33+
"@wordpress/api-fetch": "7.30.0",
34+
"@wordpress/block-editor": "15.3.0",
35+
"@wordpress/components": "30.3.0",
36+
"@wordpress/compose": "7.30.0",
37+
"@wordpress/data": "10.30.0",
38+
"@wordpress/date": "5.30.0",
39+
"@wordpress/element": "6.30.0",
40+
"@wordpress/hooks": "4.30.0",
41+
"@wordpress/i18n": "6.3.0",
42+
"@wordpress/icons": "10.30.0",
43+
"@wordpress/keycodes": "4.30.0",
44+
"@wordpress/url": "4.30.0",
4545
"clsx": "2.1.1",
4646
"lodash": "4.17.21",
4747
"moment": "2.30.1",

src/class-external-media.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
* Class External_Media
1919
*/
2020
class External_Media {
21-
const PACKAGE_VERSION = '0.5.0';
21+
const PACKAGE_VERSION = '0.5.1-alpha';
2222
const BASE_DIR = __DIR__ . '/';
2323
const BASE_FILE = __FILE__;
2424

0 commit comments

Comments
 (0)