Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release Oct 08 #1897

Merged
merged 30 commits into from
Oct 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
62ba143
feat: block caching
claudiulodro Jun 14, 2024
4b57041
add: block caching revisions
claudiulodro Aug 8, 2024
74f3b02
Merge branch 'trunk' into feat/caching
claudiulodro Aug 8, 2024
ec5083d
fix: we know how long the cache is
claudiulodro Aug 8, 2024
afccb19
build(deps-dev): bump lint-staged from 15.2.8 to 15.2.9
dependabot[bot] Aug 19, 2024
ab9b5ff
chore(release): merge in release v4.0.1
matticbot Aug 21, 2024
95e2dd5
add base Norwegian translation (#1844)
johanneswilm Aug 22, 2024
1ca6ee1
chore(release): merge in release v4.1.0
matticbot Aug 26, 2024
f1ba07b
build(deps): bump swiper from 11.1.9 to 11.1.10
dependabot[bot] Aug 26, 2024
39f1d9d
build(deps-dev): bump @wordpress/browserslist-config from 6.5.0 to 6.6.0
dependabot[bot] Aug 26, 2024
d4a8be6
tweak: use cache groups
claudiulodro Aug 28, 2024
b43203a
Merge pull request #1772 from Automattic/feat/caching
claudiulodro Aug 29, 2024
26f621c
Merge pull request #1863 from Automattic/trunk
leogermani Aug 29, 2024
1cb43d1
chore(release): 4.2.0-alpha.1 [skip ci]
semantic-release-bot Aug 29, 2024
e92d00b
build(deps): bump swiper from 11.1.10 to 11.1.12
dependabot[bot] Sep 2, 2024
963f0ef
build(deps-dev): bump lint-staged from 15.2.9 to 15.2.10
dependabot[bot] Sep 2, 2024
ad718db
build(deps-dev): bump @wordpress/browserslist-config from 6.6.0 to 6.7.0
dependabot[bot] Sep 9, 2024
5d1d49a
build(deps-dev): bump yoast/phpunit-polyfills from 2.0.1 to 3.0.0
dependabot[bot] Sep 9, 2024
a218f55
build(deps): bump swiper from 11.1.12 to 11.1.14
dependabot[bot] Sep 16, 2024
c4e35c7
chore(release): merge in release v4.1.1
matticbot Sep 16, 2024
6ad5f28
Merge branch 'release' into alpha
dkoo Sep 16, 2024
efc63be
chore(release): 4.2.0-alpha.2 [skip ci]
semantic-release-bot Sep 16, 2024
51551e6
chore(release): merge in release v4.1.2
matticbot Sep 17, 2024
8211578
Merge branch 'release' into alpha
miguelpeixe Sep 17, 2024
d01fd5d
chore(release): 4.2.0-alpha.3 [skip ci]
semantic-release-bot Sep 17, 2024
f5f1c20
feat(homepage-posts): infinite scroll (#1845)
davisshaver Sep 19, 2024
09619a9
feat(homepage-posts): add a show-full-content attribute (#1886)
adekbadek Sep 20, 2024
0b0b02c
Merge branch 'alpha' into trunk
adekbadek Sep 20, 2024
195cf87
Merge pull request #1888 from Automattic/trunk
leogermani Sep 20, 2024
9424429
chore(release): 4.2.0-alpha.4 [skip ci]
semantic-release-bot Sep 20, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"dealerdirect/phpcodesniffer-composer-installer": "*",
"phpcompatibility/phpcompatibility-wp": "*",
"sirbrillig/phpcs-variable-analysis": "^2.10",
"yoast/phpunit-polyfills": "^2.0",
"yoast/phpunit-polyfills": "^3.0",
"phpunit/phpunit": "^7.0 || ^9.5"
},
"license": "GPL-3.0-or-later",
Expand Down
112 changes: 56 additions & 56 deletions composer.lock

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

1 change: 1 addition & 0 deletions includes/class-newspack-blocks-api.php
Original file line number Diff line number Diff line change
Expand Up @@ -296,6 +296,7 @@ public static function posts_endpoint( $request ) {
'excerpt' => [
'rendered' => post_password_required( $post ) ? '' : $excerpt,
],
'full_content' => get_the_content( $post->ID ),
'featured_media' => (int) get_post_thumbnail_id( $post->ID ),
'id' => $post->ID,
'meta' => $meta->get_value( $post->ID, $request ),
Expand Down
Loading