From 3f525f228052ad04e6f9da6ff160bef803d079bd Mon Sep 17 00:00:00 2001 From: nsfisis Date: Thu, 6 Aug 2026 20:04:25 +0900 Subject: feat(plugin): let links and release dates cross the RPC boundary The link getters and setters and the release date accessors were explicit errors for every non-empty value, because an immutable value has no entity to point a handle at. They now cross as materialized values: the descriptor names the real class and the constructor arguments, and each side builds a genuine instance of its own. The semver constraint a link holds is encoded structurally rather than re-parsed from its string form, so the pretty strings and the conjunctive flag survive the crossing. Co-Authored-By: Claude Opus 5 (1M context) --- crates/shirabe/tests/plugin/fixtures/values-v1/composer.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 crates/shirabe/tests/plugin/fixtures/values-v1/composer.json (limited to 'crates/shirabe/tests/plugin/fixtures/values-v1/composer.json') diff --git a/crates/shirabe/tests/plugin/fixtures/values-v1/composer.json b/crates/shirabe/tests/plugin/fixtures/values-v1/composer.json new file mode 100644 index 00000000..d4e5861e --- /dev/null +++ b/crates/shirabe/tests/plugin/fixtures/values-v1/composer.json @@ -0,0 +1,12 @@ +{ + "name": "values-v1", + "version": "1.0.0", + "type": "composer-plugin", + "autoload": { "psr-0": { "Values": "" } }, + "extra": { + "class": "Values\\Plugin" + }, + "require": { + "composer-plugin-api": "^2.0" + } +} -- cgit v1.3.1