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 contains the following updates:
3.0.23
->3.0.24
14.2.1
->14.2.2
14.2.1
->14.2.2
1.20.0
->1.23.2
4.36.0
->4.38.2
v1.25.0
->v1.26.0
3.22.4
->3.23.0
Release Notes
vercel/ai (ai)
v3.0.24
Compare Source
Patch Changes
e94fb32
: feat(ai/rsc): MakeonSetAIState
andonGetUIState
stablevercel/next.js (eslint-config-next)
v14.2.2
Compare Source
vercel/next.js (next)
v14.2.2
Compare Source
openai/openai-python (openai)
v1.23.2
Compare Source
Full Changelog: v1.23.1...v1.23.2
Bug Fixes
v1.23.1
Compare Source
Full Changelog: v1.23.0...v1.23.1
Bug Fixes
v1.23.0
Compare Source
Full Changelog: v1.22.0...v1.23.0
Features
Documentation
v1.22.0
Compare Source
Full Changelog: v1.21.2...v1.22.0
Features
Chores
v1.21.2
Compare Source
Full Changelog: v1.21.1...v1.21.2
Chores
v1.21.1
Compare Source
Full Changelog: v1.21.0...v1.21.1
Chores
v1.21.0
Compare Source
Full Changelog: v1.20.0...v1.21.0
Features
openai/openai-node (openai)
v4.38.2
Compare Source
Full Changelog: v4.38.1...v4.38.2
Bug Fixes
v4.38.1
Compare Source
Full Changelog: v4.38.0...v4.38.1
Bug Fixes
v4.38.0
Compare Source
Full Changelog: v4.37.1...v4.38.0
Features
v4.37.1
Compare Source
Full Changelog: v4.37.0...v4.37.1
Chores
v4.37.0
Compare Source
Full Changelog: v4.36.0...v4.37.0
Features
slackapi/slack-github-action (slackapi/slack-github-action)
v1.26.0
: Slack Send V1.26.0Compare Source
What's Changed
This release provides an escape hatch for sending the JSON content of a payload file exactly as is, without replacing any templated variables!
Previously a payload file was parsed and templated variables were replaced with values from
github.context
andgithub.env
. Any undefined variables were replaced with???
in this process, which might have caused questions.That remains the default behavior, but now the JSON contents of a payload file can be sent exactly as written by setting the
payload-file-path-parsed
input tofalse
:With this change, the contents of the example
payload-slack-content.json
will be sent to a webhook URL exactly as is!Recent commits
Enhancements
Documentation
Maintenance
Dependencies
New Contributors
Full Changelog: slackapi/slack-github-action@v1.25.0...v1.26.0
colinhacks/zod (zod)
v3.23.0
Compare Source
Zod 3.23 is now available. This is the final
3.x
release before Zod 4.0. To try it out:Features
z.string().date()
Zod can now validate ISO 8601 date strings. Thanks @igalklebanov! https://github.com/colinhacks/zod/pull/1766
z.string().time()
Zod can now validate ISO 8601 time strings. Thanks @igalklebanov! https://github.com/colinhacks/zod/pull/1766
You can specify sub-second precision using the
precision
option:z.string().duration()
Zod can now validate ISO 8601 duration strings. Thanks @mastermatt! https://github.com/colinhacks/zod/pull/3265
Improvements to
z.string().datetime()
Thanks @bchrobot https://github.com/colinhacks/zod/pull/2522
You can now allow unqualified (timezone-less) datetimes using the
local: true
flag.Plus, Zod now validates the day-of-month correctly to ensure no invalid dates (e.g. February 30th) pass validation. Thanks @szamanr! https://github.com/colinhacks/zod/pull/3391
z.string().base64()
Zod can now validate base64 strings. Thanks @StefanTerdell! https://github.com/colinhacks/zod/pull/3047
Improved discriminated unions
The following can now be used as discriminator keys in
z.discriminatedUnion()
:ZodOptional
ZodNullable
ZodReadonly
ZodBranded
ZodCatch
Misc
Breaking changes
There are no breaking changes to the public API of Zod. However some changes can impact ecosystem tools that rely on Zod internals.
ZodFirstPartySchemaTypes
Three new types have been added to the
ZodFirstPartySchemaTypes
union. This may impact some codegen libraries. https://github.com/colinhacks/zod/pull/3247Default generics in
ZodType
The third argument of the
ZodType
base class now defaults tounknown
. This makes it easier to define recursive schemas and write generic functions that accept Zod schemas.Unrecognized keys in
.pick()
and.omit()
This version fixes a bug where unknown keys were accidentally accepted in
.pick()
andomit()
. This has been fixed, which could cause compiler errors in some user code. https://github.com/colinhacks/zod/pull/3255Bugfixes and performance
ZodFirstPartySchemaTypes
by @MatthijsMud in https://github.com/colinhacks/zod/pull/3247input
of.required()
readonly by @KATT in https://github.com/colinhacks/zod/pull/3301addQuestionMarks
, fix #2184 by @colinhacks in https://github.com/colinhacks/zod/pull/3352src
forbun test
by @rotu in https://github.com/colinhacks/zod/pull/3038Docs and ecosystem
zod-dev
utility to eco-system section by @schalkventer in https://github.com/colinhacks/zod/pull/3113orval
to "X to Zod" ecosystems by @soartec-lab in https://github.com/colinhacks/zod/pull/3397New Contributors
Full Changelog: colinhacks/zod@v3.22.4...v3.23.0
v3.22.5
Compare Source
Configuration
📅 Schedule: Branch creation - "before 4am on Monday" in timezone America/Chicago, Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR has been generated by Mend Renovate. View repository job log here.