Skip to content

fix(deps): update all non-major dependencies#156

Open
renovate[bot] wants to merge 1 commit intomainfrom
renovate/all-minor-patch
Open

fix(deps): update all non-major dependencies#156
renovate[bot] wants to merge 1 commit intomainfrom
renovate/all-minor-patch

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented Jun 30, 2023

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence Type Update
@elzup/kit 1.4.01.5.1 age confidence dependencies minor
babel-loader 8.2.58.4.1 age confidence devDependencies minor
color 4.2.14.2.3 age confidence dependencies patch
fitty 2.3.62.4.2 age confidence dependencies minor
formik (source) 2.2.92.4.9 age confidence dependencies minor
jest-date-mock 1.0.81.0.10 age confidence devDependencies patch
next-pwa 5.4.45.6.0 age confidence dependencies minor
node (source) 14.19.014.21.3 age confidence minor
re-resizable 6.9.26.11.2 age confidence dependencies minor
react-use 17.3.217.6.0 age confidence dependencies minor
rooks (source) 5.10.05.14.1 age confidence dependencies minor
styled-components (source) 5.3.35.3.11 age confidence dependencies patch
tone 14.7.7714.9.17 age confidence dependencies minor
ts-jest (source) 27.1.327.1.5 age confidence devDependencies patch
typescript (source) 4.5.54.9.5 age confidence devDependencies minor
use-seconds 1.6.01.7.0 age confidence dependencies minor

Release Notes

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

v1.5.1

Compare Source

babel/babel-loader (babel-loader)

v8.4.1

Compare Source

What's Changed

Full Changelog: babel/babel-loader@v8.4.0...v8.4.1

v8.4.0

Compare Source

What's Changed

New Contributors

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

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

Compare Source

Patch Changes

v2.4.8

Compare Source

Patch Changes
  • #​4042 1de45de Thanks @​copilot-swe-agent! - Replace JSX.IntrinsicElements with React.JSX.IntrinsicElements for React 19 compatibility. The global JSX namespace was removed in React 19, so we now use React.JSX.IntrinsicElements instead.

v2.4.6

Compare Source

Patch Changes
  • f57ca9b #​3949 Thanks @​DeveloperRaj! - Changing the state inside formik was changing reference of initialValues provided via props, deep cloning the initialvalues will fix it.

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.

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
  • Avoid a race between reading from and writing to the importScripts array by @​errendir in #​352
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 Bryan English (@​bengl)

npm:

  • Upgrade npm to v6.14.17.

Learn more at: #​42900
Contributed by Ruy Adorno (@​ruyadorno)

V8:

  • V8 had a stack overflow issue affecting the vm module, cherry-picking cc9a8a37445e
    from V8 solves this issue.

Learn more at: #​41826
Contributed by Gus Caplan (@​devsnek)

  • Using getHeapSnapshot() was causing a Node.js crash due a V8 issue, this is fixed by backporting 367b0c1e7a32
    from V8.

Learn more at: #​42637
Contributed by Chengzhong Wu (@​legendecas)

Commits

v14.19.1: 2022-03-17, Version 14.19.1 'Fermium' (LTS), @&#820


Configuration

📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM, on day 1 of the month ( * 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 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 5 times, most recently from c9deb2a to 4805156 Compare December 9, 2024 21:06
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from 4805156 to 309c25a Compare February 13, 2025 18:13
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 73f4577 to b630b8a Compare February 25, 2025 01:31
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from ffd365d to 4419fc7 Compare April 9, 2025 01:13
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