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

Bump the all group with 26 updates #38

Merged
merged 1 commit into from
Dec 1, 2023

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 1, 2023

Bumps the all group with 26 updates:

Package From To
@dnd-kit/core 6.0.8 6.1.0
@dnd-kit/modifiers 6.0.1 7.0.0
@dnd-kit/sortable 7.0.2 8.0.0
@next/font 14.0.1 14.0.3
@types/node 20.8.10 20.10.1
@types/react 18.2.33 18.2.39
@types/react-dom 18.2.14 18.2.17
culori 3.2.0 3.3.0
eslint 8.52.0 8.54.0
eslint-config-next 14.0.1 14.0.3
lucide-react 0.291.0 0.294.0
next 14.0.1 14.0.3
react-use 17.4.0 17.4.1
sharp 0.32.6 0.33.0
typescript 5.2.2 5.3.2
@testing-library/jest-dom 6.1.4 6.1.5
@testing-library/react 14.0.0 14.1.2
@types/common-tags 1.8.3 1.8.4
@types/culori 2.0.3 2.0.4
@types/jest 29.5.7 29.5.10
@typescript-eslint/eslint-plugin 6.9.1 6.13.1
@typescript-eslint/parser 6.9.1 6.13.1
prettier 3.0.3 3.1.0
prettier-plugin-organize-imports 3.2.3 3.2.4
prettier-plugin-tailwindcss 0.5.6 0.5.7
tsx 3.14.0 4.6.1

Updates @dnd-kit/core from 6.0.8 to 6.1.0

Release notes

Sourced from @​dnd-kit/core's releases.

@​dnd-kit/core@​6.1.0

Minor Changes

  • #1271 bc588c7 Thanks @​clauderic! - Introduce bypassActivationConstraint() option for PointerSensor, MouseSensor and TouchSensor. This optional argument can be used to conditionally bypass activation constraints. An example use-case would be to bypass activation constraints when the activator event target is the activatorNode of a draggable source.

    useSensor(PointerSensor, {
      activationConstraint: {
        delay: 250,
        tolerance: 5,
      },
      bypassActivationConstraint({event, activeNode}) {
        return activeNode.activatorNode.current?.contains(event.target);
      },
    });
  • #1269 b417f0f Thanks @​clauderic! - Allow delay and distance activation constraints to be used concurrently for MouseSensor, TouchSensor and PointerSensor.

Patch Changes

Changelog

Sourced from @​dnd-kit/core's changelog.

6.1.0

Minor Changes

  • #1271 bc588c7 Thanks @​clauderic! - Introduce bypassActivationConstraint() option for PointerSensor, MouseSensor and TouchSensor. This optional argument can be used to conditionally bypass activation constraints. An example use-case would be to bypass activation constraints when the activator event target is the activatorNode of a draggable source.

    useSensor(PointerSensor, {
      activationConstraint: {
        delay: 250,
        tolerance: 5,
      },
      bypassActivationConstraint({event, activeNode}) {
        return activeNode.activatorNode.current?.contains(event.target);
      },
    });
  • #1269 b417f0f Thanks @​clauderic! - Allow delay and distance activation constraints to be used concurrently for MouseSensor, TouchSensor and PointerSensor.

Patch Changes

Commits

Updates @dnd-kit/modifiers from 6.0.1 to 7.0.0

Release notes

Sourced from @​dnd-kit/modifiers's releases.

@​dnd-kit/modifiers@​7.0.0

Patch Changes

Changelog

Sourced from @​dnd-kit/modifiers's changelog.

7.0.0

Patch Changes

Commits

Updates @dnd-kit/sortable from 7.0.2 to 8.0.0

Release notes

Sourced from @​dnd-kit/sortable's releases.

@​dnd-kit/sortable@​8.0.0

Patch Changes

Changelog

Sourced from @​dnd-kit/sortable's changelog.

8.0.0

Patch Changes

Commits

Updates @next/font from 14.0.1 to 14.0.3

Release notes

Sourced from @​next/font's releases.

v14.0.3

Core Changes

  • Update React from 746890329 to 0e352ea01: #58279
  • fix(turbopack): support middleware in src: #58218
  • Update font data: #58317
  • Replace custom Thenable type with native Promises: #58337
  • fix(eslint): next/script beforeInteractive gives warning on appDir: #51148
  • fix: import antd from es in modularizeImports: #57968
  • fix(WellKnownErrorsPlugin): avoid compilation warnings array with empty items: #57768
  • Add experimental support for history.pushState and history.replaceState: #58335
  • Fix: expected "catch all routes" are not matched in “parallel routes": #58368
  • fix: Don't reset shallow URL updates on prefetch: #58297
  • fix: ensure batch values are sharable: #58315
  • fix incorrect fetch cache handling: #58460
  • turbopack: Don't error with legacy server actions boolean: #58416
  • Update turbopack: #58408
  • Upgrade vendored React: #58489
  • Apply next/font to foreign code: #58461
  • Turbopack: Use structured styled text in issue descriptions: #58156
  • onHeaders updates for App Pages: #58410
  • revalidate APIs should make route handlers dynamic: #58466
  • remove optimistic navigation behavior when prefetch is false: #58413
  • fix: set x-forwarded-host based on request: #58500
  • Inline ChildProp: #58519
  • Remove client only dynamic chunks from edge bundle : #56761
  • tweak cache + revalidate fetch warning: #58505

Documentation Changes

  • remove example for router.events as it does not exist: #58286
  • chore(docs): fix typo: #58344
  • docs: Update runtime table: #58361
  • Update 08-parallel-routes.mdx: #58393
  • Docs: Update middleware example snippet: #58488
  • update meta variable to metadata variable so that the meta data updat…: #58396
  • Update 07-error-handling.mdx: #58236
  • docs: Added Kinde auth provider: #58231
  • Update index.mdx: #58210
  • Make example of passing down a Server Action more clear: #57972
  • docs: Fix grammar in Styling section: #58071
  • docs: Fix grammar in Client Components section: #58065
  • docs: Fix grammar in Dynamic Rendering section: #58062
  • Docs: fix grammatical issue in "Data Fetching Patterns" section: #58056
  • Update 02-patterns.mdx: #58032
  • Update 04-ci-build-caching.mdx - Add Jenkins: #58001

Example Changes

  • examples: Update Middleware for CSP: #58300

... (truncated)

Commits

Updates @types/node from 20.8.10 to 20.10.1

Commits

Updates @types/react from 18.2.33 to 18.2.39

Commits

Updates @types/react-dom from 18.2.14 to 18.2.17

Commits

Updates culori from 3.2.0 to 3.3.0

Release notes

Sourced from culori's releases.

v3.3.0

New features

  • Adds a third parameter to clampChroma() to change the destination RGB gamut (#212, #213)
  • Adds the ability to bypass the JND part of the CSS Color Level 4 gamut mapping algorithm by passing null as the delta color difference function (#212, #213)
  • Adds the easingSmoothstepInverse() function (re: #207)

Bug fixes

Commits

Updates eslint from 8.52.0 to 8.54.0

Release notes

Sourced from eslint's releases.

v8.54.0

Features

  • a7a883b feat: for-direction rule add check for condition in reverse order (#17755) (Angelo Annunziata)
  • 1452dc9 feat: Add suggestions to no-console (#17680) (Joel Mathew Koshy)
  • 21ebf8a feat: update no-array-constructor rule (#17711) (Francesco Trotta)

Bug Fixes

  • 98926e6 fix: Ensure that extra data is not accidentally stored in the cache file (#17760) (Milos Djermanovic)
  • e8cf9f6 fix: Make dark scroll bar in dark theme (#17753) (Pavel)
  • 3cbeaad fix: Use cwd constructor option as config basePath in Linter (#17705) (Milos Djermanovic)

Documentation

  • becfdd3 docs: Make clear when rules are removed (#17728) (Nicholas C. Zakas)
  • 05d6e99 docs: update "Submit a Pull Request" page (#17712) (Francesco Trotta)
  • eb2279e docs: display info about deprecated rules (#17749) (Percy Ma)
  • d245326 docs: Correct working in migrating plugin docs (#17722) (Filip Tammergård)

Chores

  • d644de9 chore: upgrade @​eslint/js@​8.54.0 (#17773) (Milos Djermanovic)
  • 1e6e314 chore: package.json update for @​eslint/js release (Jenkins)
  • 6fb8805 chore: Fixed grammar in issue_templates/rule_change (#17770) (Joel Mathew Koshy)
  • 85db724 chore: upgrade markdownlint to 0.31.1 (#17754) (Nitin Kumar)
  • 6d470d2 chore: update dependency recast to ^0.23.0 (#17736) (renovate[bot])
  • b7121b5 chore: update dependency markdownlint-cli to ^0.37.0 (#17735) (renovate[bot])
  • 633b9a1 chore: update dependency regenerator-runtime to ^0.14.0 (#17739) (renovate[bot])
  • acac16f chore: update dependency vite-plugin-commonjs to ^0.10.0 (#17740) (renovate[bot])
  • ba8ca7e chore: add .github/renovate.json5 (#17567) (Josh Goldberg ✨)

v8.53.0

Features

  • 528e1c0 feat: Deprecate formatting rules (#17696) (Nicholas C. Zakas)
  • c0b11dd feat: Add suggestions for no-prototype-builtins (#17677) (Yonathan Randolph)

Bug Fixes

  • 1ad6257 fix: ensure that exit code for fatal errors is not overwritten (#17683) (Milos Djermanovic)
  • b329ea7 fix: add ; after JSX nodes in no-object-constructor autofix (#17672) (Francesco Trotta)

Documentation

  • ab8c60d docs: change position of return to top button (#17688) (Tanuj Kanti)
  • 4fc44c0 docs: update twitter icon to new X icon (#17687) (Tanuj Kanti)
  • 4164b2c docs: Update README (GitHub Actions Bot)
  • 8651895 docs: Fix tabs in rule examples (#17653) (Francesco Trotta)
  • 3aec1c5 docs: explained rule fixers and suggestions (#17657) (Josh Goldberg ✨)

Chores

  • ba4d4d5 chore: remove metascraper (#17707) (Milos Djermanovic)
  • 0d07338 chore: Update dependencies (#17706) (Milos Djermanovic)
  • 93256a3 chore: package.json update for @​eslint/js release (ESLint Jenkins)
  • 485ec7d test: fix ESLint tests for caching (#17699) (Milos Djermanovic)
  • db06a7f ci: bump actions/setup-node from 3 to 4 (#17676) (dependabot[bot])

... (truncated)

Changelog

Sourced from eslint's changelog.

v8.54.0 - November 17, 2023

  • d644de9 chore: upgrade @​eslint/js@​8.54.0 (#17773) (Milos Djermanovic)
  • 1e6e314 chore: package.json update for @​eslint/js release (Jenkins)
  • 98926e6 fix: Ensure that extra data is not accidentally stored in the cache file (#17760) (Milos Djermanovic)
  • a7a883b feat: for-direction rule add check for condition in reverse order (#17755) (Angelo Annunziata)
  • 1452dc9 feat: Add suggestions to no-console (#17680) (Joel Mathew Koshy)
  • 6fb8805 chore: Fixed grammar in issue_templates/rule_change (#17770) (Joel Mathew Koshy)
  • becfdd3 docs: Make clear when rules are removed (#17728) (Nicholas C. Zakas)
  • e8cf9f6 fix: Make dark scroll bar in dark theme (#17753) (Pavel)
  • 85db724 chore: upgrade markdownlint to 0.31.1 (#17754) (Nitin Kumar)
  • 21ebf8a feat: update no-array-constructor rule (#17711) (Francesco Trotta)
  • 05d6e99 docs: update "Submit a Pull Request" page (#17712) (Francesco Trotta)
  • eb2279e docs: display info about deprecated rules (#17749) (Percy Ma)
  • 6d470d2 chore: update dependency recast to ^0.23.0 (#17736) (renovate[bot])
  • b7121b5 chore: update dependency markdownlint-cli to ^0.37.0 (#17735) (renovate[bot])
  • 633b9a1 chore: update dependency regenerator-runtime to ^0.14.0 (#17739) (renovate[bot])
  • acac16f chore: update dependency vite-plugin-commonjs to ^0.10.0 (#17740) (renovate[bot])
  • ba8ca7e chore: add .github/renovate.json5 (#17567) (Josh Goldberg ✨)
  • 3cbeaad fix: Use cwd constructor option as config basePath in Linter (#17705) (Milos Djermanovic)
  • d245326 docs: Correct working in migrating plugin docs (#17722) (Filip Tammergård)
  • 5454c22 Revert "chore: remove metascraper (#17707)" (#17708) (Milos Djermanovic)

v8.53.0 - November 3, 2023

  • ba4d4d5 chore: remove metascraper (#17707) (Milos Djermanovic)
  • 0d07338 chore: Update dependencies (#17706) (Milos Djermanovic)
  • 93256a3 chore: package.json update for @​eslint/js release (ESLint Jenkins)
  • ab8c60d docs: change position of return to top button (#17688) (Tanuj Kanti)
  • 528e1c0 feat: Deprecate formatting rules (#17696) (Nicholas C. Zakas)
  • 485ec7d test: fix ESLint tests for caching (#17699) (Milos Djermanovic)
  • c0b11dd feat: Add suggestions for no-prototype-builtins (#17677) (Yonathan Randolph)
  • 4fc44c0 docs: update twitter icon to new X icon (#17687) (Tanuj Kanti)
  • 1ad6257 fix: ensure that exit code for fatal errors is not overwritten (#17683) (Milos Djermanovic)
  • 4164b2c docs: Update README (GitHub Actions Bot)
  • 8651895 docs: Fix tabs in rule examples (#17653) (Francesco Trotta)
  • 3aec1c5 docs: explained rule fixers and suggestions (#17657) (Josh Goldberg ✨)
  • db06a7f ci: bump actions/setup-node from 3 to 4 (#17676) (dependabot[bot])
  • b329ea7 fix: add ; after JSX nodes in no-object-constructor autofix (#17672) (Francesco Trotta)
  • 994596b ci: run tests in Node.js 21 (#17673) (Francesco Trotta)
Commits

Updates eslint-config-next from 14.0.1 to 14.0.3

Release notes

Sourced from eslint-config-next's releases.

v14.0.3

Core Changes

  • Update React from 746890329 to 0e352ea01: #58279
  • fix(turbopack): support middleware in src: #58218
  • Update font data: #58317
  • Replace custom Thenable type with native Promises: #58337
  • fix(eslint): next/script beforeInteractive gives warning on appDir: #51148
  • fix: import antd from es in modularizeImports: #57968
  • fix(WellKnownErrorsPlugin): avoid compilation warnings array with empty items: #57768
  • Add experimental support for history.pushState and history.replaceState: #58335
  • Fix: expected "catch all routes" are not matched in “parallel routes": #58368
  • fix: Don't reset shallow URL updates on prefetch: #58297
  • fix: ensure batch values are sharable: #58315
  • fix incorrect fetch cache handling: #58460
  • turbopack: Don't error with legacy server actions boolean: #58416
  • Update turbopack: #58408
  • Upgrade vendored React: #58489
  • Apply next/font to foreign code: #58461
  • Turbopack: Use structured styled text in issue descriptions: #58156
  • onHeaders updates for App Pages: #58410
  • revalidate APIs should make route handlers dynamic: #58466
  • remove optimistic navigation behavior when prefetch is false: #58413
  • fix: set x-forwarded-host based on request: #58500
  • Inline ChildProp: #58519
  • Remove client only dynamic chunks from edge bundle : #56761
  • tweak cache + revalidate fetch warning: #58505

Documentation Changes

  • remove example for router.events as it does not exist: #58286
  • chore(docs): fix typo: #58344
  • docs: Update runtime table: #58361
  • Update 08-parallel-routes.mdx: #58393
  • Docs: Update middleware example snippet: #58488
  • update meta variable to metadata variable so that the meta data updat…: #58396
  • Update 07-error-handling.mdx: #58236
  • docs: Added Kinde auth provider: #58231
  • Update index.mdx: #58210
  • Make example of passing down a Server Action more clear: #57972
  • docs: Fix grammar in Styling section: #58071
  • docs: Fix grammar in Client Components section: #58065
  • docs: Fix grammar in Dynamic Rendering section: #58062
  • Docs: fix grammatical issue in "Data Fetching Patterns" section: #58056
  • Update 02-patterns.mdx: #58032
  • Update 04-ci-build-caching.mdx - Add Jenkins: #58001

Example Changes

  • examples: Update Middleware for CSP: #58300

... (truncated)

Commits

Updates lucide-react from 0.291.0 to 0.294.0

Release notes

Sourced from lucide-react's releases.

New icons 0.294.0

New icons 🎨

Modified Icons 🔨

Renamed user icons and package updates 0.293.0

Packages updates 📦

  • Angular 17 support for lucide-angular #1696
  • Make sure "lucide" classes are applied on elements for all packages #1691

Renamed Icons 🔨

New icons 0.292.0

New icons 🎨

Modified Icons 🔨

Commits

Updates next from 14.0.1 to 14.0.3

Release notes

Sourced from next's releases.

v14.0.3

Core Changes

  • Update React from 746890329 to 0e352ea01: #58279
  • fix(turbopack): support middleware in src: #58218
  • Update font data: #58317
  • Replace custom Thenable type with native Promises: #58337
  • fix(eslint): next/script beforeInteractive gives warning on appDir: #51148
  • fix: import antd from es in modularizeImports: #57968
  • fix(WellKnownErrorsPlugin): avoid compilation warnings array with empty items: #57768
  • Add experimental support for history.pushState and history.replaceState: #58335
  • Fix: expected "catch all routes" are not matched in “parallel routes": #58368
  • fix: Don't reset shallow URL updates on prefetch: #58297
  • fix: ensure batch values are sharable: #58315
  • fix incorrect fetch cache handling: #58460
  • turbopack: Don't error with legacy server actions boolean: #58416
  • Update turbopack: #58408
  • Upgrade vendored React: #58489
  • Apply next/font to foreign code: #58461
  • Turbopack: Use structured styled text in issue descriptions: #58156
  • onHeaders updates for App Pages: #58410
  • revalidate APIs should make route handlers dynamic: #58466
  • remove optimistic navigation behavior when prefetch is false: #58413
  • fix: set x-forwarded-host based on request: #58500
  • Inline ChildProp: #58519
  • Remove client only dynamic chunks from edge bundle : #56761
  • tweak cache + revalidate fetch warning: #58505

Documentation Changes

  • remove example for router.events as it does not exist: #58286
  • chore(docs): fix typo: #58344
  • docs: Update runtime table: #58361
  • Update 08-pa...

    Description has been truncated

Bumps the all group with 26 updates:

| Package | From | To |
| --- | --- | --- |
| [@dnd-kit/core](https://github.com/clauderic/dnd-kit/tree/HEAD/packages/core) | `6.0.8` | `6.1.0` |
| [@dnd-kit/modifiers](https://github.com/clauderic/dnd-kit/tree/HEAD/packages/modifiers) | `6.0.1` | `7.0.0` |
| [@dnd-kit/sortable](https://github.com/clauderic/dnd-kit/tree/HEAD/packages/sortable) | `7.0.2` | `8.0.0` |
| [@next/font](https://github.com/vercel/next.js/tree/HEAD/packages/font) | `14.0.1` | `14.0.3` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `20.8.10` | `20.10.1` |
| [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `18.2.33` | `18.2.39` |
| [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) | `18.2.14` | `18.2.17` |
| [culori](https://github.com/Evercoder/culori) | `3.2.0` | `3.3.0` |
| [eslint](https://github.com/eslint/eslint) | `8.52.0` | `8.54.0` |
| [eslint-config-next](https://github.com/vercel/next.js/tree/HEAD/packages/eslint-config-next) | `14.0.1` | `14.0.3` |
| [lucide-react](https://github.com/lucide-icons/lucide/tree/HEAD/packages/lucide-react) | `0.291.0` | `0.294.0` |
| [next](https://github.com/vercel/next.js) | `14.0.1` | `14.0.3` |
| [react-use](https://github.com/streamich/react-use) | `17.4.0` | `17.4.1` |
| [sharp](https://github.com/lovell/sharp) | `0.32.6` | `0.33.0` |
| [typescript](https://github.com/Microsoft/TypeScript) | `5.2.2` | `5.3.2` |
| [@testing-library/jest-dom](https://github.com/testing-library/jest-dom) | `6.1.4` | `6.1.5` |
| [@testing-library/react](https://github.com/testing-library/react-testing-library) | `14.0.0` | `14.1.2` |
| [@types/common-tags](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/common-tags) | `1.8.3` | `1.8.4` |
| [@types/culori](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/culori) | `2.0.3` | `2.0.4` |
| [@types/jest](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/jest) | `29.5.7` | `29.5.10` |
| [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) | `6.9.1` | `6.13.1` |
| [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) | `6.9.1` | `6.13.1` |
| [prettier](https://github.com/prettier/prettier) | `3.0.3` | `3.1.0` |
| [prettier-plugin-organize-imports](https://github.com/simonhaenisch/prettier-plugin-organize-imports) | `3.2.3` | `3.2.4` |
| [prettier-plugin-tailwindcss](https://github.com/tailwindlabs/prettier-plugin-tailwindcss) | `0.5.6` | `0.5.7` |
| [tsx](https://github.com/privatenumber/tsx) | `3.14.0` | `4.6.1` |


Updates `@dnd-kit/core` from 6.0.8 to 6.1.0
- [Release notes](https://github.com/clauderic/dnd-kit/releases)
- [Changelog](https://github.com/clauderic/dnd-kit/blob/master/packages/core/CHANGELOG.md)
- [Commits](https://github.com/clauderic/dnd-kit/commits/@dnd-kit/[email protected]/packages/core)

Updates `@dnd-kit/modifiers` from 6.0.1 to 7.0.0
- [Release notes](https://github.com/clauderic/dnd-kit/releases)
- [Changelog](https://github.com/clauderic/dnd-kit/blob/master/packages/modifiers/CHANGELOG.md)
- [Commits](https://github.com/clauderic/dnd-kit/commits/@dnd-kit/[email protected]/packages/modifiers)

Updates `@dnd-kit/sortable` from 7.0.2 to 8.0.0
- [Release notes](https://github.com/clauderic/dnd-kit/releases)
- [Changelog](https://github.com/clauderic/dnd-kit/blob/master/packages/sortable/CHANGELOG.md)
- [Commits](https://github.com/clauderic/dnd-kit/commits/@dnd-kit/[email protected]/packages/sortable)

Updates `@next/font` from 14.0.1 to 14.0.3
- [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.0.3/packages/font)

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

Updates `@types/react` from 18.2.33 to 18.2.39
- [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.14 to 18.2.17
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom)

Updates `culori` from 3.2.0 to 3.3.0
- [Release notes](https://github.com/Evercoder/culori/releases)
- [Commits](Evercoder/culori@v3.2.0...v3.3.0)

Updates `eslint` from 8.52.0 to 8.54.0
- [Release notes](https://github.com/eslint/eslint/releases)
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md)
- [Commits](eslint/eslint@v8.52.0...v8.54.0)

Updates `eslint-config-next` from 14.0.1 to 14.0.3
- [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.0.3/packages/eslint-config-next)

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

Updates `next` from 14.0.1 to 14.0.3
- [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.0.1...v14.0.3)

Updates `react-use` from 17.4.0 to 17.4.1
- [Release notes](https://github.com/streamich/react-use/releases)
- [Changelog](https://github.com/streamich/react-use/blob/master/CHANGELOG.md)
- [Commits](streamich/react-use@v17.4.0...v17.4.1)

Updates `sharp` from 0.32.6 to 0.33.0
- [Release notes](https://github.com/lovell/sharp/releases)
- [Changelog](https://github.com/lovell/sharp/blob/main/docs/changelog.md)
- [Commits](lovell/sharp@v0.32.6...v0.33.0)

Updates `typescript` from 5.2.2 to 5.3.2
- [Release notes](https://github.com/Microsoft/TypeScript/releases)
- [Commits](microsoft/TypeScript@v5.2.2...v5.3.2)

Updates `@testing-library/jest-dom` from 6.1.4 to 6.1.5
- [Release notes](https://github.com/testing-library/jest-dom/releases)
- [Changelog](https://github.com/testing-library/jest-dom/blob/main/CHANGELOG.md)
- [Commits](testing-library/jest-dom@v6.1.4...v6.1.5)

Updates `@testing-library/react` from 14.0.0 to 14.1.2
- [Release notes](https://github.com/testing-library/react-testing-library/releases)
- [Changelog](https://github.com/testing-library/react-testing-library/blob/main/CHANGELOG.md)
- [Commits](testing-library/react-testing-library@v14.0.0...v14.1.2)

Updates `@types/common-tags` from 1.8.3 to 1.8.4
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/common-tags)

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

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

Updates `@typescript-eslint/eslint-plugin` from 6.9.1 to 6.13.1
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v6.13.1/packages/eslint-plugin)

Updates `@typescript-eslint/parser` from 6.9.1 to 6.13.1
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v6.13.1/packages/parser)

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

Updates `prettier-plugin-organize-imports` from 3.2.3 to 3.2.4
- [Release notes](https://github.com/simonhaenisch/prettier-plugin-organize-imports/releases)
- [Commits](simonhaenisch/prettier-plugin-organize-imports@v3.2.3...v3.2.4)

Updates `prettier-plugin-tailwindcss` from 0.5.6 to 0.5.7
- [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.6...v0.5.7)

Updates `tsx` from 3.14.0 to 4.6.1
- [Release notes](https://github.com/privatenumber/tsx/releases)
- [Changelog](https://github.com/privatenumber/tsx/blob/develop/release.config.cjs)
- [Commits](privatenumber/tsx@v3.14.0...v4.6.1)

---
updated-dependencies:
- dependency-name: "@dnd-kit/core"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: "@dnd-kit/modifiers"
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all
- dependency-name: "@dnd-kit/sortable"
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all
- dependency-name: "@next/font"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: "@types/node"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: "@types/react"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: "@types/react-dom"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: culori
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: eslint
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: eslint-config-next
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: lucide-react
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: next
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: react-use
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: sharp
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: typescript
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: "@testing-library/jest-dom"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: "@testing-library/react"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: "@types/common-tags"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: "@types/culori"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: "@types/jest"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: "@typescript-eslint/eslint-plugin"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: "@typescript-eslint/parser"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: prettier
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: prettier-plugin-organize-imports
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: prettier-plugin-tailwindcss
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: tsx
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Dec 1, 2023
Copy link

vercel bot commented Dec 1, 2023

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
ourflags-lgbt ✅ Ready (Inspect) Visit Preview 💬 Add feedback Dec 1, 2023 6:32am

@s-thom s-thom merged commit f5d6976 into main Dec 1, 2023
6 checks passed
@s-thom s-thom deleted the dependabot/npm_and_yarn/all-6de0412579 branch December 1, 2023 06:37
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