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/moment to v2 #51

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

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Aug 16, 2021

WhiteSource Renovate

This PR contains the following updates:

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

Release Notes

dmtrKovalenko/date-io

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.0

Compare Source

Features

v2.9.2

Compare Source

v2.9.0

Compare Source

Features

  • Add new getDaysInMonth method

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.7.0

Compare Source

Features 🎉

Fixes 🐛 | Enhancements 🧇

v2.6.0

Compare Source

Breaking changes

N/A

Features

  • Introduce new getFormatHelperText method (#​340)

Fixes

v2.5.1

Compare Source

This release is only fixing inclusivity rules of isWithinRange method.

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: "after 12am and before 08:30am on Monday" in timezone Asia/Karachi.

🚦 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.

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


  • If you want to rebase/retry this PR, click this checkbox.

This PR has been generated by WhiteSource Renovate. View repository job log here.

@renovate renovate bot force-pushed the renovate/major-date-io-monorepo branch from 835bae9 to f337fe9 Compare August 20, 2021 21:30
@renovate renovate bot force-pushed the renovate/major-date-io-monorepo branch from f337fe9 to 2fe4442 Compare September 5, 2021 20:00
@renovate renovate bot changed the title Update dependency @date-io/moment to v2 fix(deps): update dependency @date-io/moment to v2 Sep 5, 2021
@renovate renovate bot force-pushed the renovate/major-date-io-monorepo branch 2 times, most recently from 51a01d3 to 7bdf632 Compare September 19, 2021 19:49
@renovate renovate bot force-pushed the renovate/major-date-io-monorepo branch from 7bdf632 to b106f66 Compare September 26, 2021 20:49
@renovate renovate bot force-pushed the renovate/major-date-io-monorepo branch 2 times, most recently from 6f3dd7a to bb1a0c5 Compare October 24, 2021 20:25
@renovate renovate bot force-pushed the renovate/major-date-io-monorepo branch from bb1a0c5 to cd0fd6f Compare February 13, 2022 19:42
@renovate renovate bot force-pushed the renovate/major-date-io-monorepo branch from cd0fd6f to e6c0871 Compare May 15, 2022 20:20
@renovate
Copy link
Author

renovate bot commented Mar 23, 2023

Edited/Blocked Notification

Renovate 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.

⚠️ Warning: custom changes will be lost.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant