Skip to content

Commit 9254e1a

Browse files
arberxclaude
andcommitted
chore(traffic): version the WordPress traffic-logger plugin to 1.0.0
The traffic-logger plugin has shipped real-client-IP capture, the in-place schema migration, and the page-cache opt-out, so it is promoted from 0.3.1 to a 1.0 GA marker. The bump covers package.json, the plugin Version header, and the plugin_version the REST endpoint reports. On merge, wp-plugin-release.yml publishes wp-traffic-logger-v1.0.0. integration-wordpress is reverted from 1.0.0 to 0.0.0: it is an internal bundled package and 0.0.0 is the convention for those. The 1.0 marker belongs on the installable plugin, not the internal TS client. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent 312c85d commit 9254e1a

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

packages/integration-wordpress/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ainyc/canonry-integration-wordpress",
3-
"version": "1.0.0",
3+
"version": "0.0.0",
44
"private": true,
55
"type": "module",
66
"license": "FSL-1.1-ALv2",

packages/wordpress-traffic-logger-plugin/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ainyc/canonry-wordpress-traffic-logger-plugin",
3-
"version": "0.3.1",
3+
"version": "1.0.0",
44
"private": true,
55
"license": "FSL-1.1-ALv2",
66
"description": "PHP WordPress plugin that emits canonry traffic-logger events for the integration-wordpress-traffic adapter to pull.",

packages/wordpress-traffic-logger-plugin/plugin/canonry-traffic-logger.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Plugin Name: Canonry Traffic Logger
44
* Plugin URI: https://canonry.ai
55
* Description: Captures non-admin page-load events and exposes them via REST for the canonry traffic-ingestion pipeline. No classification; the server does that.
6-
* Version: 0.3.1
6+
* Version: 1.0.0
77
* Requires PHP: 7.4
88
* Author: Canonry
99
* License: MIT

packages/wordpress-traffic-logger-plugin/plugin/includes/class-rest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ public static function handleList(\WP_REST_Request $request) {
180180
'has_more' => $hasMore,
181181
'site' => [
182182
'url' => function_exists('home_url') ? home_url() : null,
183-
'plugin_version' => '0.3.1',
183+
'plugin_version' => '1.0.0',
184184
],
185185
], 200);
186186
}

0 commit comments

Comments
 (0)