Skip to content
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 dependency @date-io/date-fns to v3 #1527

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Oct 30, 2021

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@date-io/date-fns 1.3.13 -> 3.0.0 age adoption passing confidence

Release Notes

dmtrKovalenko/date-io (@​date-io/date-fns)

v3.0.0

Compare Source

Breaking changes:

Other changes

You can support the maintenance of this project by visiting https://github.com/sponsors/dmtrKovalenko. Your support will help us respond faster and deliver requested features. We extend our heartfelt thanks to our contributors and sponsors ❤️.

New Contributors

Full Changelog: dmtrKovalenko/date-io@v2.17.0...v3.0.0

v2.17.0

Compare Source

New features

What's Changed

New Contributors

Full Changelog: dmtrKovalenko/date-io@v2.16.1...v2.17.0

v2.16.0

Compare Source

What's Changed

Full Changelog: dmtrKovalenko/date-io@v2.15.0...v2.16.0

v2.15.0

Compare Source

What's Changed

Full Changelog: dmtrKovalenko/date-io@v2.14.0...v2.15.0

v2.14.0

Compare Source

What's Changed
New Collaborator

Full Changelog: dmtrKovalenko/date-io@v2.13.2...v2.14.0

v2.13.2

Compare Source

What's Changed
New Contributors

Full Changelog: dmtrKovalenko/date-io@v2.13.1...v2.13.2

v2.13.1

Compare Source

v2.11.0

Compare Source

Features
  • parseISO – will parse date using library method to avoid inconsistencies between browsers
  • toISO – will format date to iso string using library
Fixes/Enhancements
  • Better "AM/PM" localisation with dayjs

v2.10.11

Compare Source

Changelog

  • Make days adapter to be generic and accept any custom extended days instance as DayJsAdapter<Dayjs>
  • Update a lot of dependencies

v2.10.8

Compare Source

v2.10.7

Compare Source

Changelog

Some bugfixes and dependency updates:

v2.10.6

Compare Source

This release is finally fixing the problem of outdated builds of published date-io/* releases.

We apologize 🙏 for this publishing issues causing 2.10.0-2.10.5 releases. If you installed any of these versions please update to the latest, those builds are broken and deprecated on npm.

From now on versions of @date-io/* will always be synchronized with @date-io/core package and will never cause version conflict or be outdated.

v2.10.5

Compare Source

v2.10.4

Compare Source

v2.10.2

Compare Source

v2.10.0

Compare Source

Features

v2.9.2

Compare Source

v2.9.1

Compare Source

v2.8.1

Compare Source

Features

  • Add lib name to the adapter interface

Fixes

  • Remove prettier import, closes #​442
  • [Luxon] Properly apply locale for parsed and created date (#​443)
  • A lot of dependency updates

v2.8.0

Compare Source

v2.6.2

Compare Source

v2.6.1

Compare Source

Breaking changes

N/A

Fixes

v2.6.0

Compare Source

Breaking changes

N/A

Features
  • Introduce new getFormatHelperText method (#​340)
Fixes

v2.5.0

Compare Source

Breaking changes

N/A

Features

New functions:

  • isWithinRange: (date: TDate, range: [TDate, TDate]) => boolean
  • addMonths: (date: TDate, monthCount: number) => TDate

v2.4.0

Compare Source

Add 2 new functions:

  • startOfWeek(date: TDate): TDate - returns start of week
  • endOfWeek(date: TDate): TDate - returns end of week

v2.3.0

Compare Source

Changes

  • Add new toJsDate function converting lib object to native js date

v2.2.0

Compare Source

Localization improvements release

We have changed the formats tokens to use localized formats tokens everywhere possible. Also introduced several new methods and formats

List of new methods added:

  • is12HourCycleInCurrentLocale(): boolean - determine is 12 hours cycle and ampm used in current locale
  • getCurrentLocaleCode - get locale code

v2.1.0

Compare Source

v2.0.1

Compare Source

v2.0.0

Compare Source

Major upgrade

Do not update if you are using @​material-ui/pickers v3

Breaking changes
  • Remove all static format fields like dateTimeFormat
  • Introduce new object for cross utils formatting. It is overridable via constructor formats prop and provides easy localization formatting
export interface DateIOFormats {
  /** Full date, useful for accessibility @&#8203;example "2019, January 1st" */
  fullDate: string;
  /** Day format string extremely required to localize @&#8203;example "Wed, Jan 1st" for US, "January 1st" for Europe */
  normalDate: string;
  /** Shorter day format @&#8203;example "Jan 1st" */
  shortDate: string;
  /** Year format string @&#8203;example "2019" */
  year: string;
  /** Month format string @&#8203;example "January" */
  month: string;
  /** Short month format string @&#8203;example "Jan" */
  monthShort: string;
  /** Short month format string @&#8203;example "January 2018" */
  monthAndYear: string;
  /** Month with date format string @&#8203;example "January 1st" */
  monthAndDate: string;
  /** Day format string @&#8203;example "12" */
  dayOfMonth: string;
  /** Full time format string @&#8203;example "11:44 PM" */
  fullTime12h: string;
  /** Full time format string @&#8203;example "23:59" */
  fullTime24h: string;
  /** Hours format string @&#8203;example "11" */
  hours12h: string;
  /** Hours format string @&#8203;example "23" */
  hours24h: string;
  /** Minutes format string @&#8203;example "59" */
  minutes: string;
  /** Seconds format string @&#8203;example "59" */
  seconds: string;
  /** Date & Time format string @&#8203;example "2018, Jan 1st 11:44 PM" */
  fullDateTime12h: string;
  /** Date & Time format string @&#8203;example "2018, Jan 1st 23:44" */
  fullDateTime24h: string;
  /** Keyboard input friendly date format @&#8203;example "2019/01/01" */
  keyboardDate: string;
  /** Keyboard input friendly date/time 12h format @&#8203;example "2019/01/01 23:44" */
  keyboardDateTime12h: string;
  /** Keyboard input friendly date/time 24h format @&#8203;example "2019/01/01 11:44 PM" */
  keyboardDateTime24h: string;
}
  • format method now has signature (date: TDate, formatKey: keyof IDateIOFormat) => string in order to simplify formatting using new format keys
  • formatByString allowes to use custom (mostly user-provided) format strings formatByString(value: TDate, formatString: string): string;

Configuration

📅 Schedule: Branch creation - "every weekend" (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.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@changeset-bot
Copy link

changeset-bot bot commented Oct 30, 2021

⚠️ No Changeset found

Latest commit: a5bf44f

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

@renovate renovate bot force-pushed the renovate/major-date-io-monorepo branch from 1dde9ef to 0950c26 Compare November 13, 2021 06:00
@renovate renovate bot force-pushed the renovate/major-date-io-monorepo branch 2 times, most recently from 33f3778 to 26733d0 Compare December 11, 2021 05:41
@renovate renovate bot force-pushed the renovate/major-date-io-monorepo branch from 26733d0 to b6ed250 Compare January 15, 2022 04:24
@renovate renovate bot force-pushed the renovate/major-date-io-monorepo branch 2 times, most recently from 5063fbf to b3e5efa Compare January 29, 2022 04:09
@renovate renovate bot force-pushed the renovate/major-date-io-monorepo branch from b3e5efa to 8e7d5bf Compare February 19, 2022 03:40
@renovate renovate bot force-pushed the renovate/major-date-io-monorepo branch from 8e7d5bf to 20fd8dc Compare March 5, 2022 15:27
@renovate renovate bot force-pushed the renovate/major-date-io-monorepo branch 3 times, most recently from af8e6a2 to 7fb0f08 Compare May 7, 2022 11:18
@renovate renovate bot force-pushed the renovate/major-date-io-monorepo branch from 7fb0f08 to 7ddd47e Compare May 13, 2022 14:24
@renovate renovate bot force-pushed the renovate/major-date-io-monorepo branch from 7ddd47e to 85428bb Compare May 21, 2022 23:25
@renovate renovate bot force-pushed the renovate/major-date-io-monorepo branch from 85428bb to 3a79e87 Compare June 4, 2022 11:08
@renovate renovate bot force-pushed the renovate/major-date-io-monorepo branch from 3a79e87 to 7a6c04c Compare June 11, 2022 18:35
@renovate renovate bot force-pushed the renovate/major-date-io-monorepo branch 2 times, most recently from f06a821 to 695b786 Compare June 25, 2022 08:06
@renovate renovate bot force-pushed the renovate/major-date-io-monorepo branch from 695b786 to fb43bcf Compare August 10, 2022 12:47
@renovate renovate bot force-pushed the renovate/major-date-io-monorepo branch from fb43bcf to 7b55774 Compare September 21, 2022 11:31
@renovate renovate bot force-pushed the renovate/major-date-io-monorepo branch from 7b55774 to 99645a6 Compare October 1, 2022 13:27
@renovate renovate bot force-pushed the renovate/major-date-io-monorepo branch from 99645a6 to e24066c Compare October 29, 2022 18:12
@renovate renovate bot changed the title fix(deps): update dependency @date-io/date-fns to v2 Update dependency @date-io/date-fns to v2 Dec 17, 2022
@renovate renovate bot changed the title Update dependency @date-io/date-fns to v2 fix(deps): update dependency @date-io/date-fns to v2 Dec 17, 2022
@renovate renovate bot force-pushed the renovate/major-date-io-monorepo branch from e24066c to 79c4c4f Compare October 1, 2023 08:10
@renovate renovate bot changed the title fix(deps): update dependency @date-io/date-fns to v2 fix(deps): update dependency @date-io/date-fns to v3 Jan 10, 2024
@renovate renovate bot force-pushed the renovate/major-date-io-monorepo branch from 79c4c4f to a5bf44f Compare January 10, 2024 15:46
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants