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 all non-major dependencies #156

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jun 30, 2023

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@elzup/kit 1.4.0 -> 1.5.1 age adoption passing confidence dependencies minor
babel-loader 8.2.5 -> 8.4.1 age adoption passing confidence devDependencies minor
color 4.2.1 -> 4.2.3 age adoption passing confidence dependencies patch
fitty 2.3.6 -> 2.4.2 age adoption passing confidence dependencies minor
formik (source) 2.2.9 -> 2.4.6 age adoption passing confidence dependencies minor
jest-date-mock 1.0.8 -> 1.0.10 age adoption passing confidence devDependencies patch
next-pwa 5.4.4 -> 5.6.0 age adoption passing confidence dependencies minor
node (source) 14.19.0 -> 14.21.3 age adoption passing confidence minor
re-resizable 6.9.2 -> 6.10.3 age adoption passing confidence dependencies minor
react-use 17.3.2 -> 17.6.0 age adoption passing confidence dependencies minor
rooks (source) 5.10.0 -> 5.14.1 age adoption passing confidence dependencies minor
styled-components (source) 5.3.3 -> 5.3.11 age adoption passing confidence dependencies patch
tone 14.7.77 -> 14.9.17 age adoption passing confidence dependencies minor
ts-jest (source) 27.1.3 -> 27.1.5 age adoption passing confidence devDependencies patch
typescript (source) 4.5.5 -> 4.9.5 age adoption passing confidence devDependencies minor
use-seconds 1.6.0 -> 1.7.0 age adoption passing confidence dependencies minor
webpack 5.94.0 -> 5.97.1 age adoption passing confidence devDependencies minor

Release Notes

elzup/kit-js (@​elzup/kit)

v1.5.1

Compare Source

babel/babel-loader (babel-loader)

v8.4.1

Compare Source

v8.4.0

Compare Source

v8.3.0

Compare Source

New features

Full Changelog: babel/babel-loader@v8.2.5...v8.3.0

Qix-/color (color)

v4.2.3

Compare Source

Patch Release 4.2.3

  • 957531f mention .hex() is lossy (#​244)
  • d00bd1a Correct the limits on XYZ model
  • 4ac1315 mark the package as side-effects free (#​189)
  • f34a0ba use correct WCAG luminance constant (fixes #​248)
  • 9dcc3b7 update YIQ formula constants (fixes #​107, ref chartjs/chartjs-color#2)
  • 5696221 remove numeric separators
    • Not sure why I had such a strong stance on this. I see now how annoying and terrible they are. Apologies to everyone who was affected, this was a bad decision on my part.
  • b26040e remove bitchy issue template

Thanks to @​csandman, @​zdenekkostal, @​technobuddha, and @​maranomynet for their contributions!

v4.2.2

Compare Source

Patch Release 4.2.2

  • 406d384 contast ratio level AAA is above 7:1
  • c7b8e75 fix linting issues
  • 5df6f50 don't compute valpha based on faulty argument counts (fixes #​250)

Thanks to @​shfshanyue for their contribution!

rikschennink/fitty (fitty)

v2.4.2

Compare Source

v2.4.1

Compare Source

v2.4.0

Compare Source

v2.3.7

Compare Source

jaredpalmer/formik (formik)

v2.4.6

Compare Source

v2.4.5

Compare Source

Patch Changes

v2.4.4

Compare Source

Patch Changes

v2.4.3

Compare Source

Patch Changes

v2.4.2

Compare Source

Patch Changes

v2.4.1

Compare Source

Patch Changes
  • 2b194c2 #​3808 Thanks @​NagaiKoki! - fix type of setFieldValue function

  • 708bcb2 #​3813 Thanks @​probablyup! - Revert FieldArray "shouldComponentUpdate" performance optimization. As it turns out, it's a common use case to have JSX controlled via non-Formik state/props inside of FieldArray, so it's not safe to cancel re-renders here.

  • 187e47d #​3815 Thanks @​probablyup! - Revert Yup transform support for the time being, this may be re-introduced in a future release under an opt-in prop.

v2.4.0

Compare Source

Minor Changes

v2.3.3

Compare Source

Patch Changes
  • f075a0c #​3798 Thanks @​probablyup! - Fixed the use of generics for the ArrayHelpers type such that any[] is the default array type and for each individual method the array item type can be overridden if necessary.

v2.3.2

Compare Source

Patch Changes
  • f086b5a #​3237 Thanks @​pieplu! - Changed getIn to return undefined when it can't find a value AND a parent of that value is "falsy" ( "" / 0 / null / false )

  • 6d8f018 #​3792 Thanks @​probablyup! - Update the type for setFieldValue to reflect the returned Promise and potential returned error(s).

v2.3.0

Compare Source

Minor Changes
  • 73de78d #​3788 Thanks @​probablyup! - Added typescript generics to ArrayHelpers interface and its methods so that users who use TypeScript can set the type for their arrays and have type safety on array utils. I have also gone ahead and made supplying a type for the generic optional for the sake of backwards compatibility so any existing TS code that does not give a type for the FieldArray will continue to work as they always have.

  • 39a7bf7 #​3786 Thanks @​probablyup! - Yup by default only allows for cross-field validation within the
    same field object. This is not that useful in most scenarios because
    a sufficiently-complex form will have several yup.object() in the
    schema.

    const deepNestedSchema = Yup.object({
      object: Yup.object({
        nestedField: Yup.number().required(),
      }),
      object2: Yup.object({
        // this doesn't work because `object.nestedField` is outside of `object2`
        nestedFieldWithRef: Yup.number()
          .min(0)
          .max(Yup.ref('object.nestedField')),
      }),
    });

    However, Yup offers something called context which can operate across
    the entire schema when using a \$ prefix:

    const deepNestedSchema = Yup.object({
      object: Yup.object({
        nestedField: Yup.number().required(),
      }),
      object2: Yup.object({
        // this works because of the "context" feature, enabled by $ prefix
        nestedFieldWithRef: Yup.number()
          .min(0)
          .max(Yup.ref('$object.nestedField')),
      }),
    });

    With this change, you may now validate against any field in the entire schema,
    regardless of position when using the \$ prefix.

v2.2.10

Compare Source

Patch Changes
  • 22e236e #​3784 Thanks @​probablyup! - Improve performance of the FieldArray component by adding a shouldComponentUpdate check; this should help avoid unnecessary re-renders which may affect the performance of a form.

  • bc9cb28 #​3785 Thanks @​probablyup! - Fixed field error state for array fields that have an error and become empty through an API like arrayHelpers.remove.

    The prior behavior resolved the field error to [undefined], now it is simply undefined.

  • 9cbf150 #​3787 Thanks @​probablyup! - Fix infinite loop issue in Field when field helpers (setTouched, etc) are used as an argument in React.useEffect.

  • 9c75a9f #​3780 Thanks @​probablyup! - Fixed an issue with array field errors being incorrectly split into an array of individual characters instead of an array of error strings.

  • 35fa4cc #​3783 Thanks @​probablyup! - Fix validation of deep.dot.path field references when using the validateField API.

hustcc/jest-date-mock (jest-date-mock)

v1.0.10

Compare Source

What's Changed

Full Changelog: hustcc/jest-date-mock@v1.0.9...v1.0.10

v1.0.9

Compare Source

What's Changed

New Contributors

Full Changelog: hustcc/jest-date-mock@v1.0.8...v1.0.9

shadowwalker/next-pwa (next-pwa)

v5.6.0

Compare Source

Summary

BREAKING CHANGE

Start from version 5.6.0. This plugin function signature has been changed to follow the recommended pattern from next.js. Mainly extracting pwa config from mixing into rest of the next.js config. This is also less intrusive. See following commit for details.

shadowwalker/next-pwa@1e6af5f

Full Changelog: shadowwalker/next-pwa@5.5.6...5.6.0

v5.5.6

Compare Source

Important

Version 5.5.5 included a broken change which prevent pwa config to be effective. This release will fix that.

What's Changed

New Contributors

Full Changelog: shadowwalker/next-pwa@5.5.5...5.5.6

v5.5.5

Compare Source

What's Changed

New Contributors

Full Changelog: shadowwalker/next-pwa@5.5.4...5.5.5

v5.5.4

Compare Source

What's Changed

New Contributors

Full Changelog: shadowwalker/next-pwa@5.5.3...5.5.4

v5.5.3

Compare Source

What's Changed

New Contributors

Full Changelog: shadowwalker/next-pwa@5.5.2...5.5.3

v5.5.2

Compare Source

What's Changed

New Contributors

Full Changelog: shadowwalker/next-pwa@5.5.1...5.5.2

v5.5.1

Compare Source

Summary

Fix 404 error on precaching sw.js

v5.5.0

Compare Source

Fix
  1. Update precache manifest revision to contenthash from webpack, suggested by @​ammar-oker
Misc
  • Update dependencies
Fix
  1. (the real) Fix for not precache server js
  2. Fix service worker register url edge case

v5.4.7

Fix
  1. (the real) Fix for not precache server js
  2. Fix service worker register url edge case

v5.4.6

Fix
Misc
  • Update examples and dependencies

v5.4.5

Fix
nodejs/node (node)

v14.21.3: 2023-02-16, Version 14.21.3 'Fermium' (LTS), @​richardlau

Compare Source

This is a security release.

Notable Changes

The following CVEs are fixed in this release:

  • CVE-2023-23918: Node.js Permissions policies can be bypassed via process.mainModule (High)
  • CVE-2023-23920: Node.js insecure loading of ICU data through ICU_DATA environment variable (Low)

More detailed information on each of the vulnerabilities can be found in February 2023 Security Releases blog post.

This security release includes OpenSSL security updates as outlined in the recent
OpenSSL security advisory.

This security release also includes an npm update for Node.js 14 to address a number
of CVEs which either do not affect Node.js or are low severity in the context of Node.js. You
can get more details for the individual CVEs in
nodejs-dependency-vuln-assessments.

Commits

v14.21.2: 2022-12-13, Version 14.21.2 'Fermium' (LTS), @​richardlau

Compare Source

Notable Changes
OpenSSL 1.1.1s

This update is a bugfix release and does not address any security
vulnerabilities.

Root certificates updated to NSS 3.85

Certificates added:

  • Autoridad de Certificacion Firmaprofesional CIF A626340
  • Certainly Root E1
  • Certainly Root R1
  • D-TRUST BR Root CA 1 2020
  • D-TRUST EV Root CA 1 2020
  • DigiCert TLS ECC P384 Root G5
  • DigiCert TLS RSA4096 Root G5
  • E-Tugra Global Root CA ECC v3
  • E-Tugra Global Root CA RSA v3
  • HiPKI Root CA - G1
  • ISRG Root X2
  • Security Communication ECC RootCA1
  • Security Communication RootCA3
  • Telia Root CA v2
  • vTrus ECC Root CA
  • vTrus Root CA

Certificates removed:

  • Cybertrust Global Root
  • DST Root CA X3
  • GlobalSign Root CA - R2
  • Hellenic Academic and Research Institutions RootCA 2011
Time zone update to 2022f

Time zone data has been updated to 2022f. This includes changes to Daylight
Savings Time (DST) for Fiji and Mexico. For more information, see
https://mm.icann.org/pipermail/tz-announce/2022-October/000075.html.

Commits

v14.21.1: 2022-11-04, Version 14.21.1 'Fermium' (LTS), @​BethGriggs

Compare Source

This is a security release.

Notable changes

The following CVEs are fixed in this release:

  • CVE-2022-43548: DNS rebinding in --inspect via invalid octal IP address (Medium)

More detailed information on each of the vulnerabilities can be found in November 2022 Security Releases blog post.

Commits

v14.21.0: 2022-11-01, Version 14.21.0 'Fermium' (LTS), @​danielleadams

Compare Source

Notable changes
  • deps:
    • update corepack to 0.14.2 (Node.js GitHub Bot) #​44775
  • src:
    • add --openssl-shared-config option (Daniel Bevenius) #​43124
Commits

v14.20.1: 2022-09-23, Version 14.20.1 'Fermium' (LTS), @​bengl

Compare Source

This is a security release.

Notable changes

The following CVEs are fixed in this release:

More detailed information on each of the vulnerabilities can be found in September 22nd 2022 Security Releases blog post.

Commits

v14.20.0: 2022-07-07, Version 14.20.0 'Fermium' (LTS), @​danielleadams prepared by @​juanarbol

Compare Source

This is a security release.

Notable Changes
Commits

v14.19.3: 2022-05-17, Version 14.19.3 'Fermium' (LTS), @​richardlau

Compare Source

Notable Changes
  • This release updates OpenSSL to 1.1.1o. This update is not being treated as a security release as the issues addressed in OpenSSL 1.1.1o were assessed to not affect Node.js 14. See https://nodejs.org/en/blog/vulnerability/openssl-fixes-in-regular-releases-may2022/ for more information on how the May 2022 OpenSSL releases affects other Node.js release lines.
  • The list of GPG keys used to sign releases has been synchronized with the main branch.
Commits

v14.19.2: 2022-05-04, Version 14.19.2 'Fermium' (LTS), @​BethGriggs prepared by @​juanarbol

Compare Source

Notable Changes

doc:

  • New release key for Bryan English

Learn more at: #​42102
Contributed by B


Configuration

📅 Schedule: Branch creation - "* 0-3 1 * *" in timezone Asia/Tokyo, Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

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.


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

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

@renovate renovate bot added the renovate label Jun 30, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 82a9cc2 to 3684cb8 Compare June 30, 2023 19:27
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 3684cb8 to 9b7d09e Compare July 18, 2023 00:33
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 31ea42d to 137218b Compare August 2, 2023 06:17
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from aae1823 to 87e4f26 Compare August 11, 2023 00:44
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from bfa946f to 2e229f4 Compare September 7, 2023 00:09
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 2e229f4 to a5f6eca Compare September 10, 2023 14:24
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from a5f6eca to 3c92053 Compare September 17, 2023 20:33
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 1365244 to 78595e9 Compare September 30, 2023 22:43
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 78595e9 to 1390468 Compare October 14, 2023 01:47
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 1390468 to dea61c7 Compare October 31, 2023 18:25
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 1077d5f to 1348dc3 Compare November 17, 2023 13:51
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 5b4870b to 73ff59f Compare December 1, 2023 18:17
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 73ff59f to c092a80 Compare December 31, 2023 19:30
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from c092a80 to 7012bc5 Compare January 13, 2024 17:11
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 3b8667e to 2f0084c Compare January 24, 2024 17:12
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 736362f to 278c472 Compare February 1, 2024 19:13
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 278c472 to 99be240 Compare February 15, 2024 15:31
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 5207a6e to ac57bf1 Compare March 27, 2024 15:34
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from ac57bf1 to 4d7721f Compare March 31, 2024 19:07
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 524ede6 to 494d6cc Compare April 25, 2024 01:39
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from ec5caf5 to 2eccd02 Compare April 30, 2024 22:07
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 834c100 to cc59607 Compare May 31, 2024 20:29
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from cc59607 to fa365ff Compare June 11, 2024 16:48
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from fa365ff to 3432279 Compare June 19, 2024 17:23
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 3432279 to 149a487 Compare July 11, 2024 19:40
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 149a487 to 7a86578 Compare July 20, 2024 13:57
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from dd061a8 to 0bdfaad Compare August 31, 2024 19:12
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 7439e53 to 57530b5 Compare September 16, 2024 13:36
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 3de427e to 06327e4 Compare September 26, 2024 21:11
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 1912d67 to c18697b Compare November 6, 2024 04:00
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 3b76d4a to c9deb2a Compare December 9, 2024 13:55
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from c9deb2a to 4805156 Compare December 9, 2024 21:06
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants