chore(deps): bump vue-component-type-helpers from 2.2.12 to 3.2.6#12
Merged
Goosterhof merged 1 commit intoApr 8, 2026
Merged
Conversation
Bumps [vue-component-type-helpers](https://github.com/vuejs/language-tools/tree/HEAD/packages/component-type-helpers) from 2.2.12 to 3.2.6. - [Release notes](https://github.com/vuejs/language-tools/releases) - [Changelog](https://github.com/vuejs/language-tools/blob/master/CHANGELOG.md) - [Commits](https://github.com/vuejs/language-tools/commits/v3.2.6/packages/component-type-helpers) --- updated-dependencies: - dependency-name: vue-component-type-helpers dependency-version: 3.2.6 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
57e1147 to
1267058
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
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-component-type-helpers from 2.2.12 to 3.2.6.
Release notes
Sourced from vue-component-type-helpers's releases.
... (truncated)
Changelog
Sourced from vue-component-type-helpers's changelog.
... (truncated)
Commits
94907bev3.2.6 (#5996)ee5041dv3.2.5 (#5974)0c4c509docs: document all packages with consistent README structure (#5953)f0ede30v3.2.4 (#5946)efc6882v3.2.3 (#5942)17394f4v3.2.2 (#5923)fad5a89v3.2.1 (#5898)bd12c1dv3.2.0 (#5870)19a81d4refactor(component-type-helpers): removeComponentTypehelper9f97787v3.1.8 (#5834)Maintainer changes
This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for vue-component-type-helpers since your current version.