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(gluwave): bump the group-updates group in /gluwave with 22 updates #120

Merged

Conversation

dependabot[bot]
Copy link
Contributor

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

Bumps the group-updates group in /gluwave with 22 updates:

Package From To
@hookform/resolvers 3.3.4 3.9.0
@neondatabase/serverless 0.9.4 0.9.5
@radix-ui/react-separator 1.0.3 1.1.0
arctic 1.2.1 1.9.2
clsx 2.1.0 2.1.1
focus-trap-react 10.2.3 10.3.0
lucide-react 0.344.0 0.446.0
next 14.2.12 14.2.13
oslo 1.1.3 1.2.1
react 18.2.0 18.3.1
@types/react 18.2.74 18.3.10
react-dom 18.2.0 18.3.1
@types/react-dom 18.2.20 18.3.0
drizzle-kit 0.24.0 0.24.2
eslint-config-next 14.1.2 14.2.13
husky 9.1.5 9.1.6
postcss 8.4.35 8.4.47
prettier 3.2.5 3.3.3
prettier-plugin-tailwindcss 0.5.13 0.6.8
sass 1.71.1 1.79.4
tailwindcss 3.4.12 3.4.13
typescript 5.3.3 5.6.2

Updates @hookform/resolvers from 3.3.4 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
  • Additional commits viewable in compare view

Updates @neondatabase/serverless from 0.9.4 to 0.9.5

Commits

Updates @radix-ui/react-separator from 1.0.3 to 1.1.0

Commits
Maintainer changes

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


Updates arctic from 1.2.1 to 1.9.2

Release notes

Sourced from arctic's releases.

v1.9.1

Patch changes

  • Fix: Remove new lines when parsing Apple certificate (#139)

v1.9.0

Minor changes

  • Added Authentik auth provider (#120)

v1.8.1

Patch changes

  • Fix Slack provider (#122)
  • Fix Okta provider (#124)

v1.8.0

Minor changes

  • Feat: Add idToken to the return value of LinkedIn's validateAuthorizationCode(code: string) (#105)
  • Feat: Add Tiltify provider. (#118)

Patch changes

  • Fix: Make refreshToken optional for the return value of LinkedIn's validateAuthorizationCode(code: string) (#105)

v1.7.0

Minor changes

  • Add Shikimori provider. (#95)
  • Feat: add 42 school provider (#109)

v1.6.2

Patch changes

  • Use HTTP basic auth for sending client credentials if supported (#113)

v1.6.1

Patch changes

  • Fix Roblox provider and reverted API changes introduced in 1.6.0 (#111)

v1.6.0

... (truncated)

Changelog

Sourced from arctic's changelog.

1.9.2

Republish.

1.9.1

Patch changes

  • Fix: Remove new lines when parsing Apple certificate (#139)

1.9.0

Minor changes

  • Added Authentik auth provider (#120)

1.8.1

Patch changes

  • Fix Slack provider (#122)
  • Fix Okta provider (#124)

1.8.0

Minor changes

  • Feat: Add idToken to the return value of LinkedIn's validateAuthorizationCode(code: string) (#105)
  • Feat: Add Tiltify provider. (#118)

Patch changes

  • Fix: Make refreshToken optional for the return value of LinkedIn's validateAuthorizationCode(code: string) (#105)

1.7.0

Minor changes

  • Add Shikimori provider. (#95)
  • Feat: add 42 school provider (#109)

1.6.2

Patch changes

  • Use HTTP basic auth for sending client credentials if supported (#113)

1.6.1

Patch changes

... (truncated)

Commits

Updates clsx from 2.1.0 to 2.1.1

Release notes

Sourced from clsx's releases.

v2.1.1

Patches

  • (types) Include bigint in ClassValue type: (#96): 3d960ab Accommodates recent @types/react changes to ReactNode. Thank you @​ViliamKopecky~!

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

Commits

Updates focus-trap-react from 10.2.3 to 10.3.0

Release notes

Sourced from focus-trap-react's releases.

v10.3.0

Minor Changes

  • 1738674: Bump focus-trap dependency to 7.6.0 for customizable ESC behavior (#1346)
Changelog

Sourced from focus-trap-react's changelog.

10.3.0

Minor Changes

  • 1738674: Bump focus-trap dependency to 7.6.0 for customizable ESC behavior (#1346)
Commits
  • 396c348 Version Packages (#1349)
  • 1738674 Changeset for focus-trap 7.6.0 bump (#1348)
  • a601374 [DEPENDABOT]: Bump send and serve-static (#1347)
  • a2f95ab [DEPENDABOT]: Bump start-server-and-test from 2.0.7 to 2.0.8 (#1344)
  • 897fe76 [DEPENDABOT]: Bump eslint-plugin-react from 7.35.2 to 7.36.1 (#1345)
  • 7e03059 [DEPENDABOT]: Bump focus-trap from 7.5.4 to 7.6.0 (#1346)
  • 9b98180 [DEPENDABOT]: Bump typescript from 5.5.4 to 5.6.2 (#1338)
  • 614ca3e [DEPENDABOT]: Bump serve-static from 1.15.0 to 1.16.0 (#1342)
  • 1504526 [DEPENDABOT]: Bump eslint-plugin-jest from 28.8.2 to 28.8.3 (#1336)
  • b0a6ef6 [DEPENDABOT]: Bump cypress from 13.14.1 to 13.14.2 (#1339)
  • Additional commits viewable in compare view

Updates lucide-react from 0.344.0 to 0.446.0

Release notes

Sourced from lucide-react's releases.

New icons 0.446.0

New icons 🎨

New icons 0.445.0

New icons 🎨

New icons 0.444.0

Modified Icons 🔨

New icons 0.443.0

Modified Icons 🔨

New icons 0.442.0

Modified Icons 🔨

New icons 0.441.0

New icons 🎨

New icons 0.440.0

New icons 🎨

Modified Icons 🔨

... (truncated)

Commits

Updates next from 14.2.12 to 14.2.13

Release notes

Sourced from next's releases.

v14.2.13

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

Core Changes

  • Fix missing cache-control on SSR app route (#70265)
  • feat: add polyfill of URL.canParse for browser compatibility (#70228)
  • Fix vercel og package memory leak (#70214)
  • Fix startTime error on Android 9 with Chrome 74 (#67391)

Credits

Huge thanks to @​raeyoung-kim, @​huozhi, @​devjiwonchoi, and @​ijjk for helping!

Commits

Updates oslo from 1.1.3 to 1.2.1

Release notes

Sourced from oslo's releases.

v1.2.0

Minor changes

  • Feat: Add codeChallengeMethod option to OAuth2Client.createAuthorizationURL() (#29)
Changelog

Sourced from oslo's changelog.

1.2.1

Patch changes

  • Fix issuer parameter getting encoded twice in key URI (#79)

1.2.0

Minor changes

  • Feat: Add codeChallengeMethod option to OAuth2Client.createAuthorizationURL() (#29)
Commits

Updates react from 18.2.0 to 18.3.1

Release notes

Sourced from react's releases.

18.3.1 (April 26, 2024)

  • Export act from react f1338f

18.3.0 (April 25, 2024)

This release is identical to 18.2 but adds warnings for deprecated APIs and other changes that are needed for React 19.

Read the React 19 Upgrade Guide for more info.

React

  • Allow writing to this.refs to support string ref codemod 909071
  • Warn for deprecated findDOMNode outside StrictMode c3b283
  • Warn for deprecated test-utils methods d4ea75
  • Warn for deprecated Legacy Context outside StrictMode 415ee0
  • Warn for deprecated string refs outside StrictMode #25383
  • Warn for deprecated defaultProps for function components #25699
  • Warn when spreading key #25697
  • Warn when using act from test-utils d4ea75

React DOM

  • Warn for deprecated unmountComponentAtNode 8a015b
  • Warn for deprecated renderToStaticNodeStream #28874
Changelog

Sourced from react's changelog.

18.3.1 (April 26, 2024)

  • Export act from react f1338f

18.3.0 (April 25, 2024)

This release is identical to 18.2 but adds warnings for deprecated APIs and other changes that are needed for React 19.

Read the React 19 Upgrade Guide for more info.

React

  • Allow writing to this.refs to support string ref codemod 909071
  • Warn for deprecated findDOMNode outside StrictMode c3b283
  • Warn for deprecated test-utils methods d4ea75
  • Warn for deprecated Legacy Context outside StrictMode 415ee0
  • Warn for deprecated string refs outside StrictMode #25383
  • Warn for deprecated defaultProps for function components #25699
  • Warn when spreading key #25697
  • Warn when using act from test-utils d4ea75

React DOM

  • Warn for deprecated unmountComponentAtNode 8a015b
  • Warn for deprecated renderToStaticNodeStream #28874
Commits
Maintainer changes

This version was pushed to npm by react-bot, a new releaser for react since your current version.


Updates @types/react from 18.2.74 to 18.3.10

Commits

Updates react-dom from 18.2.0 to 18.3.1

Release notes

Sourced from react-dom's releases.

18.3.1 (April 26, 2024)

  • Export act from react f1338f

18.3.0 (April 25, 2024)

This release is identical to 18.2 but adds warnings for deprecated APIs and other changes that are needed for React 19.

Read the React 19 Upgrade Guide for more info.

React

  • Allow writing to this.refs to support string ref codemod 909071
  • Warn for deprecated findDOMNode outside StrictMode c3b283
  • Warn for deprecated test-utils methods d4ea75
  • Warn for deprecated Legacy Context outside StrictMode 415ee0
  • Warn for deprecated string refs outside StrictMode #25383
  • Warn for deprecated defaultProps for function components #25699
  • Warn when spreading key #25697
  • Warn when using act from test-utils d4ea75

React DOM

  • Warn for deprecated unmountComponentAtNode 8a015b
  • Warn for deprecated renderToStaticNodeStream #28874
Changelog

Sourced from react-dom's changelog.

18.3.1 (April 26, 2024)

  • Export act from react f1338f

18.3.0 (April 25, 2024)

This release is identical to 18.2 but adds warnings for deprecated APIs and other changes that are needed for React 19.

Read the React 19 Upgrade Guide for more info.

React

  • Allow writing to this.refs to support string ref codemod 909071
  • Warn for deprecated findDOMNode outside StrictMode c3b283
  • Warn for deprecated test-utils methods d4ea75
  • Warn for deprecated Legacy Context outside StrictMode 415ee0
  • Warn for deprecated string refs outside StrictMode #25383
  • Warn for deprecated defaultProps for function components #25699
  • Warn when spreading key #25697
  • Warn when using act from test-utils d4ea75

React DOM

  • Warn for deprecated unmountComponentAtNode 8a015b
  • Warn for deprecated renderToStaticNodeStream #28874
Commits
  • d6c42f7 Bump to 18.3.1
  • 8a015b6 Add deprecation warning for unmountComponentAtNode
  • c3b2839 Add deprecation warning for findDOMNode
  • d4ea75d ReactDOMTestUtils deprecation warnings
  • 7548c01 Deprecate renderToStaticNodeStream (#28872) (#28874)
  • 5894232 Enable warning for defaultProps on function components for everyone (#25699)
  • c2a246e Turn on string ref deprecation warning for everybody (not codemoddable) (#25383)
  • 2cfb474 Bump version from 18.2 to 18.3
  • See full diff in compare view
Maintainer changes

This version was pushed to npm by react-bot, a new releaser for react-dom since your current version.


Updates @types/react-dom from 18.2.20 to 18.3.0

Commits

Updates @types/react from 18.2.74 to 18.3.10

Commits

Updates @types/react-dom from 18.2.20 to 18.3.0

Commits

Updates drizzle-kit from 0.24.0 to 0.24.2

Release notes

Sourced from drizzle-kit's releases.

drizzle-kit@0.24.2

New Features

🎉 Support for pglite driver

You can now use pglite with all drizzle-kit commands, including Drizzle Studio!

import { defineConfig } from "drizzle-kit";
export default defineConfig({
dialect: "postgresql",
driver: "pglite",
schema: "./schema.ts",
dbCredentials: {
url: "local-pg.db",
},
verbose: true,
strict: true,
});

Bug fixes

  • mysql-kit: fix GENERATED ALWAYS AS ... NOT NULL - #2824

drizzle-kit@0.24.1

Bug fixes

Big thanks to @​L-Mario564 for his PR. It conflicted in most cases with a PR that was merged, but we incorporated some of his logic. Merging it would have caused more problems and taken more time to resolve, so we just took a few things from his PR, like removing "::" mappings in introspect and some array type default handlers

What was fixed

  1. The Drizzle Kit CLI was not working properly for the introspect command.
  2. Added the ability to use column names with special characters for all dialects.
  3. Included PostgreSQL sequences in the introspection process.
  4. Reworked array type introspection and added all test cases.
  5. Fixed all (we hope) default issues in PostgreSQL, where ::<type> was included in the introspected output.
  6. preserve casing option was broken

Tickets that were closed

... (truncated)

Commits

Updates eslint-config-next from 14.1.2 to 14.2.13

Release notes

Sourced from eslint-config-next's releases.

v14.2.13

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

Core Changes

  • Fix missing cache-control on SSR app route (#70265)
  • feat: add polyfill of URL.canParse for browser compatibility (#70228)
  • Fix vercel og package memory leak (#70214)
  • Fix startTime error on Android 9 with Chrome 74 (#67391)

Credits

Huge thanks to @​raeyoung-kim, @​huozhi, @​devjiwonchoi, and @​ijjk for helping!

v14.2.12

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

Core Changes

  • update prefetching jsdoc & documentation (#68047)
  • Ensure we chunk revalidate tag requests (#70189)
  • (backport) fix(eslint): allow typescript-eslint v8 (#70090)
  • [ppr] Don't mark RSC requests as /_next/data requests (backport of #66249) (#70083)

Credits

Huge thanks to @​alvarlagerlof, @​wyattjoh, @​delbaoliveira, and @​ijjk for helping!

v14.2.11

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

Core Changes

  • fix: correct metadata url suffix (vercel/next.js#69959)
  • fix: setting assetPrefix to URL format breaks HMR (#70040)
  • Update revalidateTag to batch tags in one request (#65296)

Credits

Huge thanks to @​huozhi, @​devjiwonchoi, and @​ijjk for helping!

v14.2.10

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

Core Changes

Credits

Huge thanks to @​huozhi and @​ijjk for helping!

... (truncated)

Commits

Updates husky from 9.1.5 to 9.1.6

Release notes

Sourced from husky's releases.

v9.1.6

What's Changed

New Contributors

Full Changelog: typicode/husky@v9.1.5...v9.1.6

Commits

Updates postcss from 8.4.35 to 8.4.47

Release notes

Sourced from postcss's releases.

8.4.47

  • Removed debug code.

8.4.46

  • Fixed Cannot read properties of undefined (reading 'before').

8.4.45

  • Removed unnecessary fix which could lead to infinite loop.

8.4.44

  • Another way to fix markClean is not a function error.

8.4.43

  • Fixed markClean is not a function error.

8.4.42

  • Fixed CSS syntax error on long minified files (by @​varpstar).

8.4.41

8.4.40

  • Moved to getter/setter in nodes types to help Sass team (by @​nex3).

8.4.39

8.4.38

8.4.37

  • Fixed original.column are not numbers error in another case.

8.4.36

  • Fixed original.column are not numbers error on broken previous source map.
Changelog

Sourced from postcss's changelog.

8.4.47

  • Removed debug code.

8.4.46

  • Fixed Cannot read properties of undefined (reading 'before').

8.4.45

  • Removed unnecessary fix which could lead to infinite loop.

8.4.44

  • Another way to fix markClean is not a function error.

8.4.43

  • Fixed markClean is not a function error.

8.4.42

  • Fixed CSS syntax error on long minified files (by @​varpstar).

8.4.41

8.4.40

  • Moved to getter/setter in nodes types to help Sass team (by @​nex3).

8.4.39

8.4.38

8.4.37

  • Fixed original.column are not numbers error in another case.

8.4.36

  • Fixed original.column are not numbers error on broken previous source map.
Commits

Updates prettier from 3.2.5 to 3.3.3

Release notes

Sourced from prettier's releases.

3.3.3

🔗 Changelog

3.3.2

🔗 Changelog

3.3.1

🔗 Changelog

3.3.0

diff

🔗 Release note

Changelog

Sourced from prettier's changelog.

3.3.3

diff

Add parentheses for nullish coalescing in ternary (#16391 by @​cdignam-segment)

This change adds clarity to operator precedence.

// Input
foo ? bar ?? foo : baz;
foo ?? bar ? a : b;
a ? b : foo ?? bar;
// Prettier 3.3.2
foo ? bar ?? foo : baz;
foo ?? bar ? a : b;
a ? b : foo ?? bar;
// Prettier 3.3.3
foo ? (bar ?? foo) : baz;
(foo ?? bar) ? a : b;
a ? b : (foo ?? bar);

Add parentheses for decorator expressions (#16458 by @​y-schneider)

Prevent parentheses around member expressions or tagged template literals from being removed to follow the stricter parsing rules of TypeScript 5.5.

// Input
@(foo`tagged template`)
class X {}
// Prettier 3.3.2
@​footagged template
class X {}
// Prettier 3.3.3
@(footagged template)
class X {}

Support @let declaration syntax (#16474 by @​sosukesuzuki)

Adds support for Angular v18 @let declaration syntax.

Please see the following code example. The @let declaration allows you to define local variables within the template:

... (truncated)

Commits

Bumps the group-updates group in /gluwave with 22 updates:

| Package | From | To |
| --- | --- | --- |
| [@hookform/resolvers](https://github.com/react-hook-form/resolvers) | `3.3.4` | `3.9.0` |
| [@neondatabase/serverless](https://github.com/neondatabase/serverless) | `0.9.4` | `0.9.5` |
| [@radix-ui/react-separator](https://github.com/radix-ui/primitives) | `1.0.3` | `1.1.0` |
| [arctic](https://github.com/pilcrowOnPaper/arctic) | `1.2.1` | `1.9.2` |
| [clsx](https://github.com/lukeed/clsx) | `2.1.0` | `2.1.1` |
| [focus-trap-react](https://github.com/focus-trap/focus-trap-react) | `10.2.3` | `10.3.0` |
| [lucide-react](https://github.com/lucide-icons/lucide/tree/HEAD/packages/lucide-react) | `0.344.0` | `0.446.0` |
| [next](https://github.com/vercel/next.js) | `14.2.12` | `14.2.13` |
| [oslo](https://github.com/pilcrowOnPaper/oslo) | `1.1.3` | `1.2.1` |
| [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `18.2.0` | `18.3.1` |
| [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `18.2.74` | `18.3.10` |
| [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `18.2.0` | `18.3.1` |
| [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) | `18.2.20` | `18.3.0` |
| [drizzle-kit](https://github.com/drizzle-team/drizzle-orm) | `0.24.0` | `0.24.2` |
| [eslint-config-next](https://github.com/vercel/next.js/tree/HEAD/packages/eslint-config-next) | `14.1.2` | `14.2.13` |
| [husky](https://github.com/typicode/husky) | `9.1.5` | `9.1.6` |
| [postcss](https://github.com/postcss/postcss) | `8.4.35` | `8.4.47` |
| [prettier](https://github.com/prettier/prettier) | `3.2.5` | `3.3.3` |
| [prettier-plugin-tailwindcss](https://github.com/tailwindlabs/prettier-plugin-tailwindcss) | `0.5.13` | `0.6.8` |
| [sass](https://github.com/sass/dart-sass) | `1.71.1` | `1.79.4` |
| [tailwindcss](https://github.com/tailwindlabs/tailwindcss) | `3.4.12` | `3.4.13` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.3.3` | `5.6.2` |


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

Updates `@neondatabase/serverless` from 0.9.4 to 0.9.5
- [Changelog](https://github.com/neondatabase/serverless/blob/main/CHANGELOG.md)
- [Commits](https://github.com/neondatabase/serverless/commits)

Updates `@radix-ui/react-separator` from 1.0.3 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 `arctic` from 1.2.1 to 1.9.2
- [Release notes](https://github.com/pilcrowOnPaper/arctic/releases)
- [Changelog](https://github.com/pilcrowOnPaper/arctic/blob/main/CHANGELOG.md)
- [Commits](https://github.com/pilcrowOnPaper/arctic/commits)

Updates `clsx` from 2.1.0 to 2.1.1
- [Release notes](https://github.com/lukeed/clsx/releases)
- [Commits](lukeed/clsx@v2.1.0...v2.1.1)

Updates `focus-trap-react` from 10.2.3 to 10.3.0
- [Release notes](https://github.com/focus-trap/focus-trap-react/releases)
- [Changelog](https://github.com/focus-trap/focus-trap-react/blob/master/CHANGELOG.md)
- [Commits](focus-trap/focus-trap-react@v10.2.3...v10.3.0)

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

Updates `next` from 14.2.12 to 14.2.13
- [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.12...v14.2.13)

Updates `oslo` from 1.1.3 to 1.2.1
- [Release notes](https://github.com/pilcrowOnPaper/oslo/releases)
- [Changelog](https://github.com/pilcrowOnPaper/oslo/blob/main/CHANGELOG.md)
- [Commits](https://github.com/pilcrowOnPaper/oslo/commits)

Updates `react` from 18.2.0 to 18.3.1
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/v18.3.1/packages/react)

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

Updates `react-dom` from 18.2.0 to 18.3.1
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/v18.3.1/packages/react-dom)

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

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

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

Updates `drizzle-kit` from 0.24.0 to 0.24.2
- [Release notes](https://github.com/drizzle-team/drizzle-orm/releases)
- [Commits](https://github.com/drizzle-team/drizzle-orm/compare/drizzle-kit@0.24.0...drizzle-kit@0.24.2)

Updates `eslint-config-next` from 14.1.2 to 14.2.13
- [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.13/packages/eslint-config-next)

Updates `husky` from 9.1.5 to 9.1.6
- [Release notes](https://github.com/typicode/husky/releases)
- [Commits](typicode/husky@v9.1.5...v9.1.6)

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

Updates `prettier` from 3.2.5 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.2.5...3.3.3)

Updates `prettier-plugin-tailwindcss` from 0.5.13 to 0.6.8
- [Release notes](https://github.com/tailwindlabs/prettier-plugin-tailwindcss/releases)
- [Changelog](https://github.com/tailwindlabs/prettier-plugin-tailwindcss/blob/main/CHANGELOG.md)
- [Commits](tailwindlabs/prettier-plugin-tailwindcss@v0.5.13...v0.6.8)

Updates `sass` from 1.71.1 to 1.79.4
- [Release notes](https://github.com/sass/dart-sass/releases)
- [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md)
- [Commits](sass/dart-sass@1.71.1...1.79.4)

Updates `tailwindcss` from 3.4.12 to 3.4.13
- [Release notes](https://github.com/tailwindlabs/tailwindcss/releases)
- [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/v3.4.13/CHANGELOG.md)
- [Commits](tailwindlabs/tailwindcss@v3.4.12...v3.4.13)

Updates `typescript` from 5.3.3 to 5.6.2
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml)
- [Commits](microsoft/TypeScript@v5.3.3...v5.6.2)

---
updated-dependencies:
- dependency-name: "@hookform/resolvers"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: group-updates
- dependency-name: "@neondatabase/serverless"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: group-updates
- dependency-name: "@radix-ui/react-separator"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: group-updates
- dependency-name: arctic
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: group-updates
- dependency-name: clsx
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: group-updates
- dependency-name: focus-trap-react
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: group-updates
- dependency-name: lucide-react
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: group-updates
- dependency-name: next
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: group-updates
- dependency-name: oslo
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: group-updates
- dependency-name: react
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: group-updates
- dependency-name: "@types/react"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: group-updates
- dependency-name: react-dom
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: group-updates
- dependency-name: "@types/react-dom"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: group-updates
- dependency-name: "@types/react"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: group-updates
- dependency-name: "@types/react-dom"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: group-updates
- dependency-name: drizzle-kit
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: group-updates
- dependency-name: eslint-config-next
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: group-updates
- dependency-name: husky
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: group-updates
- dependency-name: postcss
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: group-updates
- dependency-name: prettier
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: group-updates
- dependency-name: prettier-plugin-tailwindcss
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: group-updates
- dependency-name: sass
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: group-updates
- dependency-name: tailwindcss
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: group-updates
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: group-updates
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Oct 1, 2024
@Kalhama Kalhama merged commit 61a319c into master Oct 1, 2024
@Kalhama Kalhama deleted the dependabot/npm_and_yarn/gluwave/group-updates-de823d6706 branch October 1, 2024 14:00
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
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant