Version Packages (alpha) - #1635
Open
arkenv-bot[bot] wants to merge 2 commits into
Open
Conversation
@arkenv/agent-plugin
arkenv
@arkenv/build
@arkenv/bun-plugin
@arkenv/core
@arkenv/fumadocs-ui
@arkenv/nextjs
@arkenv/nuxt
@arkenv/standard
@arkenv/vite-plugin
commit: |
arkenv-bot
Bot
force-pushed
the
changeset-release/v1
branch
4 times, most recently
from
August 27, 2026 19:28
13a98e9 to
117da1a
Compare
yamcodes
added a commit
that referenced
this pull request
Aug 27, 2026
The hero Valibot pane height calc exceeded Biome's CSS lineWidth, and useLayoutEffect listed validator without reading it. Autofix then exited 1, which blocked Version Packages PR #1635. Co-authored-by: Cursor <cursoragent@cursor.com>
arkenv-bot
Bot
force-pushed
the
changeset-release/v1
branch
2 times, most recently
from
August 27, 2026 20:07
79772dc to
f7d9364
Compare
arkenv-bot
Bot
force-pushed
the
changeset-release/v1
branch
from
August 27, 2026 20:38
204377c to
b939902
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 v1, this PR will be updated.
v1is currently in pre mode so this branch has prereleases rather than normal releases. If you want to exit prereleases, runchangeset pre exitonv1.Releases
arkenv@1.0.0-alpha.15
Major Changes
Replace
--jsonpayloads with settlement envelopes#163302a5a32@yamcodes--json/--agentnow write anok-discriminated settlement document to stdout instead of{ status, code, message, retryWith }. Human-readable output is unchanged. JSON stays on stdout; logs stay on stderr. Secret values are redacted inmeta,summary, andwhy.Completed runs use
ok: true(includingarkenv checkfindings, which still setexitCode: 4). Aborts useok: falsewith a dottedCLI.*orENV.*code.nextActionsis always present ([]when there is nothing to do). Commands innextActionsresolve to the invoked runner (pnpm arkenv,npx arkenv,bunx arkenv, and so on).Example refusal:
{ "ok": false, "commandId": "init", "error": { "code": "CLI.GIT_TREE_DIRTY", "severity": "error", "summary": "Git working tree is not clean.", "nextActions": [ { "kind": "run-command", "label": "Re-run with --force to bypass this check", "command": "npx arkenv init --force" } ] }, "diagnostics": [], "nextActions": [ { "kind": "run-command", "label": "Re-run with --force to bypass this check", "command": "npx arkenv init --force" } ] }BREAKING CHANGE: Agents must switch from
status/retryWithtook/error.code/nextActions. Flat codes such asGIT_TREE_DIRTYare now dotted (CLI.GIT_TREE_DIRTY).Minor Changes
Add
arkenv checkcommand and cross-module validation detection#163201a028d@yamcodesarkenv checkCLI command to validate the active environment against the project's env schema, supporting--schema(-s), repeatable--env-file,--json,--quiet, and--agentwith CI-friendly exit codes.ArkErrorsverification in@arkenv/coreso cross-module-instance schema evaluation reliably surfaces validation issues.Patch Changes
Drop default
z.coercefrom Zod product samples and scaffold templates#1631ba9f903@yamcodesScaffolded Zod templates,
@arkenv/standardJSDoc examples, and official example projects now declare numeric and boolean fields withz.number()andz.boolean()instead ofz.coerce.number()orz.coerce.boolean(), reflecting ArkEnv's built-in pre-coercion for Standard Schema validators.Align Next.js onboarding with
@/.arkenv#1639cc87d51@yamcodesarkenv initnow scaffolds Next.js schemas that import the codegen factory from@/.arkenv, writes that factory to.arkenv/env.gen.ts, gitignores.arkenv/, and maps the specifier intsconfig.json. Docs, READMEs, and examples match that path instead of./generated/env.gen.Existing
outputPathoverrides still work. Keep importing@/.arkenv.withArkEnvaliases the specifier for bundlers, and codegen keeps.arkenv/index.tsre-exporting the file sotsc --noEmitresolves it too.@arkenv/core@1.0.0-alpha.7
Patch Changes
Add
arkenv checkcommand and cross-module validation detection#163201a028d@yamcodesarkenv checkCLI command to validate the active environment against the project's env schema, supporting--schema(-s), repeatable--env-file,--json,--quiet, and--agentwith CI-friendly exit codes.ArkErrorsverification in@arkenv/coreso cross-module-instance schema evaluation reliably surfaces validation issues.@arkenv/nextjs@1.0.0-alpha.13
Patch Changes
Align Next.js onboarding with
@/.arkenv#1639cc87d51@yamcodesarkenv initnow scaffolds Next.js schemas that import the codegen factory from@/.arkenv, writes that factory to.arkenv/env.gen.ts, gitignores.arkenv/, and maps the specifier intsconfig.json. Docs, READMEs, and examples match that path instead of./generated/env.gen.Existing
outputPathoverrides still work. Keep importing@/.arkenv.withArkEnvaliases the specifier for bundlers, and codegen keeps.arkenv/index.tsre-exporting the file sotsc --noEmitresolves it too.Updated 2 dependencies
01a028dba9f903@arkenv/core@1.0.0-alpha.7@arkenv/standard@1.0.0-alpha.7Patch Changes
Drop default
z.coercefrom Zod product samples and scaffold templates#1631ba9f903@yamcodesScaffolded Zod templates,
@arkenv/standardJSDoc examples, and official example projects now declare numeric and boolean fields withz.number()andz.boolean()instead ofz.coerce.number()orz.coerce.boolean(), reflecting ArkEnv's built-in pre-coercion for Standard Schema validators.