Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
f20a6b8
Add new helper function to aid in syncing custom post types specifica…
coder-karen May 6, 2026
ce6d4a0
changelog
coder-karen May 6, 2026
38f7b82
Update composer.lock files
coder-karen May 6, 2026
83bf4e5
changelog
coder-karen May 6, 2026
ec33021
Merge branch 'trunk' into add/sync-custom-post-types-for-activity-log
coder-karen May 6, 2026
6f9d525
Update composer.lock files
coder-karen May 6, 2026
e1d6e74
Additional validation, sanitization, cleanup
coder-karen May 6, 2026
93f77fe
Adding tests
coder-karen May 6, 2026
876740d
Change approach to use an Activity_Log_Event class
coder-karen May 7, 2026
6a0bde2
Prevent supporting new line chars
coder-karen May 7, 2026
813be65
Cleanup, inc new tests
coder-karen May 7, 2026
aebafc0
Additional defensiveness and simplifying checks, also based on reviews
coder-karen May 7, 2026
27bbf37
Additional comments, clarify validation, ensure tests and changelog a…
coder-karen May 7, 2026
f20dcd7
Expose Activity Log events via guarded REST CPT route
coder-karen May 8, 2026
dee69dd
Implementing some Codex-suggested tweaks: changelog update, test twea…
coder-karen May 8, 2026
8000c71
Remove site token auth check and update tests
coder-karen May 8, 2026
7f4d3fe
Ensure configure will run on Simple sites, move jetpack-mu-wpcom init…
coder-karen May 8, 2026
1bf85c9
Updates based on reviews
coder-karen May 8, 2026
e9c8b1c
Minor guard and early-return cleanup additions.
coder-karen May 8, 2026
0f485c4
Merge branch 'trunk' into add/sync-custom-post-types-for-activity-log
coder-karen May 11, 2026
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
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Significance: minor
Type: added

Initialize Activity Log event custom post type support when Sync is available.
Original file line number Diff line number Diff line change
Expand Up @@ -327,6 +327,11 @@ public static function load_features() {
add_filter( 'wp_client_side_media_processing_enabled', '__return_false' );

// Initializers, if needed.
$activity_log_event_class = 'Automattic\\Jetpack\\Sync\\Activity_Log_Event';
if ( class_exists( $activity_log_event_class ) ) {
$activity_log_event_class::init();
}

\Marketplace_Products_Updater::init();
\Automattic\Jetpack\Code_Editor::setup();
\Automattic\Jetpack\Code_Block::setup();
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Significance: minor
Type: added

Add Activity Log custom event support with a non-public custom post type, guarded REST route, and class API for creating entries.
Loading
Loading