Skip to content

Commit

Permalink
Content Options: Adding back an erroneously removed value from a get_…
Browse files Browse the repository at this point in the history
…post_metadata filter (#39200)

Committed via a GitHub action: https://github.com/Automattic/jetpack/actions/runs/10682069499

Upstream-Ref: Automattic/jetpack@7e2afc9
  • Loading branch information
coder-karen authored and matticbot committed Sep 3, 2024
1 parent ce12bf2 commit f547e12
Show file tree
Hide file tree
Showing 7 changed files with 98 additions and 90 deletions.
60 changes: 30 additions & 30 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions vendor/automattic/jetpack-classic-theme-helper/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.5.5-alpha] - unreleased

This is an alpha version! The changes listed here are not final.

### Fixed
- Content Options: Add back value to filter in package version of Content Options file.

## [0.5.4] - 2024-08-30
### Security
- Social Menu: Switch to more appropriate method of calling the SVG icon file. [#39136]
Expand Down Expand Up @@ -97,6 +104,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed
- Add wordpress folder on gitignore. [#37177]

[0.5.5-alpha]: https://github.com/Automattic/jetpack-classic-theme-helper/compare/v0.5.4...v0.5.5-alpha
[0.5.4]: https://github.com/Automattic/jetpack-classic-theme-helper/compare/v0.5.3...v0.5.4
[0.5.3]: https://github.com/Automattic/jetpack-classic-theme-helper/compare/v0.5.2...v0.5.3
[0.5.2]: https://github.com/Automattic/jetpack-classic-theme-helper/compare/v0.5.1...v0.5.2
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
*/
class Main {

const PACKAGE_VERSION = '0.5.4';
const PACKAGE_VERSION = '0.5.5-alpha';

/**
* Modules to include.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ function jetpack_featured_images_remove_post_thumbnail( $metadata, $object_id, $
return $metadata;
}
}
add_filter( 'get_post_metadata', 'jetpack_featured_images_remove_post_thumbnail', 3 );
add_filter( 'get_post_metadata', 'jetpack_featured_images_remove_post_thumbnail', true, 3 ); // @phan-suppress-current-line PhanTypeMismatchArgument.

}

Expand Down
2 changes: 1 addition & 1 deletion vendor/automattic/jetpack-mu-wpcom/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"automattic/jetpack-assets": "^2.3.5",
"automattic/jetpack-blocks": "^2.0.5",
"automattic/jetpack-calypsoify": "^0.1.5",
"automattic/jetpack-classic-theme-helper": "^0.5.4",
"automattic/jetpack-classic-theme-helper": "^0.5.5-alpha",
"automattic/jetpack-connection": "^2.13.0-alpha",
"automattic/jetpack-masterbar": "^0.9.0-alpha",
"automattic/jetpack-redirect": "^2.0.3",
Expand Down
Loading

0 comments on commit f547e12

Please sign in to comment.