Version Packages (beta) - #37
Merged
Merged
Conversation
github-actions
Bot
force-pushed
the
changeset-release/main
branch
from
July 26, 2026 16:21
be9ca35 to
87cfa69
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 the packages will be published to npm 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.
mainis currently in pre mode so this branch has prereleases rather than normal releases. If you want to exit prereleases, runchangeset pre exitonmain.Releases
@vayo-hq/ast@0.1.1-beta.3
Patch Changes
@vayo-hq/capture-express@0.1.1-beta.3
Patch Changes
@vayo-hq/cli@0.1.1-beta.3
Patch Changes
54d83dd: Fixed two real issues found while running
vayo scan/vayo export/the docsUI against a real, large production API (600+ endpoints):
vayo scan's route-merge loop andvayo export/vayo diff's per-endpointoverride/example/test-script lookups (and the identical logic in
@vayo-hq/server'sGET /api/spec/GET /api/diff) ran one DB round-tripat a time in a sequential
for...ofloop — safe, but measured takingminutes against a real remote MongoDB cluster at this scale, easily
mistaken for a hang. Added
mapWithConcurrencyto@vayo-hq/schema-engine(bounded-concurrency
Promise.all, 20 at a time — fast without firinghundreds of simultaneous connections at the database) and switched every
one of these call sites to it.
endpoints captured yet" immediately on load, before the first spec/folders
fetch had actually resolved — indistinguishable from a project with
nothing captured. A large real API can take several real seconds to
answer (see above), so this was a visible false-empty flash every time.
DocsAppnow tracks whether the initial fetch is still pending and shows"Loading endpoints…" instead, in the sidebar (
FolderTree), the main pane,and Full Docs mode (
FullDocView).Updated dependencies [54d83dd]
@vayo-hq/db-mongo@0.1.1-beta.3
Patch Changes
@vayo-hq/openapi-compiler@0.1.1-beta.3
Patch Changes
@vayo-hq/schema-engine@0.1.1-beta.3
Patch Changes
54d83dd: Fixed two real issues found while running
vayo scan/vayo export/the docsUI against a real, large production API (600+ endpoints):
vayo scan's route-merge loop andvayo export/vayo diff's per-endpointoverride/example/test-script lookups (and the identical logic in
@vayo-hq/server'sGET /api/spec/GET /api/diff) ran one DB round-tripat a time in a sequential
for...ofloop — safe, but measured takingminutes against a real remote MongoDB cluster at this scale, easily
mistaken for a hang. Added
mapWithConcurrencyto@vayo-hq/schema-engine(bounded-concurrency
Promise.all, 20 at a time — fast without firinghundreds of simultaneous connections at the database) and switched every
one of these call sites to it.
endpoints captured yet" immediately on load, before the first spec/folders
fetch had actually resolved — indistinguishable from a project with
nothing captured. A large real API can take several real seconds to
answer (see above), so this was a visible false-empty flash every time.
DocsAppnow tracks whether the initial fetch is still pending and shows"Loading endpoints…" instead, in the sidebar (
FolderTree), the main pane,and Full Docs mode (
FullDocView).@vayo-hq/server@0.1.1-beta.3
Patch Changes
54d83dd: Fixed two real issues found while running
vayo scan/vayo export/the docsUI against a real, large production API (600+ endpoints):
vayo scan's route-merge loop andvayo export/vayo diff's per-endpointoverride/example/test-script lookups (and the identical logic in
@vayo-hq/server'sGET /api/spec/GET /api/diff) ran one DB round-tripat a time in a sequential
for...ofloop — safe, but measured takingminutes against a real remote MongoDB cluster at this scale, easily
mistaken for a hang. Added
mapWithConcurrencyto@vayo-hq/schema-engine(bounded-concurrency
Promise.all, 20 at a time — fast without firinghundreds of simultaneous connections at the database) and switched every
one of these call sites to it.
endpoints captured yet" immediately on load, before the first spec/folders
fetch had actually resolved — indistinguishable from a project with
nothing captured. A large real API can take several real seconds to
answer (see above), so this was a visible false-empty flash every time.
DocsAppnow tracks whether the initial fetch is still pending and shows"Loading endpoints…" instead, in the sidebar (
FolderTree), the main pane,and Full Docs mode (
FullDocView).Updated dependencies [54d83dd]
Updated dependencies [05b01a2]
@vayo-hq/ui@0.1.1-beta.3
Patch Changes
54d83dd: Fixed two real issues found while running
vayo scan/vayo export/the docsUI against a real, large production API (600+ endpoints):
vayo scan's route-merge loop andvayo export/vayo diff's per-endpointoverride/example/test-script lookups (and the identical logic in
@vayo-hq/server'sGET /api/spec/GET /api/diff) ran one DB round-tripat a time in a sequential
for...ofloop — safe, but measured takingminutes against a real remote MongoDB cluster at this scale, easily
mistaken for a hang. Added
mapWithConcurrencyto@vayo-hq/schema-engine(bounded-concurrency
Promise.all, 20 at a time — fast without firinghundreds of simultaneous connections at the database) and switched every
one of these call sites to it.
endpoints captured yet" immediately on load, before the first spec/folders
fetch had actually resolved — indistinguishable from a project with
nothing captured. A large real API can take several real seconds to
answer (see above), so this was a visible false-empty flash every time.
DocsAppnow tracks whether the initial fetch is still pending and shows"Loading endpoints…" instead, in the sidebar (
FolderTree), the main pane,and Full Docs mode (
FullDocView).05b01a2: Fixed three more real issues found while using the docs UI against a real
production API:
very first endpoint ever captured resolves to a default version key
(schema-engine's
resolveVersionfallback — usually "v1") before anyonehas explicitly created that version via "Manage versions…" — real data
exists under it, but no
ApiVersionDocdoes yet, so it never appeared asa selectable option in the version switcher. Once a user switched to
"Unversioned" (always listed, unconditionally), there was no way back
short of manually creating a version with that exact name.
VersionSwitchernow always surfaces the app's default version key as aselectable option when it isn't a real stored version yet.
screen for however long the new version's spec/folders fetch took —
genuinely indistinguishable from the switch having silently failed,
especially on a large real API where that fetch can take several real
seconds. The loading state added previously only covered the very first
load; it's now also cleared and re-armed on every version switch.
Nothing disabled the Save button while a create/update request was in
flight, so a double-click read the same identical form state twice and
created two duplicate environments; the form also never reset after a
successful creation. Added a
savingstate that disables Save/Delete/Close and shows "Saving…" during the request, resets the form after a
successful creation, and added a duplicate-name check that surfaces a
clear inline error instead of silently allowing it.
@vayo-hq/types@0.1.1-beta.3