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 updates group across 1 directory with 10 updates #119

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

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 18, 2024

Bumps the updates group with 10 updates in the / directory:

Package From To
@auth/drizzle-adapter 1.7.3 1.7.4
@tabler/icons-react 3.21.0 3.22.0
drizzle-orm 0.36.0 0.36.3
framer-motion 11.11.11 11.11.17
next-themes 0.4.1 0.4.3
@types/node 22.8.7 22.9.0
drizzle-kit 0.27.1 0.28.1
eslint-plugin-n 17.12.0 17.13.2
postcss 8.4.47 8.4.49
tailwindcss 3.4.14 3.4.15

Updates @auth/drizzle-adapter from 1.7.3 to 1.7.4

Release notes

Sourced from @​auth/drizzle-adapter's releases.

@​auth/drizzle-adapter@​1.7.4

Other

  • @​auth/core: dependency update (a150f1e8)
Commits
  • 846c9f3 chore(release): bump package version(s) [skip ci]
  • 1c37d92 test: fix import
  • a150f1e fix(core): vendor cookie until it has an ESM build (#12248)
  • 4b01b46 Revert "fix(core): filter unnecessary param before passing to session callback"
  • c650d0c fix(core): filter unnecessary param before passing to session callback
  • a1cf406 chore(deps): bump cookie from 0.6.0 to 1.0.1 (#12178)
  • 06e2c9c docs: handle nullable Session
  • See full diff in compare view

Updates @tabler/icons-react from 3.21.0 to 3.22.0

Release notes

Sourced from @​tabler/icons-react's releases.

Release 3.22.0

18 new icons:

  • filled/brand-messenger
  • filled/brand-weibo
  • filled/bubble-text
  • filled/ghost-3
  • filled/golf
  • filled/keyboard
  • filled/live-view
  • filled/meeple
  • filled/message-2
  • filled/nurse
  • filled/palette
  • filled/quote
  • filled/video
  • filled/windsock
  • outline/brand-tesla
  • outline/clipboard-search
  • outline/tag-minus
  • outline/tag-plus

Fixed icons: outline/building-wind-turbine, outline/circuit-bulb, outline/circuit-capacitor-polarized, outline/circuit-capacitor, outline/circuit-cell-plus, outline/circuit-cell, outline/circuit-changeover, outline/circuit-diode-zener, outline/circuit-diode, outline/circuit-ground-digital, outline/circuit-ground, outline/circuit-inductor, outline/circuit-motor, outline/circuit-pushbutton, outline/circuit-resistor, outline/circuit-switch-closed, outline/circuit-switch-open, outline/circuit-voltmeter, outline/empathize, outline/external-link-off, outline/external-link, outline/nurse, outline/plug-connected, outline/sos, outline/tag

Commits

Updates drizzle-orm from 0.36.0 to 0.36.3

Release notes

Sourced from drizzle-orm's releases.

0.36.3

New Features

Support for UPDATE ... FROM in PostgreSQL and SQLite

As the SQLite documentation mentions:

[!NOTE] The UPDATE-FROM idea is an extension to SQL that allows an UPDATE statement to be driven by other tables in the database. The "target" table is the specific table that is being updated. With UPDATE-FROM you can join the target table against other tables in the database in order to help compute which rows need updating and what the new values should be on those rows

Similarly, the PostgreSQL documentation states:

[!NOTE] A table expression allowing columns from other tables to appear in the WHERE condition and update expressions

Drizzle also supports this feature starting from this version

For example, current query:

await db
  .update(users)
  .set({ cityId: cities.id })
  .from(cities)
  .where(and(eq(cities.name, 'Seattle'), eq(users.name, 'John')))

Will generate this sql

update "users" set "city_id" = "cities"."id" 
from "cities" 
where ("cities"."name" = $1 and "users"."name" = $2)
-- params: [ 'Seattle', 'John' ]

You can also alias tables that are joined (in PG, you can also alias the updating table too).

const c = alias(cities, 'c');
await db
  .update(users)
  .set({ cityId: c.id })
  .from(c);

... (truncated)

Commits

Updates framer-motion from 11.11.11 to 11.11.17

Changelog

Sourced from framer-motion's changelog.

Changelog

Motion adheres to Semantic Versioning.

Undocumented APIs should be considered internal and may change without warning.

[11.11.16] 2024-11-14

Fixed

  • Fixing stagger with mini animate.

[11.11.16] 2024-11-14

Fixed

  • Ensuring animations passed to scroll are scrubbed linearly.
  • Fixing mini types entrypoint.
  • Exporting easing types from "motion".

[11.11.15] 2024-11-13

Fixed

  • Fixing mini and react-mini entrypoints.

[11.11.14] 2024-11-12

Fixed

  • Fixing fallback entry points for "motion/react" etc.

[11.11.13] 2024-11-12

Fixed

  • Fixing build and entry points for "motion".

[11.11.12] 2024-11-12

Changed

  • Adding "motion" package.
  • Replaced Motion One (see upgrade guide).
Commits

Updates next-themes from 0.4.1 to 0.4.3

Release notes

Sourced from next-themes's releases.

v0.4.3

What's Changed

  • Pass nonce to inline style tag when using disableTransitionOnChange

Full Changelog: pacocoursey/next-themes@v0.4.2...v0.4.3

v0.4.2

What's Changed

New Contributors

Full Changelog: pacocoursey/next-themes@v0.4.1...v0.4.2

Commits
  • d00d29c v0.4.3
  • 5c7289d Bump the npm_and_yarn group across 4 directories with 1 update (#320)
  • 7f6fbfd pass nonce to inline style for disableTransitionOnChange, fixes #303
  • 807cfe3 v0.4.2
  • a619d35 v0.4.1
  • 06b6a39 Re-export types from next-themes (#321)
  • 2a39066 Bump next from 13.5.6 to 14.2.10 in the npm_and_yarn group across 1 directory...
  • See full diff in compare view

Updates @types/node from 22.8.7 to 22.9.0

Commits

Updates drizzle-kit from 0.27.1 to 0.28.1

Release notes

Sourced from drizzle-kit's releases.

[email protected]

Bug fixes

[email protected]

Improvements

Bug Fixes

[email protected]

Commits

Updates eslint-plugin-n from 17.12.0 to 17.13.2

Release notes

Sourced from eslint-plugin-n's releases.

v17.13.2

17.13.2 (2024-11-15)

🩹 Fixes

  • no-missing-require: handle multiple resolvePaths (#383) (df6ad2a)

v17.13.1

17.13.1 (2024-11-07)

🩹 Fixes

  • exported / referenced plugin same instance (#380) (3c45b67)

v17.13.0

17.13.0 (2024-11-05)

🌟 Features

  • no-unsupported: support Node 20.18.0 (#374) (d39d99a)

🩹 Fixes

  • no-unsupported: fix node:test module (#378) (0b228dd)

🧹 Chores

Changelog

Sourced from eslint-plugin-n's changelog.

17.13.2 (2024-11-15)

🩹 Fixes

  • no-missing-require: handle multiple resolvePaths (#383) (df6ad2a)

17.13.1 (2024-11-07)

🩹 Fixes

  • exported / referenced plugin same instance (#380) (3c45b67)

17.13.0 (2024-11-05)

🌟 Features

  • no-unsupported: support Node 20.18.0 (#374) (d39d99a)

🩹 Fixes

  • no-unsupported: fix node:test module (#378) (0b228dd)

🧹 Chores

Commits

Updates postcss from 8.4.47 to 8.4.49

Release notes

Sourced from postcss's releases.

8.4.49

8.4.48

  • Fixed position calculation in error/warnings methods (by @​romainmenke).
Changelog

Sourced from postcss's changelog.

8.4.49

8.4.48

  • Fixed position calculation in error/warnings methods (by @​romainmenke).
Commits

Updates tailwindcss from 3.4.14 to 3.4.15

Release notes

Sourced from tailwindcss's releases.

v3.4.15

  • Bump versions for security vulnerabilities (#14697)
  • Ensure the TypeScript types for the boxShadow theme configuration allows arrays (#14856)
  • Set fallback for opacity variables to ensure setting colors with the selection:* variant works in Chrome 131 (#15003)
Changelog

Sourced from tailwindcss's changelog.

[3.4.15] - 2024-11-14

  • Bump versions for security vulnerabilities (#14697)
  • Ensure the TypeScript types for the boxShadow theme configuration allows arrays (#14856)
  • Set fallback for opacity variables to ensure setting colors with the selection:* variant works in Chrome 131 (#15003)
Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the updates group with 10 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@auth/drizzle-adapter](https://github.com/nextauthjs/next-auth) | `1.7.3` | `1.7.4` |
| [@tabler/icons-react](https://github.com/tabler/tabler-icons/tree/HEAD/packages/icons-react) | `3.21.0` | `3.22.0` |
| [drizzle-orm](https://github.com/drizzle-team/drizzle-orm) | `0.36.0` | `0.36.3` |
| [framer-motion](https://github.com/framer/motion) | `11.11.11` | `11.11.17` |
| [next-themes](https://github.com/pacocoursey/next-themes) | `0.4.1` | `0.4.3` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `22.8.7` | `22.9.0` |
| [drizzle-kit](https://github.com/drizzle-team/drizzle-orm) | `0.27.1` | `0.28.1` |
| [eslint-plugin-n](https://github.com/eslint-community/eslint-plugin-n) | `17.12.0` | `17.13.2` |
| [postcss](https://github.com/postcss/postcss) | `8.4.47` | `8.4.49` |
| [tailwindcss](https://github.com/tailwindlabs/tailwindcss) | `3.4.14` | `3.4.15` |



Updates `@auth/drizzle-adapter` from 1.7.3 to 1.7.4
- [Release notes](https://github.com/nextauthjs/next-auth/releases)
- [Commits](https://github.com/nextauthjs/next-auth/compare/@auth/[email protected]...@auth/[email protected])

Updates `@tabler/icons-react` from 3.21.0 to 3.22.0
- [Release notes](https://github.com/tabler/tabler-icons/releases)
- [Commits](https://github.com/tabler/tabler-icons/commits/v3.22.0/packages/icons-react)

Updates `drizzle-orm` from 0.36.0 to 0.36.3
- [Release notes](https://github.com/drizzle-team/drizzle-orm/releases)
- [Commits](drizzle-team/drizzle-orm@0.36.0...0.36.3)

Updates `framer-motion` from 11.11.11 to 11.11.17
- [Changelog](https://github.com/motiondivision/motion/blob/main/CHANGELOG.md)
- [Commits](motiondivision/motion@v11.11.11...v11.11.17)

Updates `next-themes` from 0.4.1 to 0.4.3
- [Release notes](https://github.com/pacocoursey/next-themes/releases)
- [Commits](pacocoursey/next-themes@v0.4.1...v0.4.3)

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

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

Updates `eslint-plugin-n` from 17.12.0 to 17.13.2
- [Release notes](https://github.com/eslint-community/eslint-plugin-n/releases)
- [Changelog](https://github.com/eslint-community/eslint-plugin-n/blob/master/CHANGELOG.md)
- [Commits](eslint-community/eslint-plugin-n@v17.12.0...v17.13.2)

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

Updates `tailwindcss` from 3.4.14 to 3.4.15
- [Release notes](https://github.com/tailwindlabs/tailwindcss/releases)
- [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/v3.4.15/CHANGELOG.md)
- [Commits](tailwindlabs/tailwindcss@v3.4.14...v3.4.15)

---
updated-dependencies:
- dependency-name: "@auth/drizzle-adapter"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: updates
- dependency-name: "@tabler/icons-react"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: updates
- dependency-name: drizzle-orm
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: updates
- dependency-name: framer-motion
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: updates
- dependency-name: next-themes
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: updates
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: updates
- dependency-name: drizzle-kit
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: updates
- dependency-name: eslint-plugin-n
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: updates
- dependency-name: postcss
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: updates
- dependency-name: tailwindcss
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: updates
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Nov 18, 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
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants