Skip to content

Conversation

@renovate
Copy link

@renovate renovate bot commented Jan 27, 2024

This PR contains the following updates:

Package Change Age Confidence
@hookform/resolvers (source) 3.3.4 -> 3.10.0 age confidence
@radix-ui/react-accordion (source) 1.1.2 -> 1.2.12 age confidence
@radix-ui/react-aspect-ratio (source) 1.0.3 -> 1.1.7 age confidence
@radix-ui/react-avatar (source) 1.0.4 -> 1.1.10 age confidence
@radix-ui/react-checkbox (source) 1.0.4 -> 1.3.3 age confidence
@radix-ui/react-dropdown-menu (source) 2.0.6 -> 2.1.16 age confidence
@radix-ui/react-label (source) 2.0.2 -> 2.1.7 age confidence
@radix-ui/react-navigation-menu (source) 1.1.4 -> 1.2.14 age confidence
@radix-ui/react-popover (source) 1.0.7 -> 1.1.15 age confidence
@radix-ui/react-radio-group (source) 1.1.3 -> 1.3.8 age confidence
@radix-ui/react-select (source) 2.0.0 -> 2.2.6 age confidence
@radix-ui/react-separator (source) 1.0.3 -> 1.1.7 age confidence
@radix-ui/react-slot (source) 1.0.2 -> 1.2.3 age confidence
@radix-ui/react-switch (source) 1.0.3 -> 1.2.6 age confidence
@radix-ui/react-toggle (source) 1.0.3 -> 1.1.10 age confidence
@radix-ui/react-tooltip (source) 1.0.7 -> 1.2.8 age confidence
@types/node (source) 20.8.10 -> 20.19.22 age confidence
autoprefixer 10.4.17 -> 10.4.21 age confidence
class-variance-authority 0.7.0 -> 0.7.1 age confidence
clsx 2.1.0 -> 2.1.1 age confidence
date-fns 3.3.1 -> 3.6.0 age confidence
discord-api-types (source) ^0.37.70 -> ^0.38.0 age confidence
eslint (source) 8.53.0 -> 8.57.1 age confidence
lucide-react (source) ^0.330.0 -> ^0.546.0 age confidence
next-themes ^0.2.1 -> ^0.4.0 age confidence
postcss (source) 8.4.33 -> 8.5.6 age confidence
tailwind-merge 2.2.1 -> 2.6.0 age confidence
tailwindcss (source) 3.4.1 -> 3.4.18 age confidence
typescript (source) 5.2.2 -> 5.9.3 age confidence
yarn (source) 4.1.0 -> 4.10.3 age confidence
zod (source) 3.22.4 -> 3.25.76 age confidence

Release Notes

react-hook-form/resolvers (@​hookform/resolvers)

v3.10.0

Compare Source

Features

v3.9.1

Compare Source

Bug Fixes

v3.9.0

Compare Source

Features
  • fluentvalidation-ts: add fluentvalidation-ts resolver (#​702) (5fc1e63)
import { useForm } from 'react-hook-form';
import { fluentValidationResolver } from '@​hookform/resolvers/fluentvalidation-ts';
import { Validator } from 'fluentvalidation-ts';

class FormDataValidator extends Validator<FormData> {
  constructor() {
    super();

    this.ruleFor('username')
      .notEmpty()
      .withMessage('username is a required field');
    this.ruleFor('password')
      .notEmpty()
      .withMessage('password is a required field');
  }
}

const App = () => {
  const { register, handleSubmit } = useForm({
    resolver: fluentValidationResolver(new FormDataValidator()),
  });

  return (
    <form onSubmit={handleSubmit((d) => console.log(d))}>
      <input {...register('username')} />
      {errors.username && <span role="alert">{errors.username.message}</span>}
      <input {...register('password')} />
      {errors.password && <span role="alert">{errors.password.message}</span>}
      <button type="submit">submit</button>
    </form>
  );
};

v3.8.0

Compare Source

Features

v3.7.0

Compare Source

Bug Fixes
  • zodResolver: cannot read properties of undefined (reading 'length') (a3e50c6)
  • chore: update valibot dependency to version >=0.33.0 (#​695)
Features
import { useForm } from 'react-hook-form';
import { vineResolver } from '@&#8203;hookform/resolvers/vine';
import vine from '@&#8203;vinejs/vine';

const schema = vine.compile(
  vine.object({
    username: vine.string().minLength(1),
    password: vine.string().minLength(1),
  }),
);

const App = () => {
  const { register, handleSubmit } = useForm({
    resolver: vineResolver(schema),
  });

  return (
    <form onSubmit={handleSubmit((d) => console.log(d))}>
      <input {...register('username')} />
      {errors.username && <span role="alert">{errors.username.message}</span>}
      <input {...register('password')} />
      {errors.password && <span role="alert">{errors.password.message}</span>}
      <button type="submit">submit</button>
    </form>
  );
};

v3.6.0

Compare Source

Features

v3.5.0

Compare Source

Features

v3.4.2

Compare Source

Bug Fixes

v3.4.1

Compare Source

Bug Fixes

v3.4.0

Compare Source

Features
radix-ui/primitives (@​radix-ui/react-accordion)

v1.2.7

v1.2.6

v1.2.5

v1.2.4

Compare Source

v1.2.3

Compare Source

v1.2.2

Compare Source

v1.2.1

Compare Source

v1.2.0

postcss/autoprefixer (autoprefixer)

v10.4.21

Compare Source

v10.4.20

Compare Source

  • Fixed fit-content prefix for Firefox.

v10.4.19

Compare Source

  • Removed end value has mixed support, consider using flex-end warning
    since end/start now have good support.

v10.4.18

Compare Source

  • Fixed removing -webkit-box-orient on -webkit-line-clamp (@​Goodwine).
joe-bell/cva (class-variance-authority)

v0.7.1

Compare Source

What's Changed

New Contributors

Full Changelog: joe-bell/cva@v0.7.0...v0.7.1

lukeed/clsx (clsx)

v2.1.1

Compare Source

Patches

Chores

  • Add licenses.dev badge: 684509c
    This service recursively analyzes entire dependency graphs to ensure that a package (or your project) is using permissive licenses. For example, here's a results table for polka@next and a larger astro example.

Full Changelog: lukeed/clsx@v2.1.0...v2.1.1

date-fns/date-fns (date-fns)

v3.6.0

Compare Source

On this release worked @​kossnocorp and @​world1dan. Also, thanks to @​seated for sponsoring me.

Fixed
Added

v3.5.0

Compare Source

Kudos to @​fturmel, @​kossnocorp, @​makstyle119, @​tan75, @​marcreichel, @​tareknatsheh and @​audunru for working on the release. Also, thanks to @​seated for sponsoring me.

Fixed
Added

v3.4.0

Compare Source

Kudos to @​kossnocorp, @​sakamossan and @​Revan99 for working on the release. Also, thanks to @​seated for sponsoring me.

Added
discordjs/discord-api-types (discord-api-types)

v0.38.30

Compare Source

Features

v0.38.29

Compare Source

Bug Fixes

v0.38.28

Compare Source

Bug Fixes

v0.38.27

Compare Source

Bug Fixes

v0.38.26

Compare Source

Bug Fixes
  • add guild_id back to GatewayVoiceStateUpdateDispatchData (#​1346) (e52ac85)

v0.38.25

Compare Source

Features

v0.38.24

Compare Source

Features

v0.38.23

Compare Source

Bug Fixes
Features

v0.38.22

Compare Source

Features

v0.38.21

Compare Source

Features

v0.38.20

Compare Source

v0.38.19

Compare Source

Features
  • GatewayActivity: add url & status display type fields (#​1326) (5f9c1e1)

v0.38.18

Compare Source

Bug Fixes
Features

v0.38.17

Compare Source

Features

v0.38.16

Compare Source

Bug Fixes
  • APIApplicationCommandChannelOption: exclude directory channels (#​1300) (574e5c1)

v0.38.15

Compare Source

Bug Fixes
Features

v0.38.14

Compare Source

Features

v0.38.13

Compare Source

Features

v0.38.12

Compare Source

Features

v0.38.11

Compare Source

Bug Fixes
Features

v0.38.10

Compare Source

v0.38.9

Compare Source

Bug Fixes
Features

v0.38.8

Compare Source

v0.38.7

Compare Source

v0.38.6

Compare Source

Bug Fixes
Features

v0.38.5

Compare Source

Bug Fixes
Features

v0.38.4

Compare Source

Features

v0.38.3

Compare Source

Features

v0.38.2

Compare Source

Bug Fixes

v0.38.1

Compare Source

Features
BREAKING CHANGES
  • Certain Component alias types have been renamed (for example APIMessageActionRowComponent is now APIComponentInMessageActionRow

0.37.120 (2025-04-10)

Bug Fixes
  • Ensure autocomplete option values resolve to string for numerical types (#​1198) (cfac62e)
Features

0.37.119 (2025-02-02)

Bug Fixes
  • route escaping round three (d5cdb37)

0.37.118 (2025-01-27)

Features

0.37.117 (2025-01-20)

0.37.116 (2025-01-16)

Features

0.37.115 (2025-01-02)

0.37.114 (2024-12-23)

Bug Fixes

0.37.113 (2024-12-22)

Bug Fixes
  • skip encoded url parts from re-encoding (fc4e7be)
Features

0.37.112 (2024-12-19)

Features

0.37.111 (2024-12-09)

0.37.110 (2024-11-28)

Features

0.37.109 (2024-11-26)

Features

0.37.108 (2024-11-25)

Features

0.37.107 (2024-11-21)

Bug Fixes
  • security: escape path parameters (1ba3472)

0.37.106 (2024-11-21)

0.37.105 (2024-11-14)

Features

Configuration

📅 Schedule: Branch creation - "every weekend" (UTC), Automerge - "before 4am" (UTC).

🚦 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 was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from d522d2a to 58ecf87 Compare February 5, 2024 05:47
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from a97552f to 5d1b1aa Compare February 14, 2024 18:37
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from bb993e8 to 98da749 Compare February 20, 2024 00:58
@renovate renovate bot changed the title Update all non-major dependencies chore(deps): update all non-major dependencies Feb 20, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 10 times, most recently from c3a59e2 to b8082be Compare February 26, 2024 21:32
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 494d1d3 to 81f874c Compare February 29, 2024 14:41
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from 9a260ff to dc93b87 Compare November 12, 2025 23:55
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from 74acdb9 to c547d97 Compare November 20, 2025 18:45
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 0c3fa83 to 4119483 Compare December 2, 2025 21:57
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 31a379b to 259acc4 Compare December 8, 2025 19:28
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from 47088c6 to a296025 Compare December 17, 2025 18:41
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from a296025 to 80fe684 Compare December 21, 2025 14:04
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 80fe684 to 712c8fc Compare December 31, 2025 16:30
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 949ae43 to 523cdae Compare January 13, 2026 02:28
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 3e63140 to 549a921 Compare January 18, 2026 22:14
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 549a921 to 5845e81 Compare January 23, 2026 19:30
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 5845e81 to 2299696 Compare January 26, 2026 13:28
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.

0 participants