Update all non-major dependencies #90
Open
+1,186
−920
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:
^0.5.0
->^0.5.1
^2.27.12
->^2.28.1
^4.20250204.0
->^4.20250224.0
^7.16.3
->^7.17.0
^7.16.3
->^7.17.0
^7.16.3
->^7.17.0
^7.16.3
->^7.17.0
^7.16.3
->^7.17.0
^7.16.3
->^7.17.0
^7.16.3
->^7.17.0
^6.3.1
->^6.4.1
^6.3.1
->^6.4.1
^7.1.5
->^7.2.0
^7.1.5
->^7.2.0
^7.1.5
->^7.2.0
^3.1.2
->^3.2.1
^3.1.2
->^3.2.1
11.0.0-rc.764
->11.0.0-rc.819
^22.13.1
->^22.13.7
^19.0.8
->^19.0.10
^19.0.3
->^19.0.4
^8.24.0
->^8.25.0
^8.24.0
->^8.25.0
^9.20.1
->^9.21.0
^10.0.1
->^10.0.2
^3.7.0
->^3.8.3
^5.1.0
->^5.2.0
^4.7.0
->^4.7.2
^5.1.22
->^5.1.23
^3.20250204.0
->^3.20250214.1
10.3.0
->10.5.2
^8.5.2
->^8.5.3
3.5.0
->3.5.2
^6.3.1
->^6.4.1
^5.4.0
->^5.5.0
^7.1.5
->^7.2.0
^1.1.4
->^1.1.6
^29.2.5
->^29.2.6
^2.4.1
->^2.4.4
^5.7.3
->^5.8.2
^6.1.0
->^6.2.0
^3.108.1
->^3.111.0
3.108.1
->3.111.0
Release Notes
changesets/changesets (@changesets/changelog-github)
v0.5.1
Compare Source
Patch Changes
84a4a1b
]:cloudflare/workerd (@cloudflare/workers-types)
v4.20250224.0
Compare Source
v4.20250214.0
Compare Source
mantinedev/mantine (@mantine/code-highlight)
v7.17.0
: 🌶️Compare Source
View changelog with demos on mantine.dev website
Last 7.x minor release
This is the last minor release in the
7.x
series. The next release will be8.0
with breaking changes and new features.You are welcome to review the changelog/code and provide feedback and bug reports in Discord or GitHub discussions:
How to update your project dependencies to the new alpha version:
package.json
@mantine/
packages@mantine/
packages to8.0.0-alpha.0
yarn
ornpm install
Important notes:
Portal reuseTargetNode prop
Portal component now supports
reuseTargetNode
prop which allows to reuse the same target node for all instances.This option is more performant than the previous behavior, it is recommended to be enabled.
This option will be enabled by default in the
8.0
major release.To enable reuseTargetNode option in all components that depend on Portal, add the following code
to your theme:
Example usage. In the following example, all three paragraphs will be rendered in the same target node:
use-form formRootRule
formRootRule
is a special rule path that can be used to validate objects and arraysalongside with their nested fields. For example, it is useful when you want to capture
a list of values, validate each value individually and then validate the list itself
to not be empty:
Another example is to validate an object fields combination:
isJSONString and isNotEmptyHTML form validators
New
isJSONString
andisNotEmptyHTML
form validators:isNotEmptyHTML
checks that form value is not an empty HTML string. Empty string, string with only HTML tags and whitespace are considered to be empty.isJSONString
checks that form value is a valid JSON string.Popover onDismiss
Popover now supports
onDismiss
prop, which makes it easierto subscribe to outside clicks and escape key presses to close popover:
MantineProvider env
MantineProvider component now supports
env
prop.It can be used in test environment to disable some features that
might impact tests and/or make it harder to test components:
To enable test environment, set
env
totest
:use-file-dialog hook
New use-file-dialog allows capturing one or more files from the user
without file input element:
Remix deprecation
Remix is deprecated, the documentation related to Remix integration
was removed, use React Router instead. To simplify maintenance,
Remix/React Router templates were archived and will not be updated.
Help center updates
Other changes
middlewares
overscrollBehavior
proptheme.spacing
values forposition
propunderline="not-hover"
option to display underline only when the link is not hoveredprisma/prisma (@prisma/adapter-d1)
v6.4.1
Compare Source
Today, we are issuing the 6.4.1 patch release. It fixes a few issues with the NPS survey and makes it respect the
--no-hints
CLI flag.Fixes
Prisma CLI
v6.4.0
Compare Source
Today, we are excited to share the
6.4.0
stable release 🎉🌟 Help us spread the word about Prisma by starring the repo ☝️ or tweeting about the release. 🌟
Highlights
TypeScript-based configuration with
prisma.config.ts
(Early Access)In this release, we're introducing an Early Access version of a TypeScript-based configuration file for Prisma ORM:
prisma.config.ts
.This file will serve as a central configuration point for Prisma ORM:
With this file you are able to run any arbitrary code needed to get values required by Prisma ORM, such as database URLs from a secret store or fine-grained control of settings. It needs to live in the current working directory from where you're executing Prisma CLI commands (typically, the root of your project).
Learn more about the new
prisma.config.ts
file in the docs.Case-insensitive mode in JSON filters
You can now do case-insensitive filtering on JSON data.
Just use the new
mode
option when filtering usingstring_contains
,string_starts_with
orstring_ends_with
in a JSON object and set it to"insensitive"
:The above query returns all users where the
favorites.catBreed
value contains"Van"
or"van"
.Thanks to @lubosmato who implemented this feature 🎉
Improved CockroachDB migration speed
In this release we found some inefficiencies in our migration engine that was impacting CockroachDB migrations. In 6.4.0, CockroachDB migrations should be significantly faster.
Calling all devs: Give us your feedback!
Prisma ORM's community keeps us going. To make sure that we're focused on what the community needs, we would like to get your feedback via our online feedback form.
Credits
Huge thanks to @lubosmato, @notomo, @Mayureshd-18, @mydea, @omar-dulaimi and @Hazmi35 for helping out with this release!
remix-run/react-router (@react-router/cloudflare)
v7.2.0
Compare Source
Patch Changes
[email protected]
remix-run/react-router (@react-router/dev)
v7.2.0
Compare Source
Minor Changes
Generate a "SPA fallback" HTML file for scenarios where applications are prerendering the
/
route withssr:false
(#12948)ssr:false
without aprerender
config, this is considered "SPA Mode" and the generatedindex.html
file will only render down to the root route and will be able to hydrate for any valid application pathssr:false
with aprerender
config but do not include the/
path (i.e.,prerender: ['/blog/post']
), then we still generate a "SPA Mode"index.html
file that can hydrate for any path in the applicationssr:false
and included the/
path in yourprerender
config, we would prerender the/
route intoindex.html
as a non-SPA page__spa-fallback.html
that will allow you to hydrate for any non-prerendered pathsssr:false
app and serve the others as a SPAnpx sirv-cli build/client --single __spa-fallback.html
Allow a
loader
in the root route in SPA mode because it can be called/server-rendered at build time (#12948)Route.HydrateFallbackProps
now also receivesloaderData
HydrateFallback
is rendering while children routes are loadingundefined
if theHydrateFallback
is rendering because the route has it's own hydratingclientLoader
index.html
New type-safe
href
utility that guarantees links point to actual paths in your app (#13012)Patch Changes
Handle custom
envDir
in Vite config (#12969)Fix typegen for repeated params (#13012)
In React Router, path parameters are keyed by their name.
So for a path pattern like
/a/:id/b/:id?/c/:id
, the last:id
will set the value forid
inuseParams
and theparams
prop.For example,
/a/1/b/2/c/3
will result in the value{ id: 3 }
at runtime.Previously, generated types for params incorrectly modeled repeated params with an array.
So
/a/1/b/2/c/3
generated a type like{ id: [1,2,3] }
.To be consistent with runtime behavior, the generated types now correctly model the "last one wins" semantics of path parameters.
So
/a/1/b/2/c/3
now generates a type like{ id: 3 }
.Fix CLI parsing to allow argumentless
npx react-router
usage (#12925)Fix
ArgError: unknown or unexpected option: --version
when runningreact-router --version
(#13012)Skip action-only resource routes when using
prerender:true
(#13004)Enhance invalid export detection when using
ssr:false
(#12948)headers
/action
are prohibited in all routes withssr:false
because there will be no runtime server on which to run themloader
functions are more nuanced and depend on whether a given route is prerenderedssr:false
without aprerender
config, only theroot
route can have aloader
index.html
file with the root routeHydrateFallback
so it is capable of hydrating for any path in your application - therefore we can only call a root routeloader
at build timessr:false
with aprerender
config, you can export aloader
from routes matched by one of theprerender
paths because those routes will be server rendered at build timeloader
from a route that is never matched by aprerender
path will throw a build time error because there will be no runtime server to ever run the loaderLimit prerendered resource route
.data
files to only the target route (#13004)Add unstable support for splitting route modules in framework mode via `fut
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 was generated by Mend Renovate. View the repository job log.