Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 1, 2024

Bumps the dashboard group with 24 updates in the /frontend/dashboard directory:

Package From To
@generatesac/lib 0.0.12 0.0.193
@hookform/resolvers 3.6.0 3.9.0
@radix-ui/react-dialog 1.0.5 1.1.1
@radix-ui/react-label 2.0.2 2.1.0
@radix-ui/react-popover 1.0.7 1.1.1
@radix-ui/react-select 2.0.0 2.1.1
@reduxjs/toolkit 2.2.5 2.2.7
@tiptap/extension-link 2.4.0 2.6.6
@tiptap/extension-underline 2.4.0 2.6.6
@tiptap/react 2.4.0 2.6.6
@tiptap/starter-kit 2.4.0 2.6.6
lucide-react 0.394.0 0.437.0
next 14.2.3 14.2.7
react-hook-form 7.51.5 7.53.0
tailwind-merge 2.3.0 2.5.2
@types/react 18.3.3 18.3.5
autoprefixer 10.4.19 10.4.20
eslint-config-next 14.2.3 14.2.7
eslint-plugin-prettier 5.1.3 5.2.1
postcss 8.4.38 8.4.42
prettier 3.3.1 3.3.3
tailwindcss 3.4.4 3.4.10
ts-jest 29.1.4 29.2.5
typescript 5.4.5 5.5.4

Updates @generatesac/lib from 0.0.12 to 0.0.193

Commits

Updates @hookform/resolvers from 3.6.0 to 3.9.0

Release notes

Sourced from @​hookform/resolvers's releases.

v3.9.0

3.9.0 (2024-07-05)

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

3.8.0 (2024-07-05)

... (truncated)

Commits
  • 5fc1e63 feat(fluentvalidation-ts): add fluentvalidation-ts resolver (#702)
  • 039385e ci: node (#701)
  • 1c277bb ci: fix publish step (#700)
  • 18e423f feat: add typeschema resolver (#699)
  • 4b9acb7 Revert "fix: move back to in-build set and remove lodash.set (#685)"
  • e8e0f80 feat(typeboxResolver): make TypeBox resolver work with compiled schema (#674)
  • c0d528b feat: add VineJS resolver (#677)
  • a3e50c6 fix(zodResolver): cannot read properties of undefined (reading 'length')
  • f0174e0 chore: update valibot dependency to version >=0.33.0 (#695)
  • f7a4fd4 Update README.md
  • See full diff in compare view

Updates @radix-ui/react-dialog from 1.0.5 to 1.1.1

Commits
Maintainer changes

This version was pushed to npm by vladmoroz, a new releaser for @​radix-ui/react-dialog since your current version.


Updates @radix-ui/react-label from 2.0.2 to 2.1.0

Commits
Maintainer changes

This version was pushed to npm by vladmoroz, a new releaser for @​radix-ui/react-label since your current version.


Updates @radix-ui/react-popover from 1.0.7 to 1.1.1

Commits
Maintainer changes

This version was pushed to npm by vladmoroz, a new releaser for @​radix-ui/react-popover since your current version.


Updates @radix-ui/react-select from 2.0.0 to 2.1.1

Commits
Maintainer changes

This version was pushed to npm by vladmoroz, a new releaser for @​radix-ui/react-select since your current version.


Updates @radix-ui/react-slot from 1.0.2 to 1.1.0

Commits
Maintainer changes

This version was pushed to npm by vladmoroz, a new releaser for @​radix-ui/react-slot since your current version.


Updates @reduxjs/toolkit from 2.2.5 to 2.2.7

Release notes

Sourced from @​reduxjs/toolkit's releases.

v2.2.7

This bugfix release fixes issues with "TS type portability" errors, improves build artifact tree shaking behavior, and exports some additional TS types.

Changelog

TS Type Portability

We've had a slew of issues reported around "TS type portability" errors, such as:

The error messages are typically along the lines of:

Type error: The inferred type of 'configureStore' cannot be named without a reference to '@reduxjs/toolkit/node_modules/redux'. This is likely not portable. A type annotation is necessary.

@​aryaemami59 did some deep investigation and concluded these were due to a mixture of using interface instead of type in most places, not pre-bundling our TS typedefs, and not exporting some of the unique symbols we use internally.

Arya put together a highly detailed writeup and set of fixes in [ #4467: Fix: TypeScript Type Portability Issues](#4467), and that appears to resolve all of those issues we've seen. Thank you!

Other Changes

Arya also did significant work to improve RTK's treeshaking, tweaking internal definitions to let bundlers better separate out unused code.

We've exported additional types like UpdateDefinitions and RetryOptions, per request.

listenerMiddleware.withTypes() methods now allow passing in an ExtraArgument generic.

What's Changed

Full Changelog: reduxjs/redux-toolkit@v2.2.6...v2.2.7

v2.2.6

This bugfix release:

  • Brings internal useIsomorphicLayoutEffect usage in line with React Redux in React Native environments
  • Exports FetchBaseQueryArgs type
  • Fixes an issue in recent createEntityAdapter sorting perf improvements that could (in specific cases) cause Immer to throw an error

What's Changed

... (truncated)

Commits

Updates @tiptap/extension-link from 2.4.0 to 2.6.6

Release notes

Sourced from @​tiptap/extension-link's releases.

@​tiptap/extension-link@​2.5.4

Patch Changes

  • dd7f9ac: There was an issue with the cjs bundling of packages and default exports, now we resolve default exports in legacy compatible way
  • Updated dependencies [dd7f9ac]

@​tiptap/extension-link@​2.5.3

Patch Changes

  • a473826: Make openOnClick backwards compatible with previous whenNotEditable value, this is now the default and is deprecated
Changelog

Sourced from @​tiptap/extension-link's changelog.

2.6.6

Patch Changes

  • Updated dependencies [8d8d999]

2.6.5

Patch Changes

2.6.4

Patch Changes

  • 593f107: Respect custom protocols for links again, custom protocols are supported in additional to the default set #5468

2.6.3

Patch Changes

  • Updated dependencies [da76972]

2.6.2

Patch Changes

2.6.1

Patch Changes

2.6.0

Patch Changes

  • 08b4319: Fixes a bug where link href was converted to number or boolean during HTML parsing, leading to a crash in rendering.

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by nperez0111, a new releaser for @​tiptap/extension-link since your current version.


Updates @tiptap/extension-underline from 2.4.0 to 2.6.6

Release notes

Sourced from @​tiptap/extension-underline's releases.

@​tiptap/extension-underline@​2.5.4

Patch Changes

  • dd7f9ac: There was an issue with the cjs bundling of packages and default exports, now we resolve default exports in legacy compatible way
  • Updated dependencies [dd7f9ac]
    • @​tiptap/core@​2.5.4

@​tiptap/extension-underline@​2.5.3

Patch Changes

  • @​tiptap/core@​2.5.3

@​tiptap/extension-underline@​2.5.2

Patch Changes

  • Updated dependencies [07f4c03]
    • @​tiptap/core@​2.5.2
Changelog

Sourced from @​tiptap/extension-underline's changelog.

2.6.6

Patch Changes

  • Updated dependencies [8d8d999]
    • @​tiptap/core@​2.6.6

2.6.5

Patch Changes

  • @​tiptap/core@​2.6.5

2.6.4

Patch Changes

  • @​tiptap/core@​2.6.4

2.6.3

Patch Changes

  • Updated dependencies [da76972]
    • @​tiptap/core@​2.6.3

2.6.2

Patch Changes

  • @​tiptap/core@​2.6.2

2.6.1

Patch Changes

  • @​tiptap/core@​2.6.1

2.6.0

Patch Changes

  • Updated dependencies [86a8553]
  • Updated dependencies [222f2ac]
  • Updated dependencies [e31673d]
    • @​tiptap/core@​2.6.0

2.5.9

Patch Changes

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by nperez0111, a new releaser for @​tiptap/extension-underline since your current version.


Updates @tiptap/react from 2.4.0 to 2.6.6

Release notes

Sourced from @​tiptap/react's releases.

@​tiptap/react@​2.5.4

Patch Changes

  • dd7f9ac: There was an issue with the cjs bundling of packages and default exports, now we resolve default exports in legacy compatible way
  • Updated dependencies [dd7f9ac]
    • @​tiptap/extension-floating-menu@​2.5.4
    • @​tiptap/extension-bubble-menu@​2.5.4
    • @​tiptap/core@​2.5.4
    • @​tiptap/pm@​2.5.4

@​tiptap/react@​2.5.3

Patch Changes

  • 70eebfd: The optional deps argument to useEditor was not being respected for performance optimizations, now if deps are declared a new editor instance is created
    • @​tiptap/core@​2.5.3
    • @​tiptap/extension-bubble-menu@​2.5.3
    • @​tiptap/extension-floating-menu@​2.5.3
    • @​tiptap/pm@​2.5.3

@​tiptap/react@​2.5.2

Patch Changes

  • Updated dependencies [07f4c03]
    • @​tiptap/core@​2.5.2
    • @​tiptap/extension-bubble-menu@​2.5.2
    • @​tiptap/extension-floating-menu@​2.5.2
    • @​tiptap/pm@​2.5.2
Changelog

Sourced from @​tiptap/react's changelog.

2.6.6

Patch Changes

  • Updated dependencies [8d8d999]
    • @​tiptap/core@​2.6.6
    • @​tiptap/extension-bubble-menu@​2.6.6
    • @​tiptap/extension-floating-menu@​2.6.6
    • @​tiptap/pm@​2.6.6

2.6.5

Patch Changes

  • @​tiptap/core@​2.6.5
  • @​tiptap/extension-bubble-menu@​2.6.5
  • @​tiptap/extension-floating-menu@​2.6.5
  • @​tiptap/pm@​2.6.5

2.6.4

Patch Changes

  • 6a0f4f3: Resolves a bug where useEditor may not properly cleanup an instance created when in React's StrictMode #5492
    • @​tiptap/core@​2.6.4
    • @​tiptap/extension-bubble-menu@​2.6.4
    • @​tiptap/extension-floating-menu@​2.6.4
    • @​tiptap/pm@​2.6.4

2.6.3

Patch Changes

  • Updated dependencies [da76972]
    • @​tiptap/core@​2.6.3
    • @​tiptap/extension-bubble-menu@​2.6.3
    • @​tiptap/extension-floating-menu@​2.6.3
    • @​tiptap/pm@​2.6.3

2.6.2

Patch Changes

  • d4d99e8: When changing the types, a bug was introduced where null could no longer be a valid value
    • @​tiptap/core@​2.6.2
    • @​tiptap/extension-bubble-menu@​2.6.2
    • @​tiptap/extension-floating-menu@​2.6.2
    • @​tiptap/pm@​2.6.2

2.6.1

... (truncated)

Commits
  • ec6121d chore(release): release version 2.6.6 (#5537)
  • f8d79da chore(release): release version 2.6.5 (#5532)
  • ae6cb9d chore(release): release version 2.6.4 (#5497)
  • 6a0f4f3 fix(react): attempt to cleanup editor instances, on creation #5492 (#5496)
  • 3f5dbbb chore(release): release version v2.6.3 (#5484)
  • b75454e chore(release): release version 2.6.2 (#5482)
  • d4d99e8 fix(react): the editor passed into EditorContent can be null
  • 6d1621c chore: rm redundant export
  • d137c31 chore(release): release version 2.6.1 (#5480)
  • a42692e fix(react): update typescript types to be backwards-compatible (#5479)
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by nperez0111, a new releaser for @​tiptap/react since your current version.


Updates @tiptap/starter-kit from 2.4.0 to 2.6.6

Release notes

Sourced from @​tiptap/starter-kit's releases.

@​tiptap/starter-kit@​2.5.4

Patch Changes

  • dd7f9ac: There was an issue with the cjs bundling of packages and default exports, now we resolve default exports in legacy compatible way
  • Updated dependencies [dd7f9ac]
    • @​tiptap/extension-horizontal-rule@​2.5.4
    • @​tiptap/extension-ordered-list@​2.5.4
    • @​tiptap/extension-bullet-list@​2.5.4
    • @​tiptap/extension-blockquote@​2.5.4
    • @​tiptap/extension-code-block@​2.5.4
    • @​tiptap/extension-dropcursor@​2.5.4
    • @​tiptap/extension-hard-break@​2.5.4
    • @​tiptap/extension-gapcursor@​2.5.4
    • @​tiptap/extension-list-item@​2.5.4
    • @​tiptap/extension-paragraph@​2.5.4
    • @​tiptap/extension-document@​2.5.4
    • @​tiptap/extension-heading@​2.5.4
    • @​tiptap/extension-history@​2.5.4
    • @​tiptap/extension-italic@​2.5.4
    • @​tiptap/extension-strike@​2.5.4
    • @​tiptap/extension-bold@​2.5.4
    • @​tiptap/extension-code@​2.5.4
    • @​tiptap/extension-text@​2.5.4
    • @​tiptap/core@​2.5.4

@​tiptap/starter-kit@​2.5.3

Patch Changes

  • @​tiptap/core@​2.5.3
  • @​tiptap/extension-blockquote@​2.5.3
  • @​tiptap/extension-bold@​2.5.3
  • @​tiptap/extension-bullet-list@​2.5.3
  • @​tiptap/extension-code@​2.5.3
  • @​tiptap/extension-code-block@​2.5.3
  • @​tiptap/extension-document@​2.5.3
  • @​tiptap/extension-dropcursor@​2.5.3
  • @​tiptap/extension-gapcursor@​2.5.3
  • @​tiptap/extension-hard-break@​2.5.3
  • @​tiptap/extension-heading@​2.5.3
  • @​tiptap/extension-history@​2.5.3
  • @​tiptap/extension-horizontal-rule@​2.5.3
  • @​tiptap/extension-italic@​2.5.3
  • @​tiptap/extension-list-item@​2.5.3
  • @​tiptap/extension-ordered-list@​2.5.3
  • @​tiptap/extension-paragraph@​2.5.3
  • @​tiptap/extension-strike@​2.5.3
  • @​tiptap/extension-text@​2.5.3

@​tiptap/starter-kit@​2.5.2

Patch Changes

... (truncated)

Changelog

Sourced from @​tiptap/starter-kit's changelog.

2.6.6

Patch Changes

  • Updated dependencies [8d8d999]
    • @​tiptap/core@​2.6.6
    • @​tiptap/extension-blockquote@​2.6.6
    • @​tiptap/extension-bold@​2.6.6
    • @​tiptap/extension-bullet-list@​2.6.6
    • @​tiptap/extension-code@​2.6.6
    • @​tiptap/extension-code-block@​2.6.6
    • @​tiptap/extension-document@​2.6.6
    • @​tiptap/extension-dropcursor@​2.6.6
    • @​tiptap/extension-gapcursor@​2.6.6
    • @​tiptap/extension-hard-break@​2.6.6
    • @​tiptap/extension-heading@​2.6.6
    • @​tiptap/extension-history@​2.6.6
    • @​tiptap/extension-horizontal-rule@​2.6.6
    • @​tiptap/extension-italic@​2.6.6
    • @​tiptap/extension-list-item@​2.6.6
    • @​tiptap/extension-ordered-list@​2.6.6
    • @​tiptap/extension-paragraph@​2.6.6
    • @​tiptap/extension-strike@​2.6.6
    • @​tiptap/extension-text@​2.6.6
    • @​tiptap/pm@​2.6.6

2.6.5

Patch Changes

  • @​tiptap/core@​2.6.5
  • @​tiptap/extension-blockquote@​2.6.5
  • @​tiptap/extension-bold@​2.6.5
  • @​tiptap/extension-bullet-list@​2.6.5
  • @​tiptap/extension-code@​2.6.5
  • @​tiptap/extension-code-block@​2.6.5
  • @​tiptap/extension-document@​2.6.5
  • @​tiptap/extension-dropcursor@​2.6.5
  • @​tiptap/extension-gapcursor@​2.6.5
  • @​tiptap/extension-hard-break@​2.6.5
  • @​tiptap/extension-heading@​2.6.5
  • @​tiptap/extension-history@​2.6.5
  • @​tiptap/extension-horizontal-rule@​2.6.5
  • @​tiptap/extension-italic@​2.6.5
  • @​tiptap/extension-list-item@​2.6.5
  • @​tiptap/extension-ordered-list@​2.6.5
  • @​tiptap/extension-paragraph@​2.6.5
  • @​tiptap/extension-strike@​2.6.5
  • @​tiptap/extension-text@​2.6.5
  • @​tiptap/pm@​2.6.5

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by nperez0111, a new releaser for @​tiptap/starter-kit since your current version.


Updates lucide-react from 0.394.0 to 0.437.0

Release notes

Sourced from lucide-react's releases.

New icons 0.437.0

Modified Icons 🔨

New icons 0.436.0

Modified Icons 🔨

New icons 0.435.0

Modified Icons 🔨

New icons 0.434.0

New icons 🎨

Modified Icons 🔨

New icons 0.433.0

New icons 🎨

Fixes Lucide Solid

New icons 0.432.0

New icons 🎨

... (truncated)

Commits

Updates next from 14.2.3 to 14.2.7

Release notes

Sourced from next's releases.

v14.2.7

[!NOTE]
This release is backporting bug fixes. It does not include all pending features/changes on canary.

Core Changes

  • Revert "chore: externalize undici for bundling" (#65727)
  • Refactor internal routing headers to use request meta (#66987)
  • fix(next): add cross origin in react dom preload (#67423)
  • build: upgrade edge-runtime (#67565)
  • GTM dataLayer parameter should take an object, not an array of strings (#66339)
  • fix: properly patch lockfile against swc bindings (#66515)
  • Add deployment id header for rsc payload if present (#67255)
  • Update font data (#68639)
  • fix i18n data pathname resolving (#68947)
  • pages router: ensure x-middleware-cache is respected (#67734)
  • Fix bad modRequest in flight entry manifest #68888
  • Reject next image urls in image optimizer #68628
  • Fix hmr assetPrefix escaping and reuse logic from other files #67983

Credits

Huge thanks to @​kjugi, @​huozhi, @​ztanner, @​SukkaW, @​marlier, @​Kikobeats, @​syi0808, @​ijjk, and @​samcx for helping!

v14.2.6

[!NOTE]
This release is backporting bug fixes. It does not include all pending features/changes on canary.

Core Changes

  • Ensure fetch cache TTL is updated properly (#69164)

v14.2.5

[!NOTE]
This release is backporting bug fixes. It does not include all pending features/changes on canary.

Core Changes

  • avoid merging global css in a way that leaks into other chunk groups (#67373)
  • Fix server action edge redirect with middleware rewrite (#67148)
  • fix(next): reject protocol-relative URLs in image optimization (#65752)
  • fix(next-swc): correct path interop to filepath for wasm (#65633)
  • Use addDependency to track metadata route file changes (#66714)
  • Fix noindex is missing on static not-found page (#67135)
  • perf: improve retrieving versionInfo on Turbo HMR (#67309)
  • fix(next/image): handle invalid url (#67465)
  • fix(next): initial prefetch cache not set properly with different search params (#65977)
  • fix: Backport class properties fix (#67377)
  • Upgrade acorn (#67592)

Misc

  • Log stdio for pull-turbo-cache script (#66759)
  • Ensure turbo is setup when building in docker (#66804)

... (truncated)

Commits

Updates react-hook-form from 7.51.5 to 7.53.0

Release notes

Sourced from react-hook-form's releases.

Version 7.53.0

🌫️ feat: #12148 support isValid when mode is set to onBlur (#12194)

// update formstate isValid with onBlur event
const { formState: { isValid } } = useForm({
  mode: 'onBlur'
})

🐞 fix #12021 issue with disable prop not reflecting on re-render without trigger by useEffect (#12193) 👩‍🌾 close #12168 optimise re-render with validating fields subscription (#12192) 🐞 fix #12127 issue with compare object value changed with object input (#12185) 🎲 improve : break out of recursive loops on first focus (#11827) 📖 fix example of ObjectKeys type (#11965)

thanks to @​suke & @​DPflasterer

Version 7.52.2

👍 close #12108 useController should subscribe to exact field name of form's state (#12109) 👍 chore: upgrade app deps 🩻 fix: add useCallback for ref callback (#12078) 🚀 fix: skip call executeBuiltInValidation if no sub-fields left (#12054)

thanks to @​newsiberian, @​Wendystraite and @​abnud11<...

Description has been truncated

Bumps the dashboard group with 24 updates in the /frontend/dashboard directory:

| Package | From | To |
| --- | --- | --- |
| [@generatesac/lib](https://github.com/GenerateNU/sac) | `0.0.12` | `0.0.193` |
| [@hookform/resolvers](https://github.com/react-hook-form/resolvers) | `3.6.0` | `3.9.0` |
| [@radix-ui/react-dialog](https://github.com/radix-ui/primitives) | `1.0.5` | `1.1.1` |
| [@radix-ui/react-label](https://github.com/radix-ui/primitives) | `2.0.2` | `2.1.0` |
| [@radix-ui/react-popover](https://github.com/radix-ui/primitives) | `1.0.7` | `1.1.1` |
| [@radix-ui/react-select](https://github.com/radix-ui/primitives) | `2.0.0` | `2.1.1` |
| [@reduxjs/toolkit](https://github.com/reduxjs/redux-toolkit) | `2.2.5` | `2.2.7` |
| [@tiptap/extension-link](https://github.com/ueberdosis/tiptap/tree/HEAD/packages/extension-link) | `2.4.0` | `2.6.6` |
| [@tiptap/extension-underline](https://github.com/ueberdosis/tiptap/tree/HEAD/packages/extension-underline) | `2.4.0` | `2.6.6` |
| [@tiptap/react](https://github.com/ueberdosis/tiptap/tree/HEAD/packages/react) | `2.4.0` | `2.6.6` |
| [@tiptap/starter-kit](https://github.com/ueberdosis/tiptap/tree/HEAD/packages/starter-kit) | `2.4.0` | `2.6.6` |
| [lucide-react](https://github.com/lucide-icons/lucide/tree/HEAD/packages/lucide-react) | `0.394.0` | `0.437.0` |
| [next](https://github.com/vercel/next.js) | `14.2.3` | `14.2.7` |
| [react-hook-form](https://github.com/react-hook-form/react-hook-form) | `7.51.5` | `7.53.0` |
| [tailwind-merge](https://github.com/dcastil/tailwind-merge) | `2.3.0` | `2.5.2` |
| [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `18.3.3` | `18.3.5` |
| [autoprefixer](https://github.com/postcss/autoprefixer) | `10.4.19` | `10.4.20` |
| [eslint-config-next](https://github.com/vercel/next.js/tree/HEAD/packages/eslint-config-next) | `14.2.3` | `14.2.7` |
| [eslint-plugin-prettier](https://github.com/prettier/eslint-plugin-prettier) | `5.1.3` | `5.2.1` |
| [postcss](https://github.com/postcss/postcss) | `8.4.38` | `8.4.42` |
| [prettier](https://github.com/prettier/prettier) | `3.3.1` | `3.3.3` |
| [tailwindcss](https://github.com/tailwindlabs/tailwindcss) | `3.4.4` | `3.4.10` |
| [ts-jest](https://github.com/kulshekhar/ts-jest) | `29.1.4` | `29.2.5` |
| [typescript](https://github.com/Microsoft/TypeScript) | `5.4.5` | `5.5.4` |



Updates `@generatesac/lib` from 0.0.12 to 0.0.193
- [Commits](https://github.com/GenerateNU/sac/commits)

Updates `@hookform/resolvers` from 3.6.0 to 3.9.0
- [Release notes](https://github.com/react-hook-form/resolvers/releases)
- [Commits](react-hook-form/resolvers@v3.6.0...v3.9.0)

Updates `@radix-ui/react-dialog` from 1.0.5 to 1.1.1
- [Changelog](https://github.com/radix-ui/primitives/blob/main/release-process.md)
- [Commits](https://github.com/radix-ui/primitives/commits)

Updates `@radix-ui/react-label` from 2.0.2 to 2.1.0
- [Changelog](https://github.com/radix-ui/primitives/blob/main/release-process.md)
- [Commits](https://github.com/radix-ui/primitives/commits)

Updates `@radix-ui/react-popover` from 1.0.7 to 1.1.1
- [Changelog](https://github.com/radix-ui/primitives/blob/main/release-process.md)
- [Commits](https://github.com/radix-ui/primitives/commits)

Updates `@radix-ui/react-select` from 2.0.0 to 2.1.1
- [Changelog](https://github.com/radix-ui/primitives/blob/main/release-process.md)
- [Commits](https://github.com/radix-ui/primitives/commits)

Updates `@radix-ui/react-slot` from 1.0.2 to 1.1.0
- [Changelog](https://github.com/radix-ui/primitives/blob/main/release-process.md)
- [Commits](https://github.com/radix-ui/primitives/commits)

Updates `@reduxjs/toolkit` from 2.2.5 to 2.2.7
- [Release notes](https://github.com/reduxjs/redux-toolkit/releases)
- [Commits](reduxjs/redux-toolkit@v2.2.5...v2.2.7)

Updates `@tiptap/extension-link` from 2.4.0 to 2.6.6
- [Release notes](https://github.com/ueberdosis/tiptap/releases)
- [Changelog](https://github.com/ueberdosis/tiptap/blob/develop/packages/extension-link/CHANGELOG.md)
- [Commits](https://github.com/ueberdosis/tiptap/commits/@tiptap/extension-link@2.6.6/packages/extension-link)

Updates `@tiptap/extension-underline` from 2.4.0 to 2.6.6
- [Release notes](https://github.com/ueberdosis/tiptap/releases)
- [Changelog](https://github.com/ueberdosis/tiptap/blob/develop/packages/extension-underline/CHANGELOG.md)
- [Commits](https://github.com/ueberdosis/tiptap/commits/@tiptap/extension-underline@2.6.6/packages/extension-underline)

Updates `@tiptap/react` from 2.4.0 to 2.6.6
- [Release notes](https://github.com/ueberdosis/tiptap/releases)
- [Changelog](https://github.com/ueberdosis/tiptap/blob/develop/packages/react/CHANGELOG.md)
- [Commits](https://github.com/ueberdosis/tiptap/commits/@tiptap/react@2.6.6/packages/react)

Updates `@tiptap/starter-kit` from 2.4.0 to 2.6.6
- [Release notes](https://github.com/ueberdosis/tiptap/releases)
- [Changelog](https://github.com/ueberdosis/tiptap/blob/develop/packages/starter-kit/CHANGELOG.md)
- [Commits](https://github.com/ueberdosis/tiptap/commits/@tiptap/starter-kit@2.6.6/packages/starter-kit)

Updates `lucide-react` from 0.394.0 to 0.437.0
- [Release notes](https://github.com/lucide-icons/lucide/releases)
- [Commits](https://github.com/lucide-icons/lucide/commits/0.437.0/packages/lucide-react)

Updates `next` from 14.2.3 to 14.2.7
- [Release notes](https://github.com/vercel/next.js/releases)
- [Changelog](https://github.com/vercel/next.js/blob/canary/release.js)
- [Commits](vercel/next.js@v14.2.3...v14.2.7)

Updates `react-hook-form` from 7.51.5 to 7.53.0
- [Release notes](https://github.com/react-hook-form/react-hook-form/releases)
- [Changelog](https://github.com/react-hook-form/react-hook-form/blob/master/CHANGELOG.md)
- [Commits](react-hook-form/react-hook-form@v7.51.5...v7.53.0)

Updates `tailwind-merge` from 2.3.0 to 2.5.2
- [Release notes](https://github.com/dcastil/tailwind-merge/releases)
- [Commits](dcastil/tailwind-merge@v2.3.0...v2.5.2)

Updates `@types/node` from 20.12.12 to 20.16.3
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

Updates `@types/react` from 18.3.3 to 18.3.5
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react)

Updates `autoprefixer` from 10.4.19 to 10.4.20
- [Release notes](https://github.com/postcss/autoprefixer/releases)
- [Changelog](https://github.com/postcss/autoprefixer/blob/main/CHANGELOG.md)
- [Commits](postcss/autoprefixer@10.4.19...10.4.20)

Updates `eslint-config-next` from 14.2.3 to 14.2.7
- [Release notes](https://github.com/vercel/next.js/releases)
- [Changelog](https://github.com/vercel/next.js/blob/canary/release.js)
- [Commits](https://github.com/vercel/next.js/commits/v14.2.7/packages/eslint-config-next)

Updates `eslint-plugin-prettier` from 5.1.3 to 5.2.1
- [Release notes](https://github.com/prettier/eslint-plugin-prettier/releases)
- [Changelog](https://github.com/prettier/eslint-plugin-prettier/blob/master/CHANGELOG.md)
- [Commits](prettier/eslint-plugin-prettier@v5.1.3...v5.2.1)

Updates `postcss` from 8.4.38 to 8.4.42
- [Release notes](https://github.com/postcss/postcss/releases)
- [Changelog](https://github.com/postcss/postcss/blob/main/CHANGELOG.md)
- [Commits](postcss/postcss@8.4.38...8.4.42)

Updates `prettier` from 3.3.1 to 3.3.3
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/prettier@3.3.1...3.3.3)

Updates `tailwindcss` from 3.4.4 to 3.4.10
- [Release notes](https://github.com/tailwindlabs/tailwindcss/releases)
- [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/v3.4.10/CHANGELOG.md)
- [Commits](tailwindlabs/tailwindcss@v3.4.4...v3.4.10)

Updates `ts-jest` from 29.1.4 to 29.2.5
- [Release notes](https://github.com/kulshekhar/ts-jest/releases)
- [Changelog](https://github.com/kulshekhar/ts-jest/blob/main/CHANGELOG.md)
- [Commits](kulshekhar/ts-jest@v29.1.4...v29.2.5)

Updates `typescript` from 5.4.5 to 5.5.4
- [Release notes](https://github.com/Microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml)
- [Commits](microsoft/TypeScript@v5.4.5...v5.5.4)

---
updated-dependencies:
- dependency-name: "@generatesac/lib"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dashboard
- dependency-name: "@hookform/resolvers"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dashboard
- dependency-name: "@radix-ui/react-dialog"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dashboard
- dependency-name: "@radix-ui/react-label"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dashboard
- dependency-name: "@radix-ui/react-popover"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dashboard
- dependency-name: "@radix-ui/react-select"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dashboard
- dependency-name: "@radix-ui/react-slot"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dashboard
- dependency-name: "@reduxjs/toolkit"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dashboard
- dependency-name: "@tiptap/extension-link"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dashboard
- dependency-name: "@tiptap/extension-underline"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dashboard
- dependency-name: "@tiptap/react"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dashboard
- dependency-name: "@tiptap/starter-kit"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dashboard
- dependency-name: lucide-react
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dashboard
- dependency-name: next
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dashboard
- dependency-name: react-hook-form
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dashboard
- dependency-name: tailwind-merge
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dashboard
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dashboard
- dependency-name: "@types/react"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dashboard
- dependency-name: autoprefixer
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dashboard
- dependency-name: eslint-config-next
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dashboard
- dependency-name: eslint-plugin-prettier
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dashboard
- dependency-name: postcss
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dashboard
- dependency-name: prettier
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dashboard
- dependency-name: tailwindcss
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dashboard
- dependency-name: ts-jest
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dashboard
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dashboard
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Sep 1, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant