Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update all non-major dependencies #47

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

Conversation

hywax-assistant
Copy link
Collaborator

@hywax-assistant hywax-assistant commented Nov 18, 2024

This PR contains the following updates:

Package Type Update Change
@antfu/eslint-config dependencies minor ^3.9.1 -> ^3.11.2
@commitlint/cli (source) devDependencies minor ^19.5.0 -> ^19.6.0
@commitlint/config-conventional (source) devDependencies minor ^19.5.0 -> ^19.6.0
@iconify-json/simple-icons devDependencies patch ^1.2.11 -> ^1.2.13
@iconify/json (source) devDependencies patch ^2.2.273 -> ^2.2.278
@types/better-sqlite3 (source) devDependencies patch ^7.6.11 -> ^7.6.12
@types/node (source) devDependencies minor ^22.9.0 -> ^22.10.1
@types/nodemailer (source) devDependencies patch ^6.4.16 -> ^6.4.17
@vitejs/plugin-vue (source) devDependencies patch ^5.2.0 -> ^5.2.1
better-sqlite3 dependencies minor ^11.5.0 -> ^11.6.0
dotenv-cli devDependencies patch ^7.4.2 -> ^7.4.4
drizzle-orm (source) dependencies patch ^0.36.3 -> ^0.36.4
eslint (source) peerDependencies minor ^9.15.0 -> ^9.16.0
eslint (source) devDependencies minor ^9.15.0 -> ^9.16.0
husky devDependencies patch ^9.1.6 -> ^9.1.7
nanoid dependencies patch ^5.0.8 -> ^5.0.9
node final patch 20.18.0-alpine -> 20.18.1-alpine
node stage patch 20.18.0-alpine -> 20.18.1-alpine
nuxt (source) devDependencies patch ^3.14.159 -> ^3.14.1592
nuxt-time devDependencies patch ^1.0.2 -> ^1.0.3
nuxt-zod-i18n dependencies minor ^1.10.0 -> ^1.11.2
pnpm (source) packageManager minor 9.13.2 -> 9.14.4
turbo (source) devDependencies patch ^2.3.0 -> ^2.3.3
typescript (source) devDependencies minor ^5.6.3 -> ^5.7.2
unocss devDependencies minor ^0.64.1 -> ^0.65.0
unplugin-vue-components devDependencies patch ^0.27.4 -> ^0.27.5

Release Notes

antfu/eslint-config (@​antfu/eslint-config)

v3.11.2

Compare Source

   🐞 Bug Fixes
  • perfectionist: Revert bahaviour change on import sorting since v3.10  -  by @​antfu (00c41)
    View changes on GitHub

v3.11.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v3.11.0

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v3.10.0

Compare Source

   🚀 Features
    View changes on GitHub

v3.9.2

Compare Source

   🚀 Features
    View changes on GitHub
conventional-changelog/commitlint (@​commitlint/cli)

v19.6.0

Compare Source

Note: Version bump only for package @​commitlint/cli

conventional-changelog/commitlint (@​commitlint/config-conventional)

v19.6.0

Compare Source

Note: Version bump only for package @​commitlint/config-conventional

iconify/icon-sets (@​iconify/json)

v2.2.278

Compare Source

v2.2.277

Compare Source

v2.2.276

Compare Source

v2.2.275

Compare Source

v2.2.274

Compare Source

vitejs/vite-plugin-vue (@​vitejs/plugin-vue)

v5.2.1

WiseLibs/better-sqlite3 (better-sqlite3)

v11.6.0

Compare Source

What's Changed

New Contributors

Full Changelog: WiseLibs/better-sqlite3@v11.5.0...v11.6.0

entropitor/dotenv-cli (dotenv-cli)

v7.4.4: Fix security issue

Compare Source

https://github.com/entropitor/dotenv-cli/pull/119

v7.4.3: Forward signals to child process

Compare Source

https://github.com/entropitor/dotenv-cli/pull/107

drizzle-team/drizzle-orm (drizzle-orm)

v0.36.4

Compare Source

New Package: drizzle-seed

[!NOTE]
drizzle-seed can only be used with [email protected] or higher. Versions lower than this may work at runtime but could have type issues and identity column issues, as this patch was introduced in [email protected]

Full Reference

The full API reference and package overview can be found in our official documentation

Basic Usage

In this example we will create 10 users with random names and ids

import { pgTable, integer, text } from "drizzle-orm/pg-core";
import { drizzle } from "drizzle-orm/node-postgres";
import { seed } from "drizzle-seed";

const users = pgTable("users", {
  id: integer().primaryKey(),
  name: text().notNull(),
});

async function main() {
  const db = drizzle(process.env.DATABASE_URL!);
  await seed(db, { users });
}

main();

Options

count

By default, the seed function will create 10 entities.
However, if you need more for your tests, you can specify this in the seed options object

await seed(db, schema, { count: 1000 });

seed

If you need a seed to generate a different set of values for all subsequent runs, you can define a different number
in the seed option. Any new number will generate a unique set of values

await seed(db, schema, { seed: 12345 });

The full API reference and package overview can be found in our official documentation

Features

Added OVERRIDING SYSTEM VALUE api to db.insert()

If you want to force you own values for GENERATED ALWAYS AS IDENTITY columns, you can use OVERRIDING SYSTEM VALUE

As PostgreSQL docs mentions

In an INSERT command, if ALWAYS is selected, a user-specified value is only accepted if the INSERT statement specifies OVERRIDING SYSTEM VALUE. If BY DEFAULT is selected, then the user-specified value takes precedence

await db.insert(identityColumnsTable).overridingSystemValue().values([
  { alwaysAsIdentity: 2 },
]);

Added .$withAuth() API for Neon HTTP driver

Using this API, Drizzle will send you an auth token to authorize your query. It can be used with any query available in Drizzle by simply adding .$withAuth() before it. This token will be used for a specific query

Examples

const token = 'HdncFj1Nm'

await db.$withAuth(token).select().from(usersTable);
await db.$withAuth(token).update(usersTable).set({ name: 'CHANGED' }).where(eq(usersTable.name, 'TARGET'))

Bug Fixes

eslint/eslint (eslint)

v9.16.0

Compare Source

Features

  • 8f70eb1 feat: Add ignoreComputedKeys option in sort-keys rule (#​19162) (Milos Djermanovic)

Documentation

  • 9eefc8f docs: fix typos in use-isnan (#​19190) (루밀LuMir)
  • 0c8cea8 docs: switch the order of words in no-unreachable (#​19189) (루밀LuMir)
  • 0c19417 docs: add missing backtick to no-async-promise-executor (#​19188) (루밀LuMir)
  • 8df9276 docs: add backtick in -0 in description of no-compare-neg-zero (#​19186) (루밀LuMir)
  • 7e16e3f docs: fix caseSensitive option's title of sort-keys (#​19183) (Tanuj Kanti)
  • 0c6b842 docs: fix typos in migration-guide.md (#​19180) (루밀LuMir)
  • 353266e docs: fix a typo in debug.md (#​19179) (루밀LuMir)
  • 5ff318a docs: delete unnecessary horizontal rule(---) in nodejs-api (#​19175) (루밀LuMir)
  • 576bcc5 docs: mark more rules as handled by TypeScript (#​19164) (Tanuj Kanti)
  • 742d054 docs: note that no-restricted-syntax can be used with any language (#​19148) (Milos Djermanovic)

Chores

typicode/husky (husky)

v9.1.7

Compare Source

What's Changed

New Contributors

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

ai/nanoid (nanoid)

v5.0.9

Compare Source

  • Fixed a way to break Nano ID by passing non-integer size (by @​myndzi).
nodejs/node (node)

v20.18.1: 2024-11-20, Version 20.18.1 'Iron' (LTS), @​marco-ippolito

Compare Source

Notable Changes
Commits
nuxt/nuxt (nuxt)

v3.14.1592

Compare Source

3.14.1592 is the next patch release.

👉 Changelog

compare changes

🩹 Fixes
  • rspack: Update webpackbar with support for rspack (#​29823)
  • nuxt: Assign default name to component without setup (#​29869)
  • kit: Use dst to deduplicate templates when adding them (#​29895)
  • nuxt: Handle empty plugin files (d44408e87)
  • vite: Use resolved nuxt template dst to invalidate modules (6cd3352de)
  • nuxt: Return null map for empty plugin metadata (302a66da9)
  • kit: Resolve module paths before appending subpaths (#​29955)
  • nuxt: Recompile templates on change events (#​29954)
  • nuxt: Do not include <NuxtWelcome> when building (#​29956)
  • nuxt: Allow scanning metadata from 2+ files at same path (#​29969)
  • nuxt: Do not disallow importing nitro dependencies (#​29975)
💅 Refactors
  • nuxt: Define layouts as async vue components (#​29957)
📖 Documentation
🏡 Chore
  • Remove unused imports and update eslint config (#​29876)
✅ Tests
🤖 CI
❤️ Contributors
danielroe/nuxt-time (nuxt-time)

v1.0.3

Compare Source

   🐞 Bug Fixes
    View changes on GitHub
xibman/nuxt-zod-i18n (nuxt-zod-i18n)

v1.11.2

Compare Source

compare changes

🏡 Chore
🤖 CI
  • pnpm version: Align pnpm version to 9.14.4 (7acd1f3)
❤️ Contributors

v1.11.1

Compare Source

compare changes

🩹 Fixes
  • invalid_type message: Running translation for invalid_type error parameters (c8898af)
🎨 Styles
❤️ Contributors

v1.11.0

Compare Source

compare changes

🚀 Enhancements
❤️ Contributors
pnpm/pnpm (pnpm)

v9.14.4

Compare Source

Patch Changes

  • Don't ever save mutated metadata to the metadata cache.

Platinum Sponsors

Bit Bit Figma

Gold Sponsors

Discord Prisma
u|screen

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Hywax Assistant.

@hywax-assistant hywax-assistant added the dependencies Pull requests that update a dependency file label Nov 18, 2024
@hywax-assistant hywax-assistant changed the title chore(deps): update devdependency husky to ^9.1.7 chore(deps): update all non-major dependencies Nov 19, 2024
@hywax-assistant hywax-assistant force-pushed the renovate/all-minor-patch branch 6 times, most recently from 87d3ffa to 68fdaf1 Compare November 26, 2024 19:13
@hywax-assistant hywax-assistant force-pushed the renovate/all-minor-patch branch 4 times, most recently from fd0aa13 to c5d62cf Compare November 30, 2024 19:02
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