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

chore(deps): update non-major #178

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

chore(deps): update non-major #178

wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Sep 1, 2023

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@commitlint/cli (source) ^17.2.0 -> ^17.8.1 age adoption passing confidence devDependencies patch
@commitlint/config-conventional (source) ^17.2.0 -> ^17.8.1 age adoption passing confidence devDependencies patch
@hookform/resolvers (source) 3.3.2 -> 3.10.0 age adoption passing confidence dependencies minor
@sanity/client (source) ^6.7.0 -> ^6.28.2 age adoption passing confidence devDependencies minor
@sanity/color (source) ^2.1.20 -> ^2.2.5 age adoption passing confidence devDependencies patch
@sanity/icons (source) ^2.0.0 -> ^2.11.8 age adoption passing confidence devDependencies minor
@sanity/incompatible-plugin 1.0.4 -> 1.0.5 age adoption passing confidence dependencies patch
@sanity/pkg-utils ^2.4.8 -> ^2.4.10 age adoption passing confidence devDependencies patch
@sanity/plugin-kit ^3.1.10 -> ^3.1.12 age adoption passing confidence devDependencies patch
@sanity/semantic-release-preset (source) ^2.0.2 -> ^2.0.5 age adoption passing confidence devDependencies patch
@tanem/react-nprogress 5.0.51 -> 5.0.55 age adoption passing confidence dependencies patch
@types/is-hotkey (source) ^0.1.7 -> ^0.1.10 age adoption passing confidence devDependencies patch
@types/pluralize (source) ^0.0.29 -> ^0.0.33 age adoption passing confidence devDependencies patch
@types/react (source) ^18 -> ^18.3.18 age adoption passing confidence devDependencies minor
@types/react-dom (source) ^18 -> ^18.3.5 age adoption passing confidence devDependencies minor
@types/react-file-icon (source) ^1.0.1 -> ^1.0.4 age adoption passing confidence devDependencies patch
@types/react-redux (source) ^7.1.24 -> ^7.1.34 age adoption passing confidence devDependencies patch
@types/styled-components (source) ^5.1.7 -> ^5.1.34 age adoption passing confidence devDependencies patch
@typescript-eslint/eslint-plugin (source) ^5.42.0 -> ^5.62.0 age adoption passing confidence devDependencies patch
@typescript-eslint/parser (source) ^5.42.0 -> ^5.62.0 age adoption passing confidence devDependencies patch
actions/checkout 93ea575 -> f43a0e5 action digest
actions/setup-node 8c91899 -> 1a4442c action digest
eslint (source) ^8.27.0 -> ^8.57.1 age adoption passing confidence devDependencies minor
eslint-config-prettier ^8.5.0 -> ^8.10.0 age adoption passing confidence devDependencies patch
eslint-plugin-react ^7.31.10 -> ^7.37.4 age adoption passing confidence devDependencies minor
eslint-plugin-react-hooks (source) ^4.6.0 -> ^4.6.2 age adoption passing confidence devDependencies patch
groq (source) 3.18.1 -> 3.77.2 age adoption passing confidence dependencies minor
is-hotkey ^0.2.0 -> ^1.0.0 dependencies replacement
npm-run-all ^4.1.5 -> ^5.0.0 dependencies replacement
prettier (source) ^2.7.1 -> ^2.8.8 age adoption passing confidence devDependencies patch
prettier-plugin-packagejson ^2.3.0 -> ^2.5.10 age adoption passing confidence devDependencies minor
react (source) ^18 -> ^18.3.1 age adoption passing confidence devDependencies minor
react-dom (source) ^18 -> ^18.3.1 age adoption passing confidence devDependencies minor
react-file-icon 1.3.0 -> 1.6.0 age adoption passing confidence dependencies minor
react-hook-form (source) 7.47.0 -> 7.54.2 age adoption passing confidence dependencies minor
react-select (source) 5.7.7 -> 5.10.0 age adoption passing confidence dependencies minor
react-virtuoso (source) 4.6.2 -> 4.12.5 age adoption passing confidence dependencies minor
rxjs (source) 7.8.1 -> 7.8.2 age adoption passing confidence dependencies patch
sanity (source) ^3.2.0 -> ^3.77.2 age adoption passing confidence devDependencies minor
standard-version ^9.5.0 -> ^9.5.0 devDependencies replacement
styled-components (source) ^5.3.3 -> ^5.3.11 age adoption passing confidence devDependencies patch
typescript (source) ^4.8.4 -> ^4.9.5 age adoption passing confidence devDependencies patch
zod (source) 3.22.4 -> 3.24.2 age adoption passing confidence dependencies minor

This is a special PR that replaces is-hotkey with the community suggested minimal stable replacement version.

This is a special PR that replaces npm-run-all with the community suggested minimal stable replacement version.

This is a special PR that replaces standard-version with the community suggested minimal stable replacement version.


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

v3.3.4

Compare Source

Bug Fixes
  • error handling for array errors with root error (1bfc6ab)

v3.3.3

Compare Source

Bug Fixes
sanity-io/client (@​sanity/client)

v6.28.2

Compare Source

Bug Fixes

v6.28.1

Compare Source

Bug Fixes

v6.28.0

Compare Source

Features
Bug Fixes

v6.27.2

Compare Source

Bug Fixes

v6.27.1

Compare Source

Bug Fixes
  • csm: handle Cannot read properties of undefined (cb80d68)

v6.27.0

Compare Source

Features

v6.26.1

Compare Source

Bug Fixes

v6.26.0

Compare Source

Features

v6.25.0

Compare Source

Features
  • request: add flag to disable logging api warnings (#​925) (3f90ab0)

v6.24.4

Compare Source

Bug Fixes

v6.24.3

Compare Source

Bug Fixes

v6.24.2

Compare Source

Bug Fixes

v6.24.1

Compare Source

Bug Fixes

v6.24.0

Compare Source

Features
Bug Fixes
  • export validateApiPerspective (b73ae46)

v6.23.0

Compare Source

Features
Bug Fixes
  • types: add (abort) signal to raw request typings (#​926) (fcd9a16)

v6.22.5

Compare Source

Bug Fixes

v6.22.4

Compare Source

Bug Fixes
  • stega: add textTheme to deny list (39edfe1)
  • stega: ignore paths that end with Id (81aa664)

v6.22.3

Compare Source

Bug Fixes

v6.22.2

Compare Source

Bug Fixes

v6.22.1

Compare Source

Bug Fixes
  • add missing listenerName property on welcome event (#​894) (6173089)

v6.22.0

Compare Source

Features
Bug Fixes

v6.21.3

Compare Source

Bug Fixes
  • deprecate studioHost, externalStudioHost in typings (#​879) (ebe840b)
  • support signal on getDocument(s) to cancel requests (#​881) (13d71bb)

v6.21.2

Compare Source

Bug Fixes

v6.21.1

Compare Source

Bug Fixes
  • add support for includeMutations listen parameter (#​872) (5f0a991)

v6.21.0

Compare Source

Features
  • codegen: Allow query reponse types to be overridden through SanityQueries (#​858) (c25d51a)

v6.20.2

Compare Source

Bug Fixes

v6.20.1

Compare Source

Bug Fixes
  • add warning about setting both useCdn and withCredentials to true (#​849) (ae01edb)
  • deps: update dependency get-it to ^8.6.1 (#​856) (ced69bc)

v6.20.0

Compare Source

Features

v6.19.2

Compare Source

Bug Fixes

v6.19.1

Compare Source

Bug Fixes
  • types: adjust action types to reflect Actions API (#​830) (e116c62)

v6.19.0

Compare Source

Features

[v6.18.3](https://redirect.github.com/sanit


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 using a curated preset maintained by Sanity. View repository job log here

@renovate renovate bot requested a review from a team September 1, 2023 01:31
@renovate renovate bot force-pushed the renovate/non-major branch 25 times, most recently from ff92ea7 to 780dbb0 Compare September 8, 2023 04:01
@renovate renovate bot force-pushed the renovate/non-major branch 2 times, most recently from 9ec6bd2 to 444cf22 Compare September 8, 2023 17:28
@renovate renovate bot force-pushed the renovate/non-major branch 3 times, most recently from 459be9f to 7ca6708 Compare December 11, 2024 17:10
@renovate renovate bot force-pushed the renovate/non-major branch 3 times, most recently from 7307dfd to c926aa1 Compare December 21, 2024 17:49
@renovate renovate bot force-pushed the renovate/non-major branch from c926aa1 to 56f5e2e Compare December 24, 2024 03:41
@renovate renovate bot force-pushed the renovate/non-major branch 3 times, most recently from 5be6841 to ce42aac Compare January 9, 2025 00:38
@renovate renovate bot force-pushed the renovate/non-major branch 3 times, most recently from 8106fa9 to 2bd76eb Compare January 21, 2025 16:26
@renovate renovate bot force-pushed the renovate/non-major branch 3 times, most recently from 3585e8a to cfe5745 Compare January 30, 2025 03:26
@renovate renovate bot force-pushed the renovate/non-major branch 3 times, most recently from 6f1e6d7 to bea6b45 Compare February 5, 2025 18:44
@renovate renovate bot force-pushed the renovate/non-major branch 3 times, most recently from eb83a78 to f2cab7a Compare February 19, 2025 23:43
@renovate renovate bot force-pushed the renovate/non-major branch 4 times, most recently from 3453d9d to 0061241 Compare February 25, 2025 00:48
@renovate renovate bot force-pushed the renovate/non-major branch 2 times, most recently from e0e77f1 to fce530e Compare March 1, 2025 07:07
@renovate renovate bot force-pushed the renovate/non-major branch from fce530e to f5d8cb0 Compare March 3, 2025 07:44
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