Skip to content

Update dependency arkenv to ^0.11.0#836

Merged
renovate[bot] merged 1 commit into
mainfrom
renovate/arkenv-packages
Mar 20, 2026
Merged

Update dependency arkenv to ^0.11.0#836
renovate[bot] merged 1 commit into
mainfrom
renovate/arkenv-packages

Conversation

@renovate

@renovate renovate Bot commented Mar 20, 2026

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Confidence
arkenv (source) ^0.9.0^0.11.0 age confidence

Release Notes

yamcodes/arkenv (arkenv)

v0.11.0

Compare Source

Minor Changes
  • Remove ArkEnvError import from "arkenv" #815 5e8025f @​yamcodes

    The ArkEnvError class is now only available via:

    import { ArkEnvError } from "arkenv/core";

v0.10.0

Compare Source

Minor Changes
  • arkenv/standard import #806 f9010d0 @​yamcodes

    arkenv now ships three separate entry points:

    • arkenv (main): ArkType-first. Includes createEnv (aliased to arkenv default import), type, and ArkEnvError. Importing from this entry requires you to have ArkType installed.
    • arkenv/standard: ArkType-free. A standalone createEnv (aliased to arkenv default import) for Standard Schema validators (Zod, Valibot, etc.), not requiring ArkType.
    • arkenv/core: Mode-agnostic primitives - ArkEnvError and ValidationIssue.
Breaking changes
**1. `validator: "standard"` option removed; `arkenv` now statically requires ArkType.**
The `validator` config option has been removed - ArkType is now always required when importing from `arkenv`. For a zero-ArkType bundle, use `arkenv/standard`:

```ts
// ❌ Before
import arkenv from "arkenv";
import { z } from "zod";

const env = arkenv({ PORT: z.coerce.number() }, { validator: "standard" });

// ✅ After
import arkenv from "arkenv/standard";
import { z } from "zod";

const env = arkenv({ PORT: z.coerce.number() });
```

**2. `type` moved from `arkenv/arktype` to `arkenv`.**
The `type` helper is now exported from the main entry. The `arkenv/arktype` sub-path is no longer public:

```ts
// ❌ Before
import { type } from "arkenv/arktype";

// ✅ After
import { type } from "arkenv"; // 'type' is the ArkEnv helper, not a TS type modifier
```

Configuration

📅 Schedule: Branch creation - "on friday" in timezone Asia/Almaty, Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@github-actions github-actions Bot added the example Issues or Pull Requests concerning at least one ArkEnv example. (Found in the `examples/` directory) label Mar 20, 2026
@changeset-bot

changeset-bot Bot commented Mar 20, 2026

Copy link
Copy Markdown

⚠️ No Changeset found

Latest commit: 6698f80

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

@renovate
renovate Bot merged commit 996d05b into main Mar 20, 2026
15 checks passed
@renovate
renovate Bot deleted the renovate/arkenv-packages branch March 20, 2026 05:17
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

example Issues or Pull Requests concerning at least one ArkEnv example. (Found in the `examples/` directory)

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants