Skip to content

v0.1.3 — endpoint consistency and README doc URL

Choose a tag to compare

@Gmulti Gmulti released this 30 Apr 04:34
· 25 commits to develop since this release

Patch release. Two small fixes.

Reliability — safe-plugin-update endpoint consistency (#6)

Step 6 of safe-plugin-update polled the global /processes?per_page=20 while Step 7 read from /projects/<ID>/processes?per_page=20. For accounts with many concurrent processes (agencies managing 50+ sites), the freshly-created processId could drop off page 1 of the global feed within seconds — the poll then never matched, the loop silently timed out, and the workflow reported "still queued" even when the update had finished in 10 seconds.

Step 6 now uses the same project-scoped endpoint as Step 7:

-    "https://public-api.wp-umbrella.com/processes?per_page=20" \
+    "https://public-api.wp-umbrella.com/projects/<ID>/processes?per_page=20" \

SKILL.md section 6 still uses the global form as the canonical "track any process" example — generic guidance stays generic.

Docs — Public API URL (README)

README.md linked to https://docs.wp-umbrella.com for the Public API documentation. The canonical URL is https://wp-umbrella.readme.io/. Fixed.

Install / update

/plugin update umbrella@wp-umbrella

Still open

Findings #1, #2, #4 from the v0.1.0 read-through remain open and will be addressed in subsequent patches.

Full changelog: v0.1.2...v0.1.3