-
Notifications
You must be signed in to change notification settings - Fork 143
fix(deps): update primary-deps-major (major) - autoclosed #411
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
Closed
Conversation
This file contains hidden or 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
Collaborator
Pull Request Test Coverage Report for Build 12502900570Details
💛 - Coveralls |
c8e4c24 to
fb1565e
Compare
fb1565e to
50b8568
Compare
50b8568 to
a5adb56
Compare
a5adb56 to
9ba7cc9
Compare
9ba7cc9 to
be8e74b
Compare
be8e74b to
8491436
Compare
8491436 to
a2d964d
Compare
a2d964d to
f6a5da4
Compare
f6a5da4 to
0e0c0b7
Compare
0e0c0b7 to
3f7a280
Compare
3f7a280 to
f8f65a2
Compare
f8f65a2 to
9e98288
Compare
9e98288 to
73d15df
Compare
73d15df to
97ac0bc
Compare
e040e79 to
44c4d6a
Compare
44c4d6a to
09ff603
Compare
09ff603 to
9b5c923
Compare
9b5c923 to
03ee4d5
Compare
03ee4d5 to
d09057a
Compare
d09057a to
049ae2a
Compare
049ae2a to
2fc6c60
Compare
2fc6c60 to
1c1f4a6
Compare
1c1f4a6 to
497be8e
Compare
497be8e to
7ad9601
Compare
7ad9601 to
886270f
Compare
886270f to
2db29ed
Compare
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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:
26.0.3->28.0.215.3.0->16.0.011.1.6->12.1.210.3.5->11.0.18.2.2->9.1.0^3.6.0->^4.0.0Warning
Some dependencies could not be looked up. Check the Dependency Dashboard for more information.
Release Notes
rollup/plugins (@rollup/plugin-commonjs)
v28.0.22024-12-15
Updates
output.exportsrecommendation also applies to IIFE (#1810)v28.0.12024-10-16
Updates
v28.0.02024-09-23
Breaking Changes
v27.0.02024-09-23
Breaking Changes
rollup/plugins (@rollup/plugin-node-resolve)
v16.0.02024-12-15
Breaking Changes
v15.3.12024-12-15
Updates
testwithincludes(#1787)rollup/plugins (@rollup/plugin-typescript)
v12.1.22024-12-15
Bugfixes
v12.1.12024-10-16
Bugfixes
v12.1.02024-09-22
Features
v12.0.02024-09-22
Breaking Changes
output.file(#1728)semantic-release/github (@semantic-release/github)
v11.0.1Compare Source
Bug Fixes
v11.0.0Compare Source
chore
semantic-release(95c7cdd)Code Refactoring
labelproperty data type. (718134a)Features
warninfailscript (7a9914a)warninsuccessscript (792720d)BREAKING CHANGES
labelprop is now an array of objects with more properties@semantic-release/github is now v24.1.0
open-cli-tools/concurrently (concurrently)
v9.1.0Compare Source
What's Changed
New Contributors
Full Changelog: open-cli-tools/concurrently@v9.0.1...v9.1.0
v9.0.1Compare Source
What's Changed
Full Changelog: open-cli-tools/concurrently@v9.0.0...v9.0.1
v9.0.0Compare Source
date-fns/date-fns (date-fns)
v4.1.0Compare 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
TZDateto v1.0.2 as it includes a bunch of critical bug fixes.Fixed
constructFromthrowing an exception onnullarguments. Whilenullisn't allowed, the functions should rather returnInvalid DateorNaNin such cases. See #3885.Added
format,formatISO,formatISO9075,formatRelativeandformatRFC3339. See #3886.v4.0.0Compare 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'sTZDateclass andtzhelper function. See its README for the details about the API.All relevant functions now accept the context
inoption, 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,
addDayswill get the current date and time in Singapore and add 5 days to it.startOfDaywill inherit the date type and return the start of the day in Singapore.Changed
The function arguments, as well as
Interval'sstartandend, 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
inoption or the first encountered argument object type. TheInterval'sstartandendwill be considered separately, starting fromstart.In the given example, the result will be in the
TZDateas the first argument is a number, and thestarttakes 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.Configuration
📅 Schedule: Branch creation - "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 was generated by Mend Renovate. View the repository job log.