This repository has been archived by the owner on Dec 12, 2024. It is now read-only.
chore(deps): update all non-major dependencies #335
Merged
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:
13.4.3
->13.4.4
^4.14.1
->^4.15.0
^2.3.0
->^2.3.1
^16.0.3
->^16.1.3
^2.2.9
->^2.4.1
^10.12.12
->^10.12.16
^13.4.3
->^13.4.4
^3.8.2
->^3.9.0
^1.1.1
->^1.2.0
Release Notes
vercel/next.js
v13.4.4
Compare Source
Core Changes
x-forwarded-*
headers to turbopack renders: #50012init.defaultBranch
git con…: #49960swc_core
tov0.76.18
: #50137draftMode
type to GetServerSidePropsContext: #50184node
condition to import resolution: #50007process.env
: #50260_devMiddlewareManifest.json
from router: #50241Documentation Changes
Example Changes
Misc Changes
Credits
Huge thanks to @kwonoj, @wyattjoh, @shuding, @huozhi, @jridgewell, @ijjk, @karlhorky, @lycuid, @MarkAtOmniux, @darshkpatel, @johnta0, @kdy1, @sokra, @timneutkens, @devagrawal09, @ibrahemid, @styfle, @JesseKoldewijn, @padmaia, @Cow258, @javivelasco, and @05lazy for helping!
prisma/prisma
v4.15.0
Compare Source
🌟 Help us spread the word about Prisma by starring the repo or tweeting about the release. 🌟
Highlights
For this release, we focused on fixing bugs and making smaller quality-of-life improvements.
Support for custom arguments for
prisma db seed
This release adds support for defining and passing arbitrary arguments to
prisma db seed
. This creates the opportunity for you to define your own arguments in your seed file that you could pass to theprisma db seed
command. A few example use-cases include, but are not limited to:Here is an example
seed.ts
file that defines custom arguments for seeding different data in different environments:You can then provide the
environment
argument when executing the seed script as follows:Let us know what you think, share example usage of this feature, and create a bug report if you run into any issues.
Improved error messages when Query Engine file is not found
This release improves the error messages returned by Prisma Client when the Query Engine file is not found. A few reasons the Query Engine file might be missing from your application bundle include when:
We hope these error messages are helpful while debugging your application.
Prisma VS Code extension improvements
In this release, we made a few improvements to our VS Code extension:
Updated the file system watcher that is responsible for restarting the TypeScript server when
prisma generate
is run to ensure the types are in syncAdded Quick Fixes action for unique identifiers for MongoDB to add the
@map("_id")
attribute function when it’s missing on an identifier fieldScreen.Recording.2023-05-17.at.19.22.20.mov
Support for renaming symbols for composite types and views
type-symbol-rename.mov
Fixes and improvements
Prisma Client
Error: write EPIPE
on WSL <-> Windowsprisma generate
is blocked byquery-engine-rhel-openssl-1.0.x
opening in Notepad on Windowsnode_modules
(from another platform) leads to platform engine not being presentoutput
Query engine library for current platform "rhel-openssl-1.0.x" could not be found. You incorrectly pinned it to rhel-openssl-1.0.x
Cannot find name '$PrismaModel'
due to featureextendedWhereUnique
with preview featurefieldReference
Date
values silently turn intonulls
fieldReference
is not working with enumsPrisma Migrate
prisma db seed
to the seed commandLanguage tools (e.g. VS Code)
@map("_id")
annotationCredits
Huge thanks to @RobertCraigie, @KhooHaoYit, @art049, @luxaritas, @mrazauskas, @maxmartynov, @haneenmahd for helping!
📺 Join us for another "What's new in Prisma" live stream
Learn about the latest release and other news from the Prisma community by joining us for another "What's new in Prisma" live stream.
The stream takes place on YouTube on Thursday, June 1 at 5 pm Berlin | 8 am San Francisco.
kelektiv/node-cron
v2.3.1
Compare Source
Added
Fixed
motdotla/dotenv
v16.1.3
Compare Source
Removed
browser
keys forpath
,os
, andcrypto
in package.json. These were set to false incorrectly as of 16.1. Instead, if using dotenv on the front-end make sure to include polyfills forpath
,os
, andcrypto
. node-polyfill-webpack-plugin provides these.v16.1.2
Compare Source
Changed
_configDotenv
asconfigDotenv
. #744v16.1.1
Compare Source
Added
decrypt
functionChanged
{crypto: false}
inpackageJson.browser
v16.1.0
Compare Source
Added
populate
convenience method #733npm fund
command.env.vault
support. 🎉 (#730)ℹ️
.env.vault
extends the.env
file format standard with a localized encrypted vault file. Package it securely with your production code deploys. It's cloud agnostic so that you can deploy your secrets anywhere – without risky third-party integrations. read moreChanged
formium/formik
v2.4.1
Compare Source
Patch Changes
2b194c2
#3808 Thanks @NagaiKoki! - fix type of setFieldValue function708bcb2
#3813 Thanks @probablyup! - RevertFieldArray
"shouldComponentUpdate" performance optimization. As it turns out, it's a common use case to have JSX controlled via non-Formik state/props inside ofFieldArray
, so it's not safe to cancel re-renders here.187e47d
#3815 Thanks @probablyup! - Revert Yup transform support for the time being, this may be re-introduced in a future release under an opt-in prop.v2.4.0
Compare Source
Minor Changes
2f53b70
#3796 Thanks @probablyup! - Add support for Yup "transforms".v2.3.3
Compare Source
Patch Changes
f075a0c
#3798 Thanks @probablyup! - Fixed the use of generics for theArrayHelpers
type such thatany[]
is the default array type and for each individual method the array item type can be overridden if necessary.v2.3.2
Compare Source
Patch Changes
f086b5a
#3237 Thanks @pieplu! - ChangedgetIn
to return undefined when it can't find a value AND a parent of that value is "falsy" ( "" / 0 / null / false )6d8f018
#3792 Thanks @probablyup! - Update the type forsetFieldValue
to reflect the returnedPromise
and potential returned error(s).v2.3.0
Compare Source
Minor Changes
73de78d
#3788 Thanks @probablyup! - Added typescript generics toArrayHelpers
interface and its methods so that users who use TypeScript can set the type for their arrays and have type safety on array utils. I have also gone ahead and made supplying a type for the generic optional for the sake of backwards compatibility so any existing TS code that does not give a type for the FieldArray will continue to work as they always have.39a7bf7
#3786 Thanks @probablyup! - Yup by default only allows for cross-field validation within thesame field object. This is not that useful in most scenarios because
a sufficiently-complex form will have several
yup.object()
in theschema.
However, Yup offers something called
context
which can operate acrossthe entire schema when using a \$ prefix:
With this change, you may now validate against any field in the entire schema,
regardless of position when using the \$ prefix.
v2.2.10
Compare Source
Patch Changes
22e236e
#3784 Thanks @probablyup! - Improve performance of theFieldArray
component by adding ashouldComponentUpdate
check; this should help avoid unnecessary re-renders which may affect the performance of a form.bc9cb28
#3785 Thanks @probablyup! - Fixed field error state for array fields that have an error and become empty through an API likearrayHelpers.remove
.The prior behavior resolved the field error to
[undefined]
, now it is simplyundefined
.9cbf150
#3787 Thanks @probablyup! - Fix infinite loop issue inField
when field helpers (setTouched
, etc) are used as an argument inReact.useEffect
.9c75a9f
#3780 Thanks @probablyup! - Fixed an issue with array field errors being incorrectly split into an array of individual characters instead of an array of error strings.35fa4cc
#3783 Thanks @probablyup! - Fix validation of deep.dot.path field references when using thevalidateField
API.framer/motion
v10.12.16
Compare Source
Fixed
translateX
/translateY
.v10.12.15
Compare Source
Fixed
layout
prop andanimate()
.resolveConstraints
.v10.12.14
Compare Source
Fixed
layout
components animate correctly on the first re-render.v10.12.13
Compare Source
Fixed
winstonjs/winston
v3.9.0
Compare Source
Functionality changes
Dependency updates by @dependabot + CI autotesting
Documentation changes
Build Infrastructure changes
jquense/yup
v1.2.0
Compare Source
Features
default(options => value)
(e5c5440), closes #19841.1.1 (2023-04-14)
Bug Fixes
Configuration
📅 Schedule: Branch creation - "before 12pm on Sunday" (UTC), 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.