Skip to content

chore(deps): bump vue-component-type-helpers from 2.2.12 to 3.2.6#12

Merged
Goosterhof merged 1 commit into
mainfrom
dependabot/npm_and_yarn/vue-component-type-helpers-3.2.6
Apr 8, 2026
Merged

chore(deps): bump vue-component-type-helpers from 2.2.12 to 3.2.6#12
Goosterhof merged 1 commit into
mainfrom
dependabot/npm_and_yarn/vue-component-type-helpers-3.2.6

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Apr 6, 2026

Bumps vue-component-type-helpers from 2.2.12 to 3.2.6.

Release notes

Sourced from vue-component-type-helpers's releases.

v3.2.6

language-core

  • fix: generate $slots type in template correctly with defineSlots (#5984) - Thanks to @​KazariEX!
  • fix: infer only readonly component of arrays in v-for (#5987) - Thanks to @​ascott18!
  • fix: avoid false positives for destructured props detection on binding property names (#5994) - Thanks to @​KazariEX!

vscode

  • fix: use regex for TS extension patching to support VS Code 1.110+ (#5983) - Thanks to @​ebiryu!

Our Sponsors ❤️

... (truncated)

Changelog

Sourced from vue-component-type-helpers's changelog.

3.2.6 (2026-03-17)

language-core

  • fix: generate $slots type in template correctly with defineSlots (#5984) - Thanks to @​KazariEX!
  • fix: infer only readonly component of arrays in v-for (#5987) - Thanks to @​ascott18!
  • fix: avoid false positives for destructured props detection on binding property names (#5994) - Thanks to @​KazariEX!

vscode

  • fix: use regex for TS extension patching to support VS Code 1.110+ (#5983) - Thanks to @​ebiryu!

3.2.5 (2026-02-21)

language-core

  • fix: re-parse template when interpolation syntax breaks (#5971) - Thanks to @​Dsaquel!

language-service

language-plugin-pug

workspace

  • docs: document all packages with consistent README structure (#5953)
  • docs: update tsconfig schema of plugins option - Thanks to @​KazariEX!

3.2.4 (2026-01-26)

language-core

  • feat: place plugin configs under ctx.config and support type annotation via generics (#5944) - Thanks to @​KazariEX!

workspace

3.2.3 (2026-01-23)

language-core

  • feat: support configuration for language plugins (#5678) - Thanks to @​KazariEX!
  • fix: avoid defineModel breaking ast in lang="js" (#5935) - Thanks to @​KazariEX!
  • fix: infer object keys as string if it does not extend string (#5933) - Thanks to @​serkodev!

typescript-plugin

... (truncated)

Commits
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.


@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Apr 6, 2026
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>
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/vue-component-type-helpers-3.2.6 branch from 57e1147 to 1267058 Compare April 7, 2026 14:14
@Goosterhof Goosterhof merged commit c3737ab into main Apr 8, 2026
1 check passed
@Goosterhof Goosterhof deleted the dependabot/npm_and_yarn/vue-component-type-helpers-3.2.6 branch April 8, 2026 09:30
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.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant