Skip to content

fix(deps): update non-major dependencies#239

Open
renovate[bot] wants to merge 1 commit intodevelopfrom
renovate/non-major-dependencies
Open

fix(deps): update non-major dependencies#239
renovate[bot] wants to merge 1 commit intodevelopfrom
renovate/non-major-dependencies

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Oct 4, 2025

This PR contains the following updates:

Package Change Age Confidence
@types/node (source) 20.19.1920.19.30 age confidence
@types/react (source) 18.3.2518.3.27 age confidence
autoprefixer 10.4.2110.4.24 age confidence
axios (source) 1.12.21.13.4 age confidence
eslint-config-next (source) 14.2.3314.2.35 age confidence
eslint-plugin-prettier 5.5.45.5.5 age confidence
immer 10.1.310.2.0 age confidence
prettier (source) 3.6.23.8.1 age confidence
react-hook-form (source) 7.63.07.71.1 age confidence
set-cookie-parser 2.7.12.7.2 age confidence
sharp (source, changelog) 0.34.40.34.5 age confidence
tailwindcss (source) 3.4.173.4.19 age confidence
tss-react (source) 4.9.194.9.20 age confidence

Release Notes

postcss/autoprefixer (autoprefixer)

v10.4.24

Compare Source

  • Made Autoprefixer a little faster (by @​Cherry).

v10.4.23

Compare Source

v10.4.22

Compare Source

  • Fixed stretch prefixes on new Can I Use database.
  • Updated fraction.js.
axios/axios (axios)

v1.13.4

Compare Source

Overview

The release addresses issues discovered in v1.13.3 and includes significant CI/CD improvements.

Full Changelog: v1.13.3...v1.13.4

What's New in v1.13.4

Bug Fixes
  • fix: issues with version 1.13.3 (#​7352) (ee90dfc)
    • Fixed issues discovered in v1.13.3 release
    • Cleaned up interceptor test files
    • Improved workflow configurations
Infrastructure & CI/CD
  • refactor: ci and build (#​7340) (8ff6c19)

    • Major refactoring of CI/CD workflows
    • Consolidated workflow files for better maintainability
    • Added mise configuration for the development environment
    • Improved sponsor block update automation
    • Enhanced issue and PR templates
    • Added automatic release notes generation
    • Implemented workflow cancellation for concurrent runs
  • chore: codegen and some updates to workflows (76cf77b)

    • Code generation improvements
    • Workflow optimisations

Migration Notes

Breaking Changes

None in this release.

Deprecations

None in this release.

Contributors

Thank you to all contributors who made this release possible! Special thanks to:

v1.13.3

Compare Source

Bug Fixes
  • http2: Use port 443 for HTTPS connections by default. (#​7256) (d7e6065)
  • interceptor: handle the error in the same interceptor (#​6269) (5945e40)
  • main field in package.json should correspond to cjs artifacts (#​5756) (7373fbf)
  • package.json: add 'bun' package.json 'exports' condition. Load the Node.js build in Bun instead of the browser build (#​5754) (b89217e)
  • silentJSONParsing=false should throw on invalid JSON (#​7253) (#​7257) (7d19335)
  • turn AxiosError into a native error (#​5394) (#​5558) (1c6a86d)
  • types: add handlers to AxiosInterceptorManager interface (#​5551) (8d1271b)
  • types: restore AxiosError.cause type from unknown to Error (#​7327) (d8233d9)
  • unclear error message is thrown when specifying an empty proxy authorization (#​6314) (6ef867e)
Features
Reverts
Contributors to this release

v1.13.2

Compare Source

Bug Fixes
  • http: fix 'socket hang up' bug for keep-alive requests when using timeouts; (#​7206) (8d37233)
  • http: use default export for http2 module to support stubs; (#​7196) (0588880)
Performance Improvements
Contributors to this release

v1.13.1

Compare Source

Bug Fixes
  • http: fixed a regression that caused the data stream to be interrupted for responses with non-OK HTTP statuses; (#​7193) (bcd5581)
Contributors to this release

v1.13.0

Compare Source

Bug Fixes
Features
Contributors to this release

1.12.2 (2025-09-14)

Bug Fixes
  • fetch: use current global fetch instead of cached one when env fetch is not specified to keep MSW support; (#​7030) (cf78825)
Contributors to this release

1.12.1 (2025-09-12)

Bug Fixes
Contributors to this release
vercel/next.js (eslint-config-next)

v14.2.35

Compare Source

v14.2.34

Compare Source

prettier/eslint-plugin-prettier (eslint-plugin-prettier)

v5.5.5

Compare Source

Patch Changes
immerjs/immer (immer)

v10.2.0

Compare Source

Features
  • Optimize Immer performance where possible, introduce setUseStrictIteration (#​1164) (e1996ce)
prettier/prettier (prettier)

v3.8.1

Compare Source

v3.8.0

Compare Source

diff

🔗 Release note

v3.7.4

Compare Source

diff

LWC: Avoid quote around interpolations (#​18383 by @​kovsu)
<!-- Input -->
<div foo={bar}>   </div>

<!-- Prettier 3.7.3 (--embedded-language-formatting off) -->
<div foo="{bar}"></div>

<!-- Prettier 3.7.4 (--embedded-language-formatting off) -->
<div foo={bar}></div>
TypeScript: Fix comment inside union type gets duplicated (#​18393 by @​fisker)
// Input
type Foo = (/** comment */ a | b) | c;

// Prettier 3.7.3
type Foo = /** comment */ (/** comment */ a | b) | c;

// Prettier 3.7.4
type Foo = /** comment */ (a | b) | c;
TypeScript: Fix unstable comment print in union type comments (#​18395 by @​fisker)
// Input
type X = (A | B) & (
  // comment
  A | B
);

// Prettier 3.7.3 (first format)
type X = (A | B) &
  (// comment
  A | B);

// Prettier 3.7.3 (second format)
type X = (
  | A
  | B // comment
) &
  (A | B);

// Prettier 3.7.4
type X = (A | B) &
  // comment
  (A | B);

v3.7.3

Compare Source

diff

API: Fix prettier.getFileInfo() change that breaks VSCode extension (#​18375 by @​fisker)

An internal refactor accidentally broke the VSCode extension plugin loading.

v3.7.2

Compare Source

diff

JavaScript: Fix string print when switching quotes (#​18351 by @​fisker)
// Input
console.log("A descriptor\\'s .kind must be \"method\" or \"field\".")

// Prettier 3.7.1
console.log('A descriptor\\'s .kind must be "method" or "field".');

// Prettier 3.7.2
console.log('A descriptor\\\'s .kind must be "method" or "field".');
JavaScript: Preserve quote for embedded HTML attribute values (#​18352 by @​kovsu)
// Input
const html = /* HTML */ ` <div class="${styles.banner}"></div> `;

// Prettier 3.7.1
const html = /* HTML */ ` <div class=${styles.banner}></div> `;

// Prettier 3.7.2
const html = /* HTML */ ` <div class="${styles.banner}"></div> `;
TypeScript: Fix comment in empty type literal (#​18364 by @​fisker)
// Input
export type XXX = {
  // tbd
};

// Prettier 3.7.1
export type XXX = { // tbd };

// Prettier 3.7.2
export type XXX = {
  // tbd
};

v3.7.1

Compare Source

diff

API: Fix performance regression in doc printer (#​18342 by @​fisker)

Prettier 3.7.1 can be very slow when formatting big files, the regression has been fixed.

v3.7.0

Compare Source

diff

🔗 Release Notes

react-hook-form/react-hook-form (react-hook-form)

v7.71.1

Compare Source

v7.71.0: Version 7.71.0

Compare Source

⚡ perf: memoize FormProvider context value to prevent unnecessary rerenders (#​13235)
🚄 perf: separate control context to prevent unnecessary rerenders (#​13234)
🐞 fix: update isValid when field disabled state changes (#​13231)
👌 chore: optimize bundle size via safe terser options (#​13243) (#​13244)

thanks to @​kamja44, @​a28689604 & @​newsiberian

v7.70.0

Compare Source

v7.69.0: 🎄 Version 7.69.0

Compare Source

📏 feat: align API with useWatch (#​13192)
🤦🏻‍♂️ chore: update @​deprecated names prop on (#​13198)
🏥 chore: safely call function methods on elements (#​13190)
🪖 chore: cve-2025-67779 (#​13196)
🪖 chore: cve-2025-55184 & cve-2025-55183 (#​13194)
🪖 chore: CVE-2025-55182 Critical RCE vulnerabilty (#​13175)
🔬 test: add regression tests for #​12837 and #​13136 (#​13187)
🐞 fix(reset): preserve isValid state when keepIsValid option is used (#​13173)
🐞 fix: ensure each createFormControl.subscribe subscription listens only to the changes it subscribes to (#​12968)
🐞 fix(validation): batch isValidating state updates with validation result (#​13181)
🐞 fix(createFormControl): resolve race condition between setError and setFocus (#​13138) (#​13169)
🧿 fix control prop type (#​13189)
🔔 chore: clean cloneObject logic (#​13179)

thanks to @​PierreCrb, @​a28689604, @​AnuragM7666, @​ap0nia, @​dusan233 & @​hlongc

v7.68.0

Compare Source

v7.67.0: Version 7.67.0

Compare Source

🎯 feat: add exact to useController props (#​13154)

useForm({
  defaultValues: {
    user: {
      name: ''
    }
  }
})

<Controller control={control} name="user" exact={false} /> // subscribe to all user object

✨ fix(types): allow undefined value with async defaultValues in Contr… (#​13160)
🐞 fix(types): correct PathValueImpl type inference (#​13150)

v7.66.1

Compare Source

v7.66.0

Compare Source

v7.65.0: Version 7.65.0

Compare Source

🧿 feat: <Watch /> component (#​12986)

import { useForm, Watch } from 'react-hook-form';

const App = () => {
  const { register, control } = useForm();

  return (
    <div>
      <form>
        <input {...register('foo')} />
        <input {...register('bar')} />
      </form>
      {/* re-render only when value of `foo` changes */}
      <Watch
        control={control}
        names={['foo']}
        render={([foo]) => <span>{foo}</span>}
      />
    </div>
  );
};

🐞 fix: respect parent-provided useFieldArray rules (#​13082) (#​13083
🐞 fix: getDirtyFields submit fields with null values when using useForm (#​13079)

thanks to @​tesseractjh, @​Han5991 & @​jonathanarnault

v7.64.0: Version 7.64.0

Compare Source

🚏 Support optional array fields in PathValueImpl type (#​13057)
🐞 fix: preserve Controller's defaultValue with shouldUnregister prop (#​13063)
✂ chore: remove unused field ids ref in useFieldArray (#​13066)

thanks to @​MPrieur-chaps, @​gynekolog & @​uk960214

nfriedly/set-cookie-parser (set-cookie-parser)

v2.7.2

Compare Source

Fixed:

  • Prevent Object prototype pollution by malicious cookies
  • Removed cookie values from error logs due to their potentially sensitive nature
lovell/sharp (sharp)

v0.34.5

Compare Source

  • Upgrade to libvips v8.17.3 for upstream bug fixes.

  • Add experimental support for prebuilt Linux RISC-V 64-bit binaries.

  • Support building from source with npm v12+, deprecate --build-from-source flag.
    #​4458

  • Add support for BigTIFF output.
    #​4459
    @​throwbi

  • Improve error messaging when only warnings issued.
    #​4465

  • Simplify ICC processing when retaining input profiles.
    #​4468

tailwindlabs/tailwindcss (tailwindcss)

v3.4.19

Compare Source

v3.4.18

Compare Source

Fixed
  • Improve support for raw supports-[…] queries in arbitrary values (#​13605)
  • Fix require.cache error when loaded through a TypeScript file in Node 22.18+ (#​18665)
  • Support import.meta.resolve(…) in configs for new enough Node.js versions (#​18938)
  • Allow using newer versions of postcss-load-config for better ESM and TypeScript PostCSS config support with the CLI (#​18938)
  • Remove irrelevant utility rules when matching important classes (#​19030)
garronej/tss-react (tss-react)

v4.9.20

Compare Source

Full Changelog: garronej/tss-react@v4.9.19...v4.9.20


Configuration

📅 Schedule: Branch creation - Only on Sunday and Saturday ( * * * * 0,6 ) (UTC), 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 dependencies label Oct 4, 2025
@renovate renovate bot force-pushed the renovate/non-major-dependencies branch from 99d68fe to 1960d84 Compare October 8, 2025 08:08
@renovate renovate bot changed the title chore(deps): update dependency tailwindcss to v3.4.18 fix(deps): update non-major dependencies Oct 8, 2025
@renovate renovate bot force-pushed the renovate/non-major-dependencies branch 7 times, most recently from f8cec6a to 91d09ae Compare October 14, 2025 19:30
@renovate renovate bot force-pushed the renovate/non-major-dependencies branch 4 times, most recently from bd5f984 to 58a43a3 Compare October 26, 2025 02:39
@renovate renovate bot force-pushed the renovate/non-major-dependencies branch 7 times, most recently from 71b872c to bc21274 Compare November 4, 2025 02:54
@renovate renovate bot force-pushed the renovate/non-major-dependencies branch 5 times, most recently from a7172ad to 7768dd7 Compare November 14, 2025 02:02
@renovate renovate bot force-pushed the renovate/non-major-dependencies branch 3 times, most recently from 760cc9e to 881d91f Compare November 21, 2025 06:14
@renovate renovate bot force-pushed the renovate/non-major-dependencies branch from 881d91f to eac3d65 Compare November 30, 2025 09:53
@renovate renovate bot force-pushed the renovate/non-major-dependencies branch 6 times, most recently from b4aa56d to 4942ba4 Compare December 20, 2025 06:07
@renovate renovate bot force-pushed the renovate/non-major-dependencies branch 2 times, most recently from 7db3d26 to 4deeac1 Compare December 27, 2025 04:35
@renovate renovate bot force-pushed the renovate/non-major-dependencies branch 3 times, most recently from e76aac9 to 6cf779a Compare January 7, 2026 05:54
@renovate renovate bot force-pushed the renovate/non-major-dependencies branch 4 times, most recently from 4b789c3 to da1bc0a Compare January 14, 2026 19:53
@renovate renovate bot force-pushed the renovate/non-major-dependencies branch 7 times, most recently from 625ce0a to 80ec785 Compare January 24, 2026 06:26
@renovate renovate bot force-pushed the renovate/non-major-dependencies branch 5 times, most recently from b705136 to 5159fbb Compare January 31, 2026 04:28
@renovate renovate bot force-pushed the renovate/non-major-dependencies branch from 5159fbb to dead02e Compare February 1, 2026 01:46
@renovate renovate bot force-pushed the renovate/non-major-dependencies branch from dead02e to 53f0e82 Compare February 3, 2026 19:47
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