Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update dependency arktype to v2.1.16 #64

Open
wants to merge 1 commit into
base: deps
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Mar 20, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
arktype (source) 2.1.9 -> 2.1.16 age adoption passing confidence

Release Notes

arktypeio/arktype (arktype)

v2.1.16

Compare Source

Fixed an issue causing non-serializable error config to lead to incorrect error messages in some JIT-mode cases:
const MyUnion = type('"abc" | "cde"').configure({
	message: () => "fail"
})

// old: "$ark.message"
// new: "fail"
MyUnion.assert("efg")
Added a workaround for environments where global prototypes like FormData have degenerate resolutions like {} (currently the case in @types/bun, see https://github.com/oven-sh/bun/issues/18689)
const T = type("string.numeric.parse")

// previously, if a global prototype like FormData resolved to {}, it prevented
// ArkType from extracting the input/output of morphs, leading to inference like the following:

// old (with @&#8203;bun/types): (In: string) => To<number>
// new (with @&#8203;bun/types): number
type Parsed = typeof T.inferOut

v2.1.15

Compare Source

.configure({}, selector) fixes
const User = type({
	name: "string",
	platform: "'android' | 'ios'",
	"version?": "number | string"
})

// prior to 2.1.15, the selector was not applied
// when configuring references
const ConfiguredUser = User.configure(
	{ description: "A STRING" },
	{
		kind: "domain",
		where: d => d.domain === "string"
	}
)

// old: A STRING
// new: A STRING
ConfiguredUser.get("name").description

// old: A STRING
// new: "android" | "ios"
ConfiguredUser.get("platform").description

// old: A STRING or undefined
// new: a number, A STRING or undefined
ConfiguredUser.get("version").description

With the much more powerful .configure + selector API now available, the internal .withMeta method was removed as it can be trivially achieved via a self-selector:

// < 2.1.15
myType.withMeta("some shallow description")

// >= 2.1.15
myType.configure("some shallow description", "self")

v2.1.14

Compare Source

improve .expression for regex constraints
const t = type(/^a.*z$/)

// old: string /^a.*z$/
// new: /^a.*z$/
console.log(t.expression)

v2.1.13

Compare Source

Add standalone functions for n-ary operators
//  accept ...definitions
const union = type.or(type.string, "number", { key: "unknown" })

const base = type({
	foo: "string"
})

// accepts ...definitions
const intersection = type.and(
	base,
	{
		bar: "number"
	},
	{
		baz: "string"
	}
)

const zildjian = Symbol()

const base = type({
	"[string]": "number",
	foo: "0",
	[zildjian]: "true"
})

// accepts ...objectDefinitions
const merged = type.merge(
	base,
	{
		"[string]": "bigint",
		"foo?": "1n"
	},
	{
		includeThisPropAlso: "true"
	}
)

// accepts ...morphsOrTypes
const trimStartToNonEmpty = type.pipe(
	type.string,
	s => s.trimStart(),
	type.string.atLeastLength(1)
)

v2.1.12

Compare Source

exactOptionalPropertyTypes

By default, ArkType validates optional keys as if TypeScript's exactOptionalPropertyTypes is set to true.

const myObj = type({
	"key?": "number"
})

// valid data
const validResult = myObj({})

// Error: key must be a number (was undefined)
const errorResult = myObj({ key: undefined })

This approach allows the most granular control over optionality, as | undefined can be added to properties that should accept it.

However, if you have not enabled TypeScript's exactOptionalPropertyTypes setting, you may globally configure ArkType's exactOptionalPropertyTypes to false to match TypeScript's behavior. If you do this, we'd recommend making a plan to enable exactOptionalPropertyTypes in the future.

import { configure } from "arktype/config"

// since the default in ArkType is `true`, this will only have an effect if set to `false`
configure({ exactOptionalPropertyTypes: false })
import "./config.ts"
// import your config file before arktype
import { type } from "arktype"

const myObj = type({
	"key?": "number"
})

// valid data
const validResult = myObj({})

// now also valid data (would be an error by default)
const secondResult = myObj({ key: undefined })

WARNING: exactOptionalPropertyTypes does not yet affect default values!

const myObj = type({
	key: "number = 5"
})

// { key: 5 }
const omittedResult = myObj({})

// { key: undefined }
const undefinedResult = myObj({ key: undefined })

Support for this is tracked as part of this broader configurable defaultability issue.

v2.1.11

Compare Source

  • Expose select method directly on Type (previously was only available on .internal)
  • Improve missing property error messages

v2.1.10

Compare Source

Added a new select method for introspecting references of a node:

NOTE: @ark/schema's API is not semver stable, so this API may change slightly over time (though we will try to ensure it doesn't).

// extract deep references to exclusive `min` nodes
const result = myType.select({
	kind: "min",
	where: node => node.exclusive
})

These selectors can also be used to select references for configuration:

// configure string node references
const result = myType.configure(
	{ description: "a referenced string" },
	{
		kind: "domain",
		where: node => node.domain === "string"
	}
)
ArkErrors are now JSON stringifiable and have two new props: flatByPath and flatProblemsByPath.
const nEvenAtLeast2 = type({
	n: "number % 2 > 2"
})

const out = nEvenAtLeast2({ n: 1 })

if (out instanceof type.errors) {
	console.log(out.flatByPath)
	const output = {
		n: [
			{
				data: 1,
				path: ["n"],
				code: "divisor",
				description: "even",
				meta: {},
				rule: 2,
				expected: "even",
				actual: "1",
				problem: "must be even (was 1)",
				message: "n must be even (was 1)"
			},
			{
				data: 1,
				path: ["n"],
				code: "min",
				description: "at least 2",
				meta: {},
				rule: 2,
				expected: "at least 2",
				actual: "1",
				problem: "must be at least 2 (was 1)",
				message: "n must be at least 2 (was 1)"
			}
		]
	}

	console.log(out.flatProblemsByPath)
	const output2 = {
		n: ["must be even (was 1)", "must be at least 2 (was 1)"]
	}
}

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), 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.

Copy link
Contributor Author

renovate bot commented Mar 20, 2025

Branch automerge failure

This PR was configured for branch automerge. However, this is not possible, so it has been raised as a PR instead.


  • Branch has one or more failed status checks

@renovate renovate bot force-pushed the renovate/arktype-2.x branch from 56c259e to b13c059 Compare March 20, 2025 07:30
Copy link

pkg-pr-new bot commented Mar 20, 2025

Open in StackBlitz

npm i https://pkg.pr.new/mmkal/trpc-cli@64

commit: 9221d9b

@renovate renovate bot force-pushed the renovate/arktype-2.x branch 16 times, most recently from 9aa317f to db942c6 Compare March 22, 2025 10:25
@renovate renovate bot changed the title chore(deps): update dependency arktype to v2.1.10 chore(deps): update dependency arktype to v2.1.11 Mar 24, 2025
@renovate renovate bot force-pushed the renovate/arktype-2.x branch 2 times, most recently from 2eb9b7d to 8f9dc3e Compare March 24, 2025 17:14
@renovate renovate bot changed the title chore(deps): update dependency arktype to v2.1.11 chore(deps): update dependency arktype to v2.1.12 Mar 24, 2025
@renovate renovate bot force-pushed the renovate/arktype-2.x branch 2 times, most recently from 9faae02 to 53c6eee Compare March 24, 2025 22:01
@renovate renovate bot force-pushed the renovate/arktype-2.x branch 2 times, most recently from c504344 to 28c5f2d Compare March 26, 2025 02:29
@renovate renovate bot changed the title chore(deps): update dependency arktype to v2.1.12 chore(deps): update dependency arktype to v2.1.13 Mar 26, 2025
@renovate renovate bot force-pushed the renovate/arktype-2.x branch from 28c5f2d to 99777ed Compare March 26, 2025 02:31
@renovate renovate bot force-pushed the renovate/arktype-2.x branch 3 times, most recently from 037cfc3 to 74fca0d Compare March 26, 2025 13:06
@renovate renovate bot changed the title chore(deps): update dependency arktype to v2.1.13 chore(deps): update dependency arktype to v2.1.15 Mar 27, 2025
@renovate renovate bot force-pushed the renovate/arktype-2.x branch 8 times, most recently from b24a59c to cbbdf07 Compare March 31, 2025 23:13
@renovate renovate bot changed the title chore(deps): update dependency arktype to v2.1.15 chore(deps): update dependency arktype to v2.1.16 Apr 1, 2025
@renovate renovate bot force-pushed the renovate/arktype-2.x branch 7 times, most recently from 5d9ff70 to ccab740 Compare April 2, 2025 02:11
@renovate renovate bot force-pushed the renovate/arktype-2.x branch from ccab740 to 9221d9b Compare April 2, 2025 08:55
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants