-
-
Notifications
You must be signed in to change notification settings - Fork 2
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
fix(deps): update all non-major dependencies #360
Merged
Merged
Conversation
This file contains 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
renovate
bot
added
automerge
Enable Kodiak auto-merge
dependencies
Change in project dependencies.
labels
Mar 7, 2024
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
📦 Next.js Bundle Analysis for @weareinreach/glaadThis analysis was generated by the Next.js Bundle Analysis action. 🤖 This PR introduced no changes to the JavaScript bundle! 🙌 |
renovate
bot
changed the title
chore(deps): update dependency @types/react-dom to v18.2.21
chore(deps): update all non-major dependencies
Mar 7, 2024
renovate
bot
force-pushed
the
renovate/all-minor-patch
branch
from
March 7, 2024 10:16
020da7b
to
0bf8f2b
Compare
renovate
bot
force-pushed
the
renovate/all-minor-patch
branch
from
March 7, 2024 20:10
0bf8f2b
to
5e754f7
Compare
renovate
bot
force-pushed
the
renovate/all-minor-patch
branch
from
March 8, 2024 01:26
5e754f7
to
57681f3
Compare
renovate
bot
force-pushed
the
renovate/all-minor-patch
branch
from
March 8, 2024 08:15
57681f3
to
00229e3
Compare
renovate
bot
force-pushed
the
renovate/all-minor-patch
branch
from
March 8, 2024 16:29
00229e3
to
eb24ce8
Compare
renovate
bot
force-pushed
the
renovate/all-minor-patch
branch
from
March 8, 2024 19:52
eb24ce8
to
fc15031
Compare
👍 Dependency issues cleared. Learn more about Socket for GitHub ↗︎ This PR previously contained dependency changes with security issues that have been resolved, removed, or ignored. |
renovate
bot
force-pushed
the
renovate/all-minor-patch
branch
from
March 9, 2024 19:58
fc15031
to
1304d7c
Compare
renovate
bot
force-pushed
the
renovate/all-minor-patch
branch
from
March 10, 2024 01:50
1304d7c
to
ea40590
Compare
renovate
bot
changed the title
chore(deps): update all non-major dependencies
fix(deps): update all non-major dependencies
Mar 11, 2024
renovate
bot
force-pushed
the
renovate/all-minor-patch
branch
from
March 11, 2024 11:18
ea40590
to
461e3d5
Compare
renovate
bot
force-pushed
the
renovate/all-minor-patch
branch
from
March 11, 2024 18:49
461e3d5
to
0072cc4
Compare
renovate
bot
force-pushed
the
renovate/all-minor-patch
branch
from
March 11, 2024 22:57
0072cc4
to
d298642
Compare
renovate
bot
force-pushed
the
renovate/all-minor-patch
branch
from
March 12, 2024 04:13
d298642
to
a62acbb
Compare
renovate
bot
force-pushed
the
renovate/all-minor-patch
branch
from
March 12, 2024 13:51
a62acbb
to
4207b77
Compare
renovate
bot
force-pushed
the
renovate/all-minor-patch
branch
from
March 13, 2024 12:52
4207b77
to
a67ada5
Compare
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
renovate
bot
force-pushed
the
renovate/all-minor-patch
branch
from
March 13, 2024 17:59
a67ada5
to
09ac513
Compare
JoeKarow
approved these changes
Mar 13, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
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:
5.10.2
->5.11.0
5.10.2
->5.11.0
10.45.1
->10.45.2
10.45.1
->10.45.2
10.45.1
->10.45.2
10.45.1
->10.45.2
20.11.25
->20.11.27
18.2.64
->18.2.65
18.2.20
->18.2.22
7.1.1
->7.2.0
7.1.1
->7.2.0
11.0.4
->11.0.8
7.3.0
->7.4.1
0.25.0
->0.26.0
23.10.0
->23.10.1
5.10.2
->5.11.0
14.0.8
->14.1.0
4.11.1
->4.12.0
Release Notes
prisma/prisma (@prisma/adapter-neon)
v5.11.0
Compare Source
Today, we are excited to share the
5.11.0
stable release 🎉🌟 Help us spread the word about Prisma by starring the repo ☝️ or posting on X about the release.
Highlights
Edge function support for Cloudflare and Vercel (Preview)
We’re thrilled to announce that support for edge function deployments with Prisma ORM is now in Preview 🥳 As of this release, you can deploy your apps that are using Prisma ORM to:
In order to deploy to an edge function, you’ll need to use a compatible database driver (along with its Prisma driver adapter):
pg
driver (for traditional PostgreSQL databases)@libsql/client
driver (for SQLite databases hosted via Turso)Check out our documentation to learn how you can deploy an edge function using any combination of supported edge function provider and database.
You can also read more about it in the announcement blog post!
Performance improvements in nested
create
operationsWith Prisma ORM, you can create multiple new records in nested queries, for example:
In previous versions, Prisma ORM would translate this into multiple SQL
INSERT
queries, each requiring its own roundtrip to the database. As of this release, these nestedcreate
queries are optimized and theINSERT
queries are sent to the database in bulk in a single roundtrip. These optimizations apply to one-to-many as well as many-to-many relations.With this change, using the nested
create
option to create multiple records effectively becomes equivalent to using a nestedcreateMany
operation (except thatcreateMany
only works with one-to-many relations, whereascreate
works both with one-to-many and many-to-many).Fixes and improvements
Prisma Client
console.log(new PrismaClient())
enum
throws error (collationcp1250_czech_cs
or similar)NOT
condition leaks out of its desired boundsPrismaClient
object is slowprisma generate
on Litespeed Web Server cPanel with sshtsc
:Cannot find namespace 'debug'.
push
method still unimplemented for scalar lists in CockroachDBInvalid character
error persists on 5.10.1 in Prisma StudioruntimeDescription
is not defined errorPrisma Migrate
npx prisma db pull
with DeepinOS 20.9GNU/LInuxLinux Mint
Error: Invalid character
whenschema.prisma
includes Chinese/Non-ASCII characters in a commentPrisma Engines
trpc/trpc (@trpc/client)
v10.45.2
Compare Source
trpc/trpc (@trpc/next)
v10.45.2
Compare Source
What's Changed
Full Changelog: trpc/trpc@v10.45.1...v10.45.2
trpc/trpc (@trpc/react-query)
v10.45.2
Compare Source
trpc/trpc (@trpc/server)
v10.45.2
Compare Source
typescript-eslint/typescript-eslint (@typescript-eslint/eslint-plugin)
v7.2.0
Compare Source
🚀 Features
support TS 5.4
eslint-plugin: [prefer-string-starts-ends-with] add allowSingleElementEquality option
🩹 Fixes
eslint-plugin: expose *-type-checked-only configs for extension
eslint-plugin: [member-ordering] report alphabetical sorting for all groups instead of just the first failing group
eslint-plugin: [no-var-requires, no-require-imports] support template literal
eslint-plugin: [no-useless-template-literals] detect TemplateLiteral
eslint-plugin: [no-unnecessary-condition] handle union array and tuple type
eslint-plugin: [prefer-find] support ternary branches in prefer-find
❤️ Thank You
You can read about our versioning strategy and releases on our website.
typescript-eslint/typescript-eslint (@typescript-eslint/parser)
v7.2.0
Compare Source
🚀 Features
❤️ Thank You
You can read about our versioning strategy and releases on our website.
chromaui/chromatic-cli (chromatic)
v11.0.8
Compare Source
🐛 Bug Fix
Authors: 1
v11.0.7
Compare Source
🐛 Bug Fix
Authors: 1
v11.0.6
Compare Source
🐛 Bug Fix
Authors: 1
v11.0.5
Compare Source
🐛 Bug Fix
Authors: 1
entropitor/dotenv-cli (dotenv-cli)
v7.4.1
Compare Source
v7.4.0
: Release better variable usage (-v
)Compare Source
Releases https://github.com/entropitor/dotenv-cli/pull/105
mmkal/eslint-plugin-codegen (eslint-plugin-codegen)
v0.26.0
Compare Source
d72b314
b88e660
i18next/i18next (i18next)
v23.10.1
Compare Source
i18next/react-i18next (react-i18next)
v14.1.0
Compare Source
Trans
): add typechecking on context prop 1732 (might brake if using "internal"Trans
orTransProps
)sindresorhus/type-fest (type-fest)
v4.12.0
Compare Source
New types
ArraySlice
StringSlice
IsNegative
GreaterThan
GreaterThanOrEqual
LessThan
LessThanOrEqual
Sum
Subtract
Configuration
📅 Schedule: Branch creation - "before 4am on Monday,before 4am on Thursday" (UTC), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR is behind base branch, 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.