Version Packages - #95
Merged
Merged
Conversation
github-actions
Bot
force-pushed
the
changeset-release/main
branch
from
September 4, 2026 13:05
659e31b to
29d8fb6
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and publish to npm yourself or setup this action to publish automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.
Releases
fiber@0.16.0
Minor Changes
#96
f5a32b5Thanks @MathiasWP! - Decide what an agent may call per endpoint, not per HTTP method. A sharedcollection can carry an access policy — a jq filter answering
"allow","ask"or
"deny"for each endpoint — which is the only workable guard for an APIwhere every operation is a POST and the method says nothing about what it does.
The filter reads whatever the manifest publishes: every scalar
x-extension onan OpenAPI operation is now carried through the loader, so a rule can be written
against the API's own vocabulary.
"ask"puts the call in front of you in youragent's client and sends it only once you approve. Section settings shows the
answers for the collection's real endpoints as you type. Collections without a
policy keep the switch they had, unchanged.
#94
166f130Thanks @AndersRobstad! - A containerised MCP server now says when it has no credential for a collection,instead of giving desktop advice.
The credentials file landed in 0.15.0, but only for people who migrated onto it.
A workload created before it goes on reading its frozen
FIBER_SECRETSsnapshot,and a collection authenticated after that workload started is not stale in the
snapshot — it is absent. There is no 401, so nothing refreshes and nothing
retries; the send fails before it is made, with "not signed in — open Section
settings and sign in". In a container there are no Section settings, no window
to sign in through, and usually a user who is signed in.
That failure now explains itself. It names the collection and the reference,
says which source the server reads, and — for a snapshot — that the source was
frozen when the workload started and cannot pick a later sign-in up. The server
also reports its credential source at startup and warns there about every shared
collection whose credential it cannot see, and
list_sectionsmarks those with"credential": "missing"so an agent finds out before spending a call.Silently re-captured browser credentials reach the file too. On a 401 the app
lifts a fresh one out of a hidden webview and deliberately does not write it to
the keychain, because writing costs a password prompt. None of that reasoning
applies to the credentials file — the sealing key is already cached and the
write is a file write — but it was being skipped all the same, so a container
only ever saw a browser credential change on an explicit sign-in.
Rerunning
scripts/toolhive.shmigrates a pre-0.15 workload, and now says sowhen it does, including that the old snapshot is left behind holding stale
credentials.