chore: version packages#2741
Merged
Merged
Conversation
2301b52 to
52f8bb3
Compare
52f8bb3 to
dc7c474
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.
Releases
@vertz/native-compiler@0.2.69
@vertz/native-compiler
0.2.67
Patch Changes
#2725
56e7e2fThanks @viniciusdacal! - fix(native-compiler): add repository/license/description fields to package.jsonnpm publish with
--provenancerejected the 0.2.66 publish with:The
@vertz/native-compilerpackage had never been published before, and its package.json was missingrepository,license, anddescription. npm's provenance attestation requires the manifest'srepository.urlto match the source repo recorded in the provenance bundle. Added all three fields matching the pattern used by the other@vertz/*packages.0.2.66
Patch Changes
4cc0aa9Thanks @viniciusdacal! - Fix false-positivebatchimport injection whenasync batch()appears as an object method definition0.1.1
Patch Changes
#2265
36b0f20Thanks @viniciusdacal! - feat(ui): add form-level onChange with per-input debounce<form onChange={handler}>fires when any child input changes, receiving all current form values as aFormValuesobject. Per-inputdebounce={ms}delays the callback for text inputs while immediate controls (selects, checkboxes) flush instantly.Breaking:
onChangeon<form>now receivesFormValuesinstead of a DOMEvent. Useref+addEventListenerfor the raw DOM event.@vertz/cli@0.2.69
Patch Changes
@vertz/cloudflare@0.2.69
Patch Changes
@vertz/codegen@0.2.69
Patch Changes
@vertz/core@0.2.69
Patch Changes
create-vertz@0.2.69
Patch Changes
@vertz/db@0.2.69
Patch Changes
@vertz/desktop@0.2.69
Patch Changes
@vertz/fetch@0.2.69
Patch Changes
@vertz/runtime@0.2.69
Patch Changes
#2748
d220831Thanks @viniciusdacal! - feat(vtz): add vitest-compatible mock APIs to@vertz/testReal-world test suites written against vitest often call
getMockImplementation(),getMockName(),mockName(), andwithImplementation()on mock functions. Ourruntime exposed
mock()/vi.fn()without those methods, so tests migratedfrom vitest hit
TypeError: x.getMockImplementation is not a function(surfacedin @vertz/cli production-build: BuildOrchestrator analyze() call fails with undefined compiler #2731).
This PR fills the gap. Added to every mock created by
mock(),vi.fn(), andspyOn():getMockImplementation()— returns the current default implementation, orundefinedif none is set. Does not consider the once-queue (matches vitest).getMockName()— returns the display name set viamockName(). Defaultsto
''(empty string).mockName(name)— sets the display name for diagnostics. Returns the mockfor chaining. Cleared by
mockReset(); preserved bymockClear().withImplementation(fn, cb)— temporarily swaps the default implementationwith
fn, runscb, then restores the original — awaitingcbif it returnsa Promise. Returns
cb's result. Restores cleanly on both sync and asyncexceptions. Does not disturb
getMockImplementation()after return.Also added type declarations for all four methods to
MockFunctionin@vertz/test, and added Rust + TS test coverage (10 Rust tests, 15 TS tests).Not implemented (intentionally):
mockThrow/mockThrowOnce(v4.1.0+ vitest,would add surface without strong use-case),
mock.settledResults/mock.instances/mock.contexts/mock.invocationCallOrder(separate statethat the runtime doesn't currently track — follow-up if demand materializes).
#2740
48875caThanks @viniciusdacal! - fix(vtz): rewrite bare imports inside pre-bundled/@deps/filesThe dev server's pre-bundle short-circuit previously served files from
.vertz/deps/verbatim. When a bundle still contained bare specifiers(e.g. an
@vertz/theme-shadcnbundle withimport { css } from "@vertz/ui"),the browser rejected it with
Failed to resolve module specifier "@vertz/ui".The pre-bundle branch now runs the same import rewriter used by the direct
node_modules/serve path. Closes Dev server does not rewrite bare @vertz/ui imports inside @vertz/theme-shadcn #2730.#2742
7f7ff47Thanks @viniciusdacal! - fix(vtz):vtz cinow loadsci.config.tsthrough vtz itself (no more bun/tsx dependency)vtz ci's config loader used to spawn an external JS runtime to evaluateci.config.ts— preferring bun, falling back tonode --import tsx. Thatmade bun (or a tsx devDependency) a hard requirement for
vtz ci, eventhough vtz is itself a TypeScript runtime. The fallback chain was
discovered in vtz ci: load ci.config.ts via vtz runtime itself (not bun/tsx) #2739 while trying to drop bun from CI; the
@vertz/cipackage.json's exports field also doesn't satisfy strict-Node ESM, which
tsx uses, so the fallback was fragile.
This PR makes vtz self-host:
vtz __exec <file> [args...]— runs asingle JS/TS file through the vtz runtime with
process.argvpopulated.Not intended for end-user use; exists to support internal tooling like
vtz ci.find_runtime()inci/config.rsnow prefers the current vtz binaryvia
std::env::current_exe()with__exec. bun/node+tsx stay asfallbacks for the edge case where
current_exe()is unavailable.process.exit(code)is now implemented (via a newop_process_exitop). It previously threw. The existing
.pipe/_loader.mjscallsprocess.exit(0)at the end of its run, so this is necessary for theloader to terminate cleanly under vtz.
After this lands,
vtz cihas zero external-runtime dependencies — vtzalone is sufficient. Unblocks migrating CI from
bun installtovtz install --frozen(tracked separately).#2747
7fea5d7Thanks @viniciusdacal! - fix(vtz): semver resolver must not return versions that don't satisfy the rangevtz installincorrectly resolvedesbuild: ^0.27.3to0.25.12when a stalelockfile entry existed, because the lockfile-reuse fast path trusted the pinned
version without revalidating that it still satisfied the requested range. The
companion
graph_to_lockfilepath also wrote root-dep entries by name-only,blindly accepting whichever hoisted version was present.
Both paths now verify that the chosen version satisfies the declared range. A
stale or out-of-range pin falls through to a fresh registry resolve instead of
silently being reused. Closes vtz install resolver:
^0.27.3incorrectly resolves to 0.25.12 #2738.@vertz/schema@0.2.69
Patch Changes
@vertz/server@0.2.69
Patch Changes
@vertz/testing@0.2.69
Patch Changes
@vertz/theme-shadcn@0.2.69
Patch Changes
@vertz/tui@0.2.69
Patch Changes
@vertz/ui@0.2.69
Patch Changes
@vertz/ui-canvas@0.2.69
Patch Changes
@vertz/ui-primitives@0.2.69
Patch Changes
@vertz/ui-server@0.2.69
Patch Changes
vertz@0.2.69
Patch Changes
@vertz/compiler@0.2.69
@vertz/create-vertz-app@0.2.69
@vertz/errors@0.2.69
@vertz/icons@0.2.69
@vertz/test@0.2.69
@vertz-benchmarks/vertz-app@0.0.67
Patch Changes
@vertz-examples/task-manager@0.2.69
Patch Changes
@vertz/cli-runtime@0.2.69
Patch Changes
@vertz/native-compiler-darwin-arm64@0.2.69
@vertz/native-compiler-darwin-arm64
0.2.65
@vertz/native-compiler-darwin-x64@0.2.69
@vertz/native-compiler-darwin-x64
0.2.65
@vertz/native-compiler-linux-arm64@0.2.69
@vertz/native-compiler-linux-arm64
0.2.65
@vertz/native-compiler-linux-x64@0.2.69
@vertz/native-compiler-linux-x64
0.2.65
@vertz/runtime-darwin-arm64@0.2.69
@vertz/runtime-darwin-x64@0.2.69
@vertz/runtime-linux-arm64@0.2.69
@vertz/runtime-linux-x64@0.2.69