Skip to content
This repository has been archived by the owner on May 30, 2023. It is now read-only.

chore(deps): update all dependencies #198

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

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Jul 1, 2022

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@date-io/moment ^1.3.13 -> ^2.0.0 age adoption passing confidence
@types/node (source) 17.0.29 -> 18.15.5 age adoption passing confidence
@types/react (source) ^17.0.9 -> ^18.0.0 age adoption passing confidence
@types/react-dom (source) ^17.0.6 -> ^18.0.0 age adoption passing confidence
@types/uuid (source) ^8.3.4 -> ^9.0.0 age adoption passing confidence
alex (source) ^10.0.0 -> ^11.0.0 age adoption passing confidence
axios (source) ^0.21.1 -> ^1.0.0 age adoption passing confidence
chart.js (source) ^3.7.1 -> ^4.0.0 age adoption passing confidence
chartjs-plugin-zoom ^1.2.1 -> ^2.0.0 age adoption passing confidence
eslint (source) ^7.32.0 -> ^8.0.0 age adoption passing confidence
eslint-config-airbnb-typescript ^16.1.0 -> ^17.0.0 age adoption passing confidence
history ^4.10.1 -> ^5.0.0 age adoption passing confidence
react (source) ^17.0.2 -> ^18.0.0 age adoption passing confidence
react-chartjs-2 ^4.1.0 -> ^5.0.0 age adoption passing confidence
react-dom (source) ^17.0.2 -> ^18.0.0 age adoption passing confidence
react-dropzone ^11.4.2 -> ^14.0.0 age adoption passing confidence
react-error-overlay 6.0.9 -> 6.0.11 age adoption passing confidence
react-konva 17.0.2-6 -> 18.2.5 age adoption passing confidence
react-redux ^7.2.4 -> ^8.0.0 age adoption passing confidence
react-router-dom ^5.2.0 -> ^6.0.0 age adoption passing confidence
react-scripts 4.0.3 -> 5.0.1 age adoption passing confidence
react-toastify ^8.1.0 -> ^9.0.0 age adoption passing confidence
typescript (source) ^4.3.2 -> ^5.0.0 age adoption passing confidence

Release Notes

dmtrKovalenko/date-io

v2.16.1

Compare Source

Fixes

New Contributors

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

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

Compare Source

Features

v2.9.2

Compare Source

v2.9.0: 2.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;
get-alex/alex

v11.0.0

Compare Source

  • 1b4c1be Update retext-equality, retext-profanities
  • 3b55031 Remove support for Node 12

Full Changelog: get-alex/alex@10.0.0...11.0.0

axios/axios

v1.3.4

Compare Source

Bug Fixes
  • blob: added a check to make sure the Blob class is available in the browser's global scope; (#​5548) (3772c8f)
  • http: fixed regression bug when handling synchronous errors inside the adapter; (#​5564) (a3b246c)
Contributors to this release

v1.3.3

Compare Source

Bug Fixes
  • formdata: added a check to make sure the FormData class is available in the browser's global scope; (#​5545) (a6dfa72)
  • formdata: fixed setting NaN as Content-Length for form payload in some cases; (#​5535) (c19f7bf)
  • headers: fixed the filtering logic of the clear method; (#​5542) (ea87ebf)
Contributors to this release

v1.3.2

Compare Source

Bug Fixes
Contributors to this release

v1.3.1

Compare Source

Bug Fixes
  • formdata: add hotfix to use the asynchronous API to compute the content-length header value; (#​5521) (96d336f)
  • serializer: fixed serialization of array-like objects; (#​5518) (08104c0)
Contributors to this release

v1.3.0

Compare Source

Bug Fixes
Features
  • fomdata: added support for spec-compliant FormData & Blob types; (#​5316) (6ac574e)
Contributors to this release

1.2.6 (2023-01-28)

Bug Fixes
  • headers: added missed Authorization accessor; (#​5502) (342c0ba)
  • types: fixed CommonRequestHeadersList & CommonResponseHeadersList types to be private in commonJS; (#​5503) (5a3d0a3)
Contributors to this release

1.2.5 (2023-01-26)

Bug Fixes
  • types: fixed AxiosHeaders to handle spread syntax by making all methods non-enumerable; (#​5499) (580f1e8)
Contributors to this release

1.2.4 (2023-01-22)

Bug Fixes
Contributors to this release

1.2.3 (2023-01-10)

Bug Fixes
  • types: fixed AxiosRequestConfig header interface by refactoring it to RawAxiosRequestConfig; (#​5420) (0811963)
Contributors to this release

[1.2.2] - 2022-12-29

Fixed
Chores
  • chore(ci): set conventional-changelog header config #​5406
  • chore(ci): fix automatic contributors resolving #​5403
  • chore(ci): improved logging for the contributors list generator #​5398
  • chore(ci): fix release action #​5397
  • chore(ci): fix version bump script by adding bump argument for target version #​5393
  • chore(deps): bump decode-uri-component from 0.2.0 to 0.2.2 #​5342
  • chore(ci): GitHub Actions Release script #​5384
  • chore(ci): release scripts #​5364
Contributors to this release

[1.2.1] - 2022-12-05

Changed
  • feat(exports): export mergeConfig #​5151
Fixed
  • fix(CancelledError): include config #​4922
  • fix(general): removing multiple/trailing/leading whitespace #​5022
  • fix(headers): decompression for responses without Content-Length header #​5306
  • fix(webWorker): exception to sending form data in web worker #​5139
Refactors
  • refactor(types): AxiosProgressEvent.event type to any #​5308
  • refactor(types): add missing types for static AxiosError.from method #​4956
Chores
  • chore(docs): remove README link to non-existent upgrade guide #​5307
  • chore(docs): typo in issue template name #​5159
Contributors to this release

[1.2.0] - 2022-11-10

Changed
  • changed: refactored module exports #​5162
  • change: re-added support for loading Axios with require('axios').default #​5225
Fixed
  • fix: improve AxiosHeaders class #​5224
  • fix: TypeScript type definitions for commonjs #​5196
  • fix: type definition of use method on AxiosInterceptorManager to match the the README #​5071
  • fix: __dirname is not defined in the sandbox #​5269
  • fix: AxiosError.toJSON method to avoid circular references #​5247
  • fix: Z_BUF_ERROR when content-encoding is set but the response body is empty #​5250
Refactors
  • refactor: allowing adapters to be loaded by name #​5277
Chores
  • chore: force CI restart #​5243
  • chore: update ECOSYSTEM.md #​5077
  • chore: update get/index.html #​5116
  • chore: update Sandbox UI/UX #​5205
  • chore:(actions): remove git credentials after checkout #​5235
  • chore(actions): bump actions/dependency-review-action from 2 to 3 #​5266
  • chore(packages): bump loader-utils from 1.4.1 to 1.4.2 #​5295
  • chore(packages): bump engine.io from 6.2.0 to 6.2.1 #​5294
  • chore(packages): bump socket.io-parser from 4.0.4 to 4.0.5 #​5241
  • chore(packages): bump loader-utils from 1.4.0 to 1.4.1 #​5245
  • chore(docs): update Resources links in README #​5119
  • chore(docs): update the link for JSON url #​5265
  • chore(docs): fix broken links #​5218
  • chore(docs): update and rename UPGRADE_GUIDE.md to MIGRATION_GUIDE.md #​5170
  • chore(docs): typo fix line #​856 and #​920 #​5194
  • chore(docs): typo fix #​800 #​5193
  • chore(docs): fix typos #​5184
  • chore(docs): fix punctuation in README.md #​5197
  • chore(docs): update readme in the Handling Errors section - issue reference #​5260 #​5261
  • chore: remove \b from filename #​5207
  • chore(docs): update CHANGELOG.md #​5137
  • chore: add sideEffects false to package.json #​5025
Contributors to this release

[1.1.3] - 2022-10-15

Added
  • Added custom params serializer support #​5113
Fixed
  • Fixed top-level export to keep them in-line with static properties #​5109
  • Stopped including null values to query string. #​5108
  • Restored proxy config backwards compatibility with 0.x #​5097
  • Added back AxiosHeaders in AxiosHeaderValue #​5103
  • Pin CDN install instructions to a specific version #​5060
  • Handling of array values fixed for AxiosHeaders #​5085
Chores
  • docs: match badge style, add link to them #​5046
  • chore: fixing comments typo #​5054
  • chore: update issue template #​5061
  • chore: added progress capturing section to the docs; #​5084
Contributors to this release

[1.1.2] - 2022-10-07

Fixed
  • Fixed broken exports for UMD builds.
Contributors to this release

[1.1.1] - 2022-10-07

Fixed
  • Fixed broken exports for common js. This fix breaks a prior fix, I will fix both issues ASAP but the commonJS use is more impactful.
Contributors to this release

[1.1.0] - 2022-10-06

Fixed
  • Fixed missing exports in type definition index.d.ts #​5003
  • Fixed query params composing #​5018
  • Fixed GenericAbortSignal interface by making it more generic #​5021
  • Fixed adding "clear" to AxiosInterceptorManager #​5010
  • Fixed commonjs & umd exports #​5030
  • Fixed inability to access response headers when using axios 1.x with Jest #​5036
Contributors to this release

[1.0.0] - 2022-10-04

Added
  • Added stack trace to AxiosError #​4624
  • Add AxiosError to AxiosStatic #​4654
  • Replaced Rollup as our build runner #​4596
  • Added generic TS types for the exposed toFormData helper #​4668
  • Added listen callback function #​4096
  • Added instructions for installing using PNPM #​4207
  • Added generic AxiosAbortSignal TS interface to avoid importing AbortController polyfill #​4229
  • Added axios-url-template in ECOSYSTEM.md #​4238
  • Added a clear() function to the request and response interceptors object so a user can ensure that all interceptors have been removed from an axios instance #​4248
  • Added react hook plugin #​4319
  • Adding HTTP status code for transformResponse #​4580
  • Added blob to the list of protocols supported by the browser #​4678
  • Resolving proxy from env on redirect #​4436
  • Added enhanced toFormData implementation with additional options 4704
  • Adding Canceler parameters config and request #​4711
  • Added automatic payload serialization to application/x-www-form-urlencoded #​4714
  • Added the ability for webpack users to overwrite built-ins #​4715
  • Added string[] to AxiosRequestHeaders type #​4322
  • Added the ability for the url-encoded-form serializer to respect the formSerializer config #​4721
  • Added isCancel type assert #​4293
  • Added data URL support for node.js #​4725
  • Adding types for progress event callbacks #​4675
  • URL params serializer #​4734
  • Added axios.formToJSON method #​4735
  • Bower platform add data protocol #​4804
  • Use WHATWG URL API instead of url.parse() #​4852
  • Add ENUM containing Http Status Codes to typings #​4903
  • Improve typing of timeout in index.d.ts #​4934
Changed
  • Updated AxiosError.config to be optional in the type definition #​4665
  • Updated README emphasizing the URLSearchParam built-in interface over other solutions #​4590
  • Include request and config when creating a CanceledError instance #​4659
  • Changed func-names eslint rule to as-needed #​4492
  • Replacing deprecated substr() with slice() as substr() is deprecated #​4468
  • Updating HTTP links in README.md to use HTTPS #​4387
  • Updated to a better trim() polyfill #​4072
  • Updated types to allow specifying partial default headers on instance create #​4185
  • Expanded isAxiosError types #​4344
  • Updated type definition for axios instance methods #​4224
  • Updated eslint config #​4722
  • Updated Docs #​4742
  • Refactored Axios to use ES2017 [#&#

Configuration

📅 Schedule: Branch creation - "before 3am on the first day of the month" (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.


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

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

@renovate renovate bot added the dependencies 🔁 Pull requests that update a dependency file label Jul 1, 2022
@pcaversaccio pcaversaccio added the typescript 𝐓𝐒 Pull requests that update TypeScript code label Jul 1, 2022
@pcaversaccio
Copy link
Member

@locpnh1995 your call here how we want to proceed (there are some overlapping updates with dependabot but those PRs will close automatically if the required updates have been already merged).

@renovate renovate bot force-pushed the renovate/all branch 2 times, most recently from f66eba3 to 8a124f4 Compare September 5, 2022 21:38
@renovate renovate bot force-pushed the renovate/all branch 3 times, most recently from 92348a3 to f1b57e4 Compare November 23, 2022 21:49
@renovate renovate bot force-pushed the renovate/all branch 4 times, most recently from ce8ec42 to 1f37a1f Compare November 30, 2022 21:14
@renovate renovate bot force-pushed the renovate/all branch 3 times, most recently from 406ca92 to 0d9d3e6 Compare December 10, 2022 21:38
@renovate renovate bot force-pushed the renovate/all branch 3 times, most recently from 35d4662 to 7b32d9c Compare December 16, 2022 23:18
@renovate renovate bot changed the title chore(deps): update all dependencies Update all dependencies Dec 17, 2022
@renovate renovate bot changed the title Update all dependencies chore(deps): update all dependencies Dec 17, 2022
@renovate renovate bot force-pushed the renovate/all branch 3 times, most recently from 69385d3 to b3bd281 Compare February 7, 2023 11:35
@renovate renovate bot force-pushed the renovate/all branch 2 times, most recently from 326cb74 to f217aca Compare February 20, 2023 16:37
@renovate renovate bot force-pushed the renovate/all branch 4 times, most recently from 10c5c73 to 8c2693d Compare March 2, 2023 11:13
@renovate renovate bot force-pushed the renovate/all branch 3 times, most recently from ad1e1b4 to efabd69 Compare March 9, 2023 20:35
@renovate renovate bot force-pushed the renovate/all branch 4 times, most recently from 3b0a607 to 1692a7d Compare March 16, 2023 17:00
@renovate renovate bot force-pushed the renovate/all branch 6 times, most recently from 3eb8f33 to e40a6b4 Compare March 26, 2023 04:19
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
dependencies 🔁 Pull requests that update a dependency file typescript 𝐓𝐒 Pull requests that update TypeScript code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants