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 #329

Merged
merged 1 commit into from
Nov 24, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Nov 24, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@clack/prompts (source) ^0.8.1 -> ^0.8.2 age adoption passing confidence
@nuxt/devtools (source) ^1.6.0 -> ^1.6.1 age adoption passing confidence
@vueuse/core (source) ^11.2.0 -> ^11.3.0 age adoption passing confidence
@vueuse/nuxt (source) ^11.2.0 -> ^11.3.0 age adoption passing confidence
drizzle-orm (source) ^0.36.3 -> ^0.36.4 age adoption passing confidence
turbo (source) ^2.3.0 -> ^2.3.1 age adoption passing confidence
typescript (source) ^5.6.3 -> ^5.7.2 age adoption passing confidence
vue-sonner ^1.2.5 -> ^1.3.0 age adoption passing confidence

Release Notes

natemoo-re/clack (@​clack/prompts)

v0.8.2

Compare Source

Patch Changes
nuxt/devtools (@​nuxt/devtools)

v1.6.1

Compare Source

Bug Fixes
Features
  • apply lint, use explict import (2c6d2d3)
vueuse/vueuse (@​vueuse/core)

v11.3.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub
drizzle-team/drizzle-orm (drizzle-orm)

v0.36.4

Compare Source

New Package: drizzle-seed

[!NOTE]
drizzle-seed can only be used with drizzle-orm@0.36.4 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 drizzle-orm@0.36.4

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

vercel/turborepo (turbo)

v2.3.1

Compare Source

microsoft/TypeScript (typescript)

v5.7.2

Compare Source

xiaoluoboding/vue-sonner (vue-sonner)

v1.3.0

Compare Source

Bug Fixes
  • add icon classes (ff8b159)
  • fixed the position bug (1c9b976)
  • module: fixed the client-only warning (5cb93ff)
  • use nuxt add component util for toaster (17adfb9)
Features

1.2.5 (2024-10-29)

1.2.4 (2024-10-29)

Features
  • add nuxt module for vue-sonner (08c4ee6)
  • add vue-sonner for nuxt module (96cbe8a)

1.2.3 (2024-10-21)

Bug Fixes
Features

1.2.2 (2024-10-15)

Bug Fixes
  • fixed docs (d75c6a8)
  • pass class, toastOptions class/classes to toast li element (13dcfd8)
  • use handleCloseToast instead of deleteToast function for headless toast to get onDismiss callback right (fa24350)

1.2.1 (2024-09-23)


Configuration

📅 Schedule: Branch creation - "after 2am and before 3am" (UTC), Automerge - "after 1am and before 2am" (UTC).

🚦 Automerge: Enabled.

Rebasing: Whenever PR becomes conflicted, 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 was generated by Mend Renovate. View the repository job log.

Copy link

vercel bot commented Nov 24, 2024

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

2 Skipped Deployments
Name Status Preview Comments Updated (UTC)
shelve-app ⬜️ Ignored (Inspect) Visit Preview Nov 24, 2024 11:17am
shelve-lp ⬜️ Ignored (Inspect) Visit Preview Nov 24, 2024 11:17am

Copy link

cloudflare-workers-and-pages bot commented Nov 24, 2024

Deploying shelve with  Cloudflare Pages  Cloudflare Pages

Latest commit: 7a3be42
Status:⚡️  Build in progress...

View logs

Copy link

github-actions bot commented Nov 24, 2024

Thank you for following the naming conventions! 🙏

Copy link

pkg-pr-new bot commented Nov 24, 2024

Open in Stackblitz

bun add https://pkg.pr.new/HugoRCD/shelve/@shelve/cli@329

commit: 3176b1b

@HugoRCD HugoRCD merged commit 23d9abc into main Nov 24, 2024
6 of 10 checks passed
@HugoRCD HugoRCD deleted the renovate/all-minor-patch branch November 24, 2024 11:17
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant