-
Notifications
You must be signed in to change notification settings - Fork 207
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(deps): update all dependencies (major) #12389
base: main
Are you sure you want to change the base?
Conversation
Demo starting at https://ubuntu-com-12389.demos.haus |
96b79e6
to
53b1c11
Compare
6b0341a
to
5dc1c56
Compare
3164e7c
to
7637395
Compare
cae4361
to
4bf55b8
Compare
c1abb46
to
cf9764e
Compare
cf9764e
to
0eb7c99
Compare
0eb7c99
to
24ed1e9
Compare
24ed1e9
to
734f25c
Compare
734f25c
to
fc6eb76
Compare
208e14d
to
9e33cc8
Compare
@abhigyanghosh30 I see you are assigned to this, do you have any plans to work? |
Hey @petesfrench, this is actually blocked because the current version of This will be unblocked once this PR is merged. If you're planning on picking it up then please go ahead. You should assign yourself WD-13248 and WD-14534 as well. Thanks! |
@petesfrench No. Maybe next cycle. It has waited so long anyways 😂😂 |
9e33cc8
to
2f5db88
Compare
066a362
to
99042d7
Compare
99042d7
to
5e221d2
Compare
5e221d2
to
bf31dbc
Compare
This PR contains the following updates:
2.7.3
->3.1.1
4.1.0
->5.3.0
^18.3.0
->^19.0.0
^18.3.0
->^19.0.0
v4
->v5
8.2.0
->9.1.0
3.6.0
->4.1.0
24.3.5
->25.2.0
3.1.2
->10.0.1
==0.8.4
->==3.0.2
20
->23
==1.24.4
->==2.2.0
==2022.7.1
->==2024.2
^18.3.0
->^19.0.0
^18.3.0
->^19.0.0
^6.24.1
->^7.0.0
v43
->v45
22.04
->24.04
jammy
->noble
jammy
->noble
Release Notes
stripe/react-stripe-js (@stripe/react-stripe-js)
v3.1.1
Compare Source
Fixes
v3.1.0
Compare Source
New features
Changed
v3.0.0
Compare Source
New features
Fixes
Changed
v2.9.0
Compare Source
New features
v2.8.1
Compare Source
Fixes
v2.8.0
Compare Source
New features
Fixes
Changed
stripe/stripe-js (@stripe/stripe-js)
v5.3.0
Compare Source
Fixes
Changed
v5.2.0
Compare Source
New features
Fixes
Changed
v5.1.0
Compare Source
New features
Fixes
Changed
v5.0.0
Compare Source
New features
Fixes
Changed
v4.10.0
Compare Source
New features
Fixes
Changed
v4.9.0
Compare Source
New features
Fixes
Changed
v4.8.0
Compare Source
New features
v4.7.0
Compare Source
New features
Fixes
v4.6.0
Compare Source
Fixes
v4.5.0
Compare Source
<- Please group the following commits into one of the sections below. -->
<- Remove empty sections when done. -->
New features
Changed
v4.4.0
Compare Source
New features
Fixes
Changed
v4.3.0
Compare Source
New features
Fixes
Changed
v4.2.0
Compare Source
New features
Fixes
Changed
codecov/codecov-action (codecov/codecov-action)
v5
Compare Source
What's Changed
Full Changelog: https://github.com/codecov/codecov-action/compare/v5.1.0..v5.1.1
open-cli-tools/concurrently (concurrently)
v9.1.0
Compare Source
What's Changed
New Contributors
Full Changelog: open-cli-tools/concurrently@v9.0.1...v9.1.0
v9.0.1
Compare Source
What's Changed
Full Changelog: open-cli-tools/concurrently@v9.0.0...v9.0.1
v9.0.0
Compare Source
v8.2.2
Compare Source
What's Changed
New Contributors
Full Changelog: open-cli-tools/concurrently@v8.2.1...v8.2.2
v8.2.1
Compare Source
What's Changed
New Contributors
Full Changelog: open-cli-tools/concurrently@v8.2.0...v8.2.1
date-fns/date-fns (date-fns)
v4.1.0
Compare Source
This release adds time zone support to format functions (that I somehow missed when working on the feature) and fixes a few bugs.
Make sure also upgrade
TZDate
to v1.0.2 as it includes a bunch of critical bug fixes.Fixed
constructFrom
throwing an exception onnull
arguments. Whilenull
isn't allowed, the functions should rather returnInvalid Date
orNaN
in such cases. See #3885.Added
format
,formatISO
,formatISO9075
,formatRelative
andformatRFC3339
. See #3886.v4.0.0
Compare Source
I have great news! First, ten years after its release, date-fns finally gets first-class time zone support.
Another great news is that there aren't many breaking changes in this release. All of them are type-related and will affect only those explicitly using internal date-fns types. Finally, it has been less than a year since the last major release, which is an improvement over the previous four years between v2 and v3. I plan on keeping the pace and minimizing breaking changes moving forward.
Read more about the release in the announcement blog post.
- Sasha @kossnocorp
Added
Added time zones support via
@date-fns/tz
'sTZDate
class andtz
helper function. See its README for the details about the API.All relevant functions now accept the context
in
option, which allows to specify the time zone to make the calculations in. If the function also returns a date, it will be in the specified time zone:In the example,
addDays
will get the current date and time in Singapore and add 5 days to it.startOfDay
will inherit the date type and return the start of the day in Singapore.Changed
The function arguments, as well as
Interval
'sstart
andend
, now can be of different types, allowing you to mixUTCDate
,TZDate
,Date
, and other extensions, as well as primitives (strings and numbers).The functions will normalize these values, make calculations, and return the result in the same type, preventing any bugs caused by the discrepancy. If passed, the type will be inferred from the context
in
option or the first encountered argument object type. TheInterval
'sstart
andend
will be considered separately, starting fromstart
.In the given example, the result will be in the
TZDate
as the first argument is a number, and thestart
takes precedence over theend
.BREAKING: This release contains a bunch of types changes that should not affect the library's expected usage. The changes are primarily internal and nuanced, so rather than listing them here, I recommend you running the type checker after the upgrade. If there are unfixable problems, please open an issue.
BREAKING: The package now is ESM-first. The CommonJS is still support and It should not affect most users, but it might break in certains environments. If you encounter any issues, please report them.
Fixed
$
by properly wrapping the code in an IIFE.jackocnr/intl-tel-input (intl-tel-input)
v25.2.0
Compare Source
v25.1.1
Compare Source
Fixes
v25.1.0
Compare Source
New features
Bug fixes
v25.0.2
Compare Source
v25.0.1
Compare Source
hiddenInput now supports pre-existing hidden inputs
v25.0.0
Compare Source
["TOLL_FREE", "PREMIUM_RATE"]
v24.8.2
Compare Source
Update utils to libphonenumber v8.13.51
v24.8.1
Compare Source
Allow promise-like objects as loadUtilsOnInit option
v24.8.0
Compare Source
Update utils to libphonenumber v8.13.50
v24.7.0
Compare Source
Add Danish language - thanks @matthiasdilger
v24.6.1
Compare Source
Update utils to libphonenumber v8.13.49
v24.6.0
Compare Source
Support async functions for loading the utils script - thanks to @Mr0grog
Details
Deprecated
utilsScript
option, in favour of newloadUtilsOnInit
option, which can be used in 2 ways:or
See readme for more info.
v24.5.2
Compare Source
strictMode fix: cannot type russian placeholder number
v24.5.1
Compare Source
v24.5.0
Compare Source
v24.4.0
Compare Source
All thanks to @carlssonemil
v24.3.7
Compare Source
v24.3.6
Compare Source
isaacs/minimatch (minimatch)
v10.0.1
Compare Source
v10.0.0
Compare Source
v9.0.5
Compare Source
v9.0.4
Compare Source
v9.0.3
Compare Source
v9.0.2
Compare Source
v9.0.1
Compare Source
v9.0.0
Compare Source
v8.0.4
Compare Source
v8.0.3
Compare Source
v8.0.2
Compare Source
v8.0.1
Compare Source
v8.0.0
Compare Source
v7.4.6
Compare Source
v7.4.5
Compare Source
v7.4.4
Compare Source
v7.4.3
Compare Source
v7.4.2
Compare Source
v7.4.1
Compare Source
v7.4.0
Compare Source
v7.3.0
Compare Source
v7.2.0
Compare Source
v7.1.4
Compare Source
v7.1.3
Compare Source
v7.1.2
Compare Source
v7.1.1
Compare Source
v7.1.0
Compare Source
v7.0.1
Compare Source
v7.0.0
Compare Source
v6.2.0
Compare Source
v6.1.10
Compare Source
v6.1.9
Compare Source
v6.1.8
Compare Source
v6.1.7
Compare Source
v6.1.6
Compare Source
v6.1.5
Compare Source
v6.1.4
Compare Source
v6.1.3
Compare Source
v6.1.2
Compare Source
v6.1.1
Compare Source
v6.1.0
Compare Source
v6.0.4
Compare Source
v6.0.3
Compare Source
v6.0.2
Compare Source
v6.0.1
Compare Source
v6.0.0
Compare Source
v5.1.6
Compare Source
v5.1.5
Compare Source
v5.1.4
Compare Source
v5.1.3
Compare Source
v5.1.2
Compare Source
v5.1.1
Compare Source
v5.1.0
Compare Source
v5.0.1
Compare Source
v5.0.0
Compare Source
v4.2.3
Compare Source
v4.2.2
Compare Source
v4.2.1
Compare Source
v4.2.0
Compare Source
v4.1.1
Compare Source
v4.1.0
Compare Source
v4.0.0
Compare Source
lepture/mistune (mistune)
v3.0.2
Compare Source
🐞 Bug Fixes
View changes on GitHub
v3.0.1
Compare Source
🚀 Features
🐞 Bug Fixes
View changes on GitHub
v3.0.0
Compare Source
🚀 Features
🐞 Bug Fixes
View changes on GitHub
v2.0.5
: Version 2.0.5Compare Source
Improve on parsing list. Make it possible to customize list regex. ref https://github.com/lepture/mistune/issues/331
v2.0.4
: Version 2.0.4Compare Source
url
plugin in<a>
tag*
formatting[
v2.0.3
](https://redirect.github.com/lepture/mistune/releases/tag/v2.0.Configuration
📅 Schedule: Branch creation - "on the first day of january" (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.