chore(deps-dev): bump vue from 3.5.31 to 3.5.32#13
Merged
Conversation
Bumps [vue](https://github.com/vuejs/core) from 3.5.31 to 3.5.32. - [Release notes](https://github.com/vuejs/core/releases) - [Changelog](https://github.com/vuejs/core/blob/main/CHANGELOG.md) - [Commits](vuejs/core@v3.5.31...v3.5.32) --- updated-dependencies: - dependency-name: vue dependency-version: 3.5.32 dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
669367d to
1745ead
Compare
Goosterhof
added a commit
that referenced
this pull request
May 13, 2026
…ll/retrieveById, add prime() (Locks #11 reversed + #12/#13) Per Commander 2026-05-13 Architecture Lock revisions: - Lock #11 REVERSED: retrieveById no longer passthrough — removed from public surface. - NEW Lock #12: retrieveAll removed from public surface. Response middleware is the sole steady-state trigger of inner.retrieveAll. - NEW Lock #13: prime() is the only consumer-facing fetch entry point — idempotent, in-flight-deduped against middleware-driven retrieveAlls, no-op once a successful inner retrieve has completed in this session and localHash !== null. Implementation: - The `retrieveAll` closure is replaced by a private `triggerInnerRetrieveAll` coordinator that owns the in-flight ref, the skip-when-equal check, the persist-after-success snapshot, and a new `hasCompletedAtLeastOnce` flag. - The response middleware's per-cacheKey handler now does TWO things on every observed hash: (a) bump currentServerHash, (b) fire-and-forget `triggerInnerRetrieveAll()`. The trigger inherits in-flight dedup + skip-when-equal, so an equal observed hash is short-circuited internally; an async rejection on the inner promise is contained inside the inflight closure's try/finally and a top-level `.catch(() => {})` ensures no unhandled rejection escapes back to abort the caller's request. - `prime()` short-circuits when `hasCompletedAtLeastOnce && localHash.value !== null`; otherwise delegates to `triggerInnerRetrieveAll()` and awaits its resolution, surfacing failures to the caller. - The returned module is exactly `{getAll, getById, getOrFailById, generateNew, prime}` — no `retrieveAll`, no `retrieveById`. Type narrowing: - New exported type `CachedStoreModuleForAdapter<T, E, N>` in src/types.ts captures the narrower surface. The factory's return type changes from `StoreModuleForAdapter<T, E, N>` to `CachedStoreModuleForAdapter<T, E, N>`. The new type is intentionally NOT assignable to `StoreModuleForAdapter<T, E, N>` (no `retrieveAll`/`retrieveById` properties) — verified by a `@ts-expect-error` assertion in the type test. - Re-exported from src/index.ts as a named type export. See orders/fs-packages/fs-cached-adapter-store-public-surface-narrowing-engineer-deployment.md for the full specification.
13 tasks
Goosterhof
added a commit
that referenced
this pull request
May 15, 2026
…ll/retrieveById, add prime() (Locks #11 reversed + #12/#13) Per Commander 2026-05-13 Architecture Lock revisions: - Lock #11 REVERSED: retrieveById no longer passthrough — removed from public surface. - NEW Lock #12: retrieveAll removed from public surface. Response middleware is the sole steady-state trigger of inner.retrieveAll. - NEW Lock #13: prime() is the only consumer-facing fetch entry point — idempotent, in-flight-deduped against middleware-driven retrieveAlls, no-op once a successful inner retrieve has completed in this session and localHash !== null. Implementation: - The `retrieveAll` closure is replaced by a private `triggerInnerRetrieveAll` coordinator that owns the in-flight ref, the skip-when-equal check, the persist-after-success snapshot, and a new `hasCompletedAtLeastOnce` flag. - The response middleware's per-cacheKey handler now does TWO things on every observed hash: (a) bump currentServerHash, (b) fire-and-forget `triggerInnerRetrieveAll()`. The trigger inherits in-flight dedup + skip-when-equal, so an equal observed hash is short-circuited internally; an async rejection on the inner promise is contained inside the inflight closure's try/finally and a top-level `.catch(() => {})` ensures no unhandled rejection escapes back to abort the caller's request. - `prime()` short-circuits when `hasCompletedAtLeastOnce && localHash.value !== null`; otherwise delegates to `triggerInnerRetrieveAll()` and awaits its resolution, surfacing failures to the caller. - The returned module is exactly `{getAll, getById, getOrFailById, generateNew, prime}` — no `retrieveAll`, no `retrieveById`. Type narrowing: - New exported type `CachedStoreModuleForAdapter<T, E, N>` in src/types.ts captures the narrower surface. The factory's return type changes from `StoreModuleForAdapter<T, E, N>` to `CachedStoreModuleForAdapter<T, E, N>`. The new type is intentionally NOT assignable to `StoreModuleForAdapter<T, E, N>` (no `retrieveAll`/`retrieveById` properties) — verified by a `@ts-expect-error` assertion in the type test. - Re-exported from src/index.ts as a named type export. See orders/fs-packages/fs-cached-adapter-store-public-surface-narrowing-engineer-deployment.md for the full specification.
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.
Bumps vue from 3.5.31 to 3.5.32.
Release notes
Sourced from vue's releases.
Changelog
Sourced from vue's changelog.
Commits
9a2eb53release: v3.5.3232b44f1fix(teleport): handle updates before deferred mount (#14642)f166353fix(runtime-core): prevent currentInstance leak into sibling render during as...302c47afix(types): use private branding for shallowReactive (#14641)e20ddb0fix(types): allow customRef to have different getter/setter types (#14639)219d83bRevert "fix(server-renderer): cleanup component effect scopes after SSR rende...fa23116chore: fix typos in changelogs (#14653)