-
-
Notifications
You must be signed in to change notification settings - Fork 4
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(): update all non-major dependencies #1306
Conversation
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
Important Review skippedBot user detected. To trigger a single review, invoke the You can disable this status message by setting the Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (invoked as PR comments)
Additionally, you can add CodeRabbit Configration File (
|
New and removed dependencies detected. Learn more about Socket for GitHub ↗︎
|
📦 Next.js Bundle Analysis for @weareinreach/appThis analysis was generated by the Next.js Bundle Analysis action. 🤖 Four Pages Changed SizeThe following pages changed size from the code in this PR compared to its base branch:
DetailsOnly the gzipped size is provided here based on an expert tip. First Load is the size of the global bundle plus the bundle for the individual page. If a user were to show up to your website and land on a given page, the first load size represents the amount of javascript that user would need to download. If Any third party scripts you have added directly to your app using the The "Budget %" column shows what percentage of your performance budget the First Load total takes up. For example, if your budget was 100kb, and a given page's first load size was 10kb, it would be 10% of your budget. You can also see how much this has increased or decreased compared to the base branch of your PR. If this percentage has increased by 20% or more, there will be a red status indicator applied, indicating that special attention should be given to this. If you see "+/- <0.01%" it means that there was a change in bundle size, but it is a trivial enough amount that it can be ignored. |
#722 Bundle Size — 3.58MiB (+1.29%).Important Bundle introduced 2 duplicate packages – View changed duplicate packages Bundle metrics
|
Current #722 |
Baseline #715 |
|
---|---|---|
Initial JS | 3.19MiB (+1.46% ) |
3.14MiB |
Initial CSS | 9.54KiB |
9.54KiB |
Cache Invalidation | 65.28% |
35.88% |
Chunks | 68 (-2.86% ) |
70 |
Assets | 81 (-2.41% ) |
83 |
Modules | 2035 (-0.39% ) |
2043 |
Duplicate Modules | 257 (-3.75% ) |
267 |
Duplicate Code | 7.09% (-4.19% ) |
7.4% |
Packages | 219 (+0.92% ) |
217 |
Duplicate Packages | 8 (+33.33% ) |
6 |
Bundle size by type 2 changes
1 regression
1 improvement
Current #722 |
Baseline #715 |
|
---|---|---|
JS | 3.46MiB (+1.34% ) |
3.42MiB |
Fonts | 94.54KiB |
94.54KiB |
Other | 9.57KiB (-0.13% ) |
9.58KiB |
CSS | 9.54KiB |
9.54KiB |
IMG | 8.57KiB |
8.57KiB |
Bundle analysis report Branch renovate/all-minor-patch Project dashboard
Edited/Blocked NotificationRenovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR. You can manually request rebase by checking the rebase/retry box above. |
Quality Gate passedIssues Measures |
This PR contains the following updates:
2.27.5
->2.27.6
1.1.106
->1.1.107
1.44.1
->1.45.0
5.15.1
->5.16.0
5.15.1
->5.16.0
5.15.1
->5.16.0
7.117.0
->7.118.0
7.117.0
->7.118.0
7.117.0
->7.118.0
7.117.0
->7.118.0
7.117.0
->7.118.0
0.18.2
->0.19.0
1.6.3
->1.6.5
2.0.4
->2.0.5
20.14.6
->20.14.8
7.13.1
->7.14.1
7.13.1
->7.14.1
0.8.0
->0.9.0
2.0.4
->2.0.5
5.22.0
->5.23.0
8.2.2
->8.2.3
5.15.1
->5.16.0
0.8.4
->0.9.0
4.15.6
->4.15.7
2.0.4
->2.0.5
5.4.5
->5.5.2
Release Notes
changesets/changesets (@changesets/cli)
v2.27.6
Compare Source
Patch Changes
#1392
f295b3e
Thanks @bluwy! - Replacemeow
dependency withmri
to reduce the number of transitive dependencies#1390
6a3452e
Thanks @bluwy! - Displaychangeset status --verbose
in list form and removetty-table
dependencymicrosoft/playwright (@playwright/test)
v1.45.0
Compare Source
prisma/prisma (@prisma/client)
v5.16.0
Compare Source
🌟 Help us spread the word about Prisma by starring the repo or tweeting about the release. 🌟
Highlights
Omit model fields globally
With Prisma ORM 5.16.0 we’re more than happy to announce that we’re expanding the
omitApi
Preview feature to also include the ability to omit fields globally.When the Preview feature is enabled, you’re able to define fields to omit when instantiating Prisma Client.
You’re also able to omit fields from multiple models and multiple fields from the same model
With both local and global
omit
, you now have the flexibility to completely remove sensitive fields while also tailoring individual queries. If you need the ability to generally omit a field except in a specific query, you can also overwrite a global omit locallyChanges to
prismaSchemaFolder
In
5.15.0
we released theprismaSchemaFolder
Preview feature, allowing you to create multiple Prisma Schema files in aprisma/schema
directory. We’ve gotten a lot of great feedback and are really excited with how the community has been using the feature.To continue improving our multi-file schema support, we have a few breaking changes to the
prismaSchemaFolder
feature:prismaSchemaFolder
feature, a path is now relative to the file it is defined in rather than relative to theprisma/schema
folder. This means that if you have a generator block in/project/prisma/schema/config/generator.prisma
with anoutput
of./foo
the output will be resolved to/project/prisma/schema/config/foo
rather than/project/prisma/foo
. The path to a SQLite file will be resolved in the same manner.prisma/schema
as well asprisma/schema.prisma
. Our initial implementation looked for a.prisma
file first and would ignore theschema
folder if it exists. This is now an error.Changes to
fullTextSearch
In order to improve our full-text search implementation we have made a breaking change to the
fullTextSearch
Preview feature.Previously, when the feature was enabled we updated the
<Model>OrderByWithRelationInput
TypeScript type with the<Model>OrderByWithRelationAndSearchRelevanceInput
type. However, we have noted that there are no cases where relational ordering is needed but search relevance is not. Thus, we have decided to remove the<Model>OrderByWithRelationAndSearchRelevanceInput
naming and only use the<Model>OrderByWithRelationInput
naming.Fixes and improvements
Prisma
Prisma has no exported member named OrderByWithRelationInput. Did you mean OrderByWithAggregationInput?
prisma generate
@prisma/adapter-pg
modifies node-postgres global type parsersdb pull
fails with[libs\user-facing-errors\src\quaint.rs:136:18] internal error: entered unreachable code
on invalid credentialsLanguage tools (e.g. VS Code)
Prisma Engines
Credits
Huge thanks to @key-moon, @pranayat, @yubrot, @skyzh, @brian-dlee, @mydea, @nickcarnival, @eruditmorina, @nzakas, @gutyerrez, @avallete, @ceddy4395, @Kayoshi-dev, @yehonatanz for helping!
getsentry/sentry-javascript (@sentry/browser)
v7.118.0
Compare Source
window.Sentry
(#12579)storybookjs/test-runner (@storybook/test-runner)
v0.19.0
Compare Source
swc-project/swc (@swc/core)
v1.6.5
Compare Source
v1.6.4
Compare Source
Features
(cli) Support generating
.d.ts
files (#9097) (e71b6d3)(common) Add fallible methods to
swc_common::SourceMap
(#9090) (e423d1b)(es/transform) Add experimental
.d.ts
generation (#9093) (51a2702)(swc_core) Reexport
swc_typescript
(#9092) (a2645e2)(typescript) Implement Isolated Declaration (#9086) (a855159)
Miscellaneous Tasks
sha-1
withsha1
(#9091) (5a2c968)Performance
(es/lexer) Apply various optimizations (#9095) (2f02630)
(es/lexer) Use
memchr::memmem
for lexing block comments (#9096) (1b3672f)Refactor
EsConfig
andTsConfig
(#9094) (5520b23)vercel/turbo (@turbo/gen)
v2.0.5
Compare Source
typescript-eslint/typescript-eslint (@typescript-eslint/eslint-plugin)
v7.14.1
Compare Source
🩹 Fixes
eslint-plugin: [prefer-nullish-coalescing] treat enums and literals as their underlying primitive types
eslint-plugin: [prefer-nullish-coalescing] ensure ternary fix does not remove parens
❤️ Thank You
You can read about our versioning strategy and releases on our website.
v7.14.0
Compare Source
🚀 Features
🩹 Fixes
eslint-plugin: [no-extraneous-class] handle abstract members
eslint-plugin: [prefer-nullish-coalescing] handle intersected primitive types
eslint-plugin: [no-invalid-this] support AccessorProperty
❤️ Thank You
You can read about our versioning strategy and releases on our website.
typescript-eslint/typescript-eslint (@typescript-eslint/parser)
v7.14.1
Compare Source
This was a version bump only for parser to align it with other projects, there were no code changes.
You can read about our versioning strategy and releases on our website.
v7.14.0
Compare Source
🚀 Features
❤️ Thank You
You can read about our versioning strategy and releases on our website.
vercel/storage (@vercel/postgres-kysely)
v0.9.0
Compare Source
Patch Changes
30fe8d0
]vercel/turbo (eslint-plugin-turbo)
v2.0.5
: Turborepo v2.0.5Compare Source
What's Changed
create-turbo
@turbo/codemod
Examples
Changelog
New Contributors
Full Changelog: vercel/turborepo@v2.0.4...v2.0.5
webpro-nl/knip (knip)
v5.23.0
Compare Source
v5.22.3
Compare Source
4cf1337
)b98c5b9
)e906674
)71de7f1
)v5.22.2
Compare Source
d1261c1
)a4111fe
)v5.22.1
Compare Source
e15da45
)require()
import with ts ext to commonjs fixture (#681) (0c56610
)1343826
)67404f3
)listr2/listr2 (listr2)
v8.2.3
Compare Source
listr2 8.2.3 (2024-06-21)
Bug Fixes
QuiiBz/sherif (sherif)
v0.9.0
Compare Source
What's Changed
multiple-dependency-versions
autofix by @QuiiBz in https://github.com/QuiiBz/sherif/pull/66Full Changelog: QuiiBz/sherif@v0.8.4...v0.9.0
privatenumber/tsx (tsx)
v4.15.7
Compare Source
Bug Fixes
This release is also available on:
vercel/turbo (turbo)
v2.0.5
Compare Source
Microsoft/TypeScript (typescript)
v5.5.2
Compare Source
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), 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.