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

fix(deps): update all non-major dependencies #11426

Merged
merged 4 commits into from
Jul 17, 2024
Merged

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jul 8, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@astrojs/check (source) ^0.7.0 -> ^0.8.1 age adoption passing confidence
@astrojs/compiler (source) ^2.8.1 -> ^2.8.2 age adoption passing confidence
@babel/core (source) ^7.24.7 -> ^7.24.9 age adoption passing confidence
@babel/generator (source) ^7.24.7 -> ^7.24.10 age adoption passing confidence
@babel/parser (source) ^7.24.7 -> ^7.24.8 age adoption passing confidence
@babel/traverse (source) ^7.24.7 -> ^7.24.8 age adoption passing confidence
@babel/types (source) ^7.24.7 -> ^7.24.9 age adoption passing confidence
@changesets/cli (source) ^2.27.6 -> ^2.27.7 age adoption passing confidence
@playwright/test (source) 1.45.0 -> 1.45.2 age adoption passing confidence
@playwright/test (source) ^1.45.0 -> ^1.45.2 age adoption passing confidence
@preact/signals (source) ^1.2.3 -> ^1.3.0 age adoption passing confidence
@preact/signals (source) 1.2.3 -> 1.3.0 age adoption passing confidence
@solidjs/router ^0.13.6 -> ^0.14.1 age adoption passing confidence
@types/set-cookie-parser (source) ^2.4.9 -> ^2.4.10 age adoption passing confidence
@vercel/nft ^0.27.2 -> ^0.27.3 age adoption passing confidence
acorn ^8.12.0 -> ^8.12.1 age adoption passing confidence
axobject-query ^4.0.0 -> ^4.1.0 age adoption passing confidence
drizzle-orm (source) ^0.31.2 -> ^0.32.0 age adoption passing confidence
eslint (source) ^9.6.0 -> ^9.7.0 age adoption passing confidence
open-props ^1.7.4 -> ^1.7.5 age adoption passing confidence
postcss-preset-env (source) ^9.5.15 -> ^9.6.0 age adoption passing confidence
preact-ssr-prepass ^1.2.1 -> ^1.2.2 age adoption passing confidence
preferred-pm (source) ^3.1.3 -> ^3.1.4 age adoption passing confidence
prettier (source) ^3.3.2 -> ^3.3.3 age adoption passing confidence
remark-smartypants ^3.0.1 -> ^3.0.2 age adoption passing confidence
rollup (source) ^4.18.0 -> ^4.18.1 age adoption passing confidence
sass ^1.77.6 -> ^1.77.8 age adoption passing confidence
shiki (source) ^1.10.0 -> ^1.10.3 age adoption passing confidence
tailwindcss (source) ^3.4.4 -> ^3.4.5 age adoption passing confidence
typescript (source) ^5.5.2 -> ^5.5.3 age adoption passing confidence
typescript (source) ~5.5.2 -> ~5.5.3 age adoption passing confidence
typescript-eslint (source) ^7.14.1 -> ^7.16.1 age adoption passing confidence
vfile ^6.0.1 -> ^6.0.2 age adoption passing confidence
vite (source) ^5.3.2 -> ^5.3.4 age adoption passing confidence
vite-plugin-vue-devtools (source) ^7.3.5 -> ^7.3.6 age adoption passing confidence

Release Notes

withastro/language-tools (@​astrojs/check)

v0.8.1

Compare Source

Patch Changes

v0.8.0

Compare Source

Minor Changes
  • b8a6af3: Upgrades to the latest version of Volar, the underlying framework powering the Astro language server. This update should fix some of the recent issues regarding intellisense inside script tags.
Patch Changes
withastro/compiler (@​astrojs/compiler)

v2.8.2

Compare Source

Patch Changes
  • 6b7c12f: Avoids stringifying undefined in scoped class attributes
  • 8803da6: Fixes newlines in opening tag generating buggy code in TSX
babel/babel (@​babel/core)

v7.24.9

Compare Source

🐛 Bug Fix
💅 Polish
🏠 Internal

v7.24.8

Compare Source

👓 Spec Compliance
🐛 Bug Fix
💅 Polish
babel/babel (@​babel/parser)

v7.24.8

Compare Source

v7.24.8 (2024-07-11)

Thanks @​H0onnn, @​jkup and @​SreeXD for your first pull requests!

👓 Spec Compliance
🐛 Bug Fix
💅 Polish
Committers: 9
changesets/changesets (@​changesets/cli)

v2.27.7

Compare Source

Patch Changes
microsoft/playwright (@​playwright/test)

v1.45.2

Compare Source

v1.45.1

Compare Source

preactjs/signals (@​preact/signals)

v1.3.0

Compare Source

Minor Changes
Patch Changes
solidjs/solid-router (@​solidjs/router)

v0.14.1

Patch Changes
  • 6144da8: fix Response type narrowing in submission APIs

v0.14.0

Minor Changes
  • e4a13f6: Response helpers return responses, cache/action filter them out
  • bd9f19a: default form actions to url encoded
  • 5d9263b: rename load to preload
Patch Changes
  • a7e4062: fix #​457 extra leading slashes on path
  • 4b4536e: add usePreloadRoute export
  • 8cc0530: hack the types to work a bit better with Response Unions
vercel/nft (@​vercel/nft)

v0.27.3

Compare Source

Bug Fixes
acornjs/acorn (acorn)

v8.12.1

Compare Source

A11yance/axobject-query (axobject-query)

v4.1.0

Compare Source

This minor release no longer requires node 6+, and again has zero dependencies.

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

v0.32.0

Compare Source

Release notes for [email protected] and [email protected]

It's not mandatory to upgrade both packages, but if you want to use the new features in both queries and migrations, you will need to upgrade both packages

New Features

🎉 MySQL $returningId() function

MySQL itself doesn't have native support for RETURNING after using INSERT. There is only one way to do it for primary keys with autoincrement (or serial) types, where you can access insertId and affectedRows fields. We've prepared an automatic way for you to handle such cases with Drizzle and automatically receive all inserted IDs as separate objects

import { boolean, int, text, mysqlTable } from 'drizzle-orm/mysql-core';

const usersTable = mysqlTable('users', {
  id: int('id').primaryKey(),
  name: text('name').notNull(),
  verified: boolean('verified').notNull().default(false),
});

const result = await db.insert(usersTable).values([{ name: 'John' }, { name: 'John1' }]).$returningId();
//    ^? { id: number }[]

Also with Drizzle, you can specify a primary key with $default function that will generate custom primary keys at runtime. We will also return those generated keys for you in the $returningId() call

import { varchar, text, mysqlTable } from 'drizzle-orm/mysql-core';
import { createId } from '@​paralleldrive/cuid2';

const usersTableDefFn = mysqlTable('users_default_fn', {
  customId: varchar('id', { length: 256 }).primaryKey().$defaultFn(createId),
  name: text('name').notNull(),
});

const result = await db.insert(usersTableDefFn).values([{ name: 'John' }, { name: 'John1' }]).$returningId();
//  ^? { customId: string }[]

If there is no primary keys -> type will be {}[] for such queries

🎉 PostgreSQL Sequences

You can now specify sequences in Postgres within any schema you need and define all the available properties

Example
import { pgSchema, pgSequence } from "drizzle-orm/pg-core";

// No params specified
export const customSequence = pgSequence("name");

// Sequence with params
export const customSequence = pgSequence("name", {
      startWith: 100,
      maxValue: 10000,
      minValue: 100,
      cycle: true,
      cache: 10,
      increment: 2
});

// Sequence in custom schema
export const customSchema = pgSchema('custom_schema');

export const customSequence = customSchema.sequence("name");
🎉 PostgreSQL Identity Columns

Source: As mentioned, the serial type in Postgres is outdated and should be deprecated. Ideally, you should not use it. Identity columns are the recommended way to specify sequences in your schema, which is why we are introducing the identity columns feature

Example
import { pgTable, integer, text } from 'drizzle-orm/pg-core' 

export const ingredients = pgTable("ingredients", {
  id: integer("id").primaryKey().generatedAlwaysAsIdentity({ startWith: 1000 }),
  name: text("name").notNull(),
  description: text("description"),
});

You can specify all properties available for sequences in the .generatedAlwaysAsIdentity() function. Additionally, you can specify custom names for these sequences

PostgreSQL docs reference.

🎉 PostgreSQL Generated Columns

You can now specify generated columns on any column supported by PostgreSQL to use with generated columns

Example with generated column for tsvector

Note: we will add tsVector column type before latest release

import { SQL, sql } from "drizzle-orm";
import { customType, index, integer, pgTable, text } from "drizzle-orm/pg-core";

const tsVector = customType<{ data: string }>({
  dataType() {
    return "tsvector";
  },
});

export const test = pgTable(
  "test",
  {
    id: integer("id").primaryKey().generatedAlwaysAsIdentity(),
    content: text("content"),
    contentSearch: tsVector("content_search", {
      dimensions: 3,
    }).generatedAlwaysAs(
      (): SQL => sql`to_tsvector('english', ${test.content})`
    ),
  },
  (t) => ({
    idx: index("idx_content_search").using("gin", t.contentSearch),
  })
);

In case you don't need to reference any columns from your table, you can use just sql template or a string

export const users = pgTable("users", {
  id: integer("id"),
  name: text("name"),
  generatedName: text("gen_name").generatedAlwaysAs(sql`hello world!`),
  generatedName1: text("gen_name1").generatedAlwaysAs("hello world!"),
}),
🎉 MySQL Generated Columns

You can now specify generated columns on any column supported by MySQL to use with generated columns

You can specify both stored and virtual options, for more info you can check MySQL docs

Also MySQL has a few limitation for such columns usage, which is described here

Drizzle Kit will also have limitations for push command:

  1. You can't change the generated constraint expression and type using push. Drizzle-kit will ignore this change. To make it work, you would need to drop the column, push, and then add a column with a new expression. This was done due to the complex mapping from the database side, where the schema expression will be modified on the database side and, on introspection, we will get a different string. We can't be sure if you changed this expression or if it was changed and formatted by the database. As long as these are generated columns and push is mostly used for prototyping on a local database, it should be fast to drop and create generated columns. Since these columns are generated, all the data will be restored

  2. generate should have no limitations

Example
export const users = mysqlTable("users", {
  id: int("id"),
  id2: int("id2"),
  name: text("name"),
  generatedName: text("gen_name").generatedAlwaysAs(
    (): SQL => sql`${schema2.users.name} || 'hello'`,
    { mode: "stored" }
  ),
  generatedName1: text("gen_name1").generatedAlwaysAs(
    (): SQL => sql`${schema2.users.name} || 'hello'`,
    { mode: "virtual" }
  ),
}),

In case you don't need to reference any columns from your table, you can use just sql template or a string in .generatedAlwaysAs()

🎉 SQLite Generated Columns

You can now specify generated columns on any column supported by SQLite to use with generated columns

You can specify both stored and virtual options, for more info you can check SQLite docs

Also SQLite has a few limitation for such columns usage, which is described here

Drizzle Kit will also have limitations for push and generate command:

  1. You can't change the generated constraint expression with the stored type in an existing table. You would need to delete this table and create it again. This is due to SQLite limitations for such actions. We will handle this case in future releases (it will involve the creation of a new table with data migration).

  2. You can't add a stored generated expression to an existing column for the same reason as above. However, you can add a virtual expression to an existing column.

  3. You can't change a stored generated expression in an existing column for the same reason as above. However, you can change a virtual expression.

  4. You can't change the generated constraint type from virtual to stored for the same reason as above. However, you can change from stored to virtual.

New Drizzle Kit features

🎉 Migrations support for all the new orm features

PostgreSQL sequences, identity columns and generated columns for all dialects

🎉 New flag --force for drizzle-kit push

You can auto-accept all data-loss statements using the push command. It's only available in CLI parameters. Make sure you always use it if you are fine with running data-loss statements on your database

🎉 New migrations flag prefix

You can now customize migration file prefixes to make the format suitable for your migration tools:

  • index is the default type and will result in 0001_name.sql file names;
  • supabase and timestamp are equal and will result in 20240627123900_name.sql file names;
  • unix will result in unix seconds prefixes 1719481298_name.sql file names;
  • none will omit the prefix completely;
Example: Supabase migrations format
import { defineConfig } from "drizzle-kit";

export default defineConfig({
  dialect: "postgresql",
  migrations: {
    prefix: 'supabase'
  }
});

v0.31.4

Compare Source

  • Mark prisma clients package as optional - thanks @​Cherry

v0.31.3

Compare Source

Bug fixed
  • 🛠️ Fixed RQB behavior for tables with same names in different schemas
  • 🛠️ Fixed [BUG]: Mismatched type hints when using RDS Data API - #​2097
New Prisma-Drizzle extension
import { PrismaClient } from '@&#8203;prisma/client';
import { drizzle } from 'drizzle-orm/prisma/pg';
import { User } from './drizzle';

const prisma = new PrismaClient().$extends(drizzle());
const users = await prisma.$drizzle.select().from(User);

For more info, check docs: https://orm.drizzle.team/docs/prisma

eslint/eslint (eslint)

v9.7.0

Compare Source

Features

  • 7bd9839 feat: add support for es2025 duplicate named capturing groups (#​18630) (Yosuke Ota)
  • 1381394 feat: add regex option in no-restricted-imports (#​18622) (Nitin Kumar)

Bug Fixes

  • 14e9f81 fix: destructuring in catch clause in no-unused-vars (#​18636) (Francesco Trotta)

Documentation

  • 9f416db docs: Add Powered by Algolia label to the search. (#​18633) (Amaresh S M)
  • c8d26cb docs: Open JS Foundation -> OpenJS Foundation (#​18649) (Milos Djermanovic)
  • 6e79ac7 docs: loadESLint does not support option cwd (#​18641) (Francesco Trotta)

Chores

argyleink/open-props (open-props)

v1.7.5

Compare Source

csstools/postcss-plugins (postcss-preset-env)

v9.6.0

Compare Source

July 7, 2024


Configuration

📅 Schedule: Branch creation - "before 4am on Monday" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

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 has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot added the dependencies Pull requests that update a dependency file label Jul 8, 2024
Copy link

changeset-bot bot commented Jul 8, 2024

⚠️ No Changeset found

Latest commit: 9e228d2

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

@github-actions github-actions bot added feat: markdown Related to Markdown (scope) pkg: svelte Related to Svelte (scope) pkg: vue Related to Vue (scope) pkg: example Related to an example package (scope) pkg: react Related to React (scope) pkg: preact Related to Preact (scope) pkg: solid Related to Solid (scope) pkg: integration Related to any renderer integration (scope) pkg: astro Related to the core `astro` package (scope) labels Jul 8, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 58e3314 to c0be8b5 Compare July 8, 2024 13:02
@renovate renovate bot changed the title chore(deps): update all non-major dependencies fix(deps): update all non-major dependencies Jul 8, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 7 times, most recently from 737ef36 to 071e6c8 Compare July 10, 2024 01:37
@github-actions github-actions bot added the pkg: lit Related to Lit (scope) label Jul 10, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 9 times, most recently from dd812da to b2f7389 Compare July 14, 2024 16:07
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from a4f140a to 0310ab6 Compare July 16, 2024 09:32
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 0310ab6 to 29dc1fd Compare July 16, 2024 13:00
Copy link
Contributor Author

renovate bot commented Jul 16, 2024

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

@bluwy bluwy merged commit 2113a56 into main Jul 17, 2024
14 checks passed
@bluwy bluwy deleted the renovate/all-minor-patch branch July 17, 2024 06:48
ematipico pushed a commit that referenced this pull request Jul 18, 2024
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: bluwy <[email protected]>
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 feat: markdown Related to Markdown (scope) pkg: astro Related to the core `astro` package (scope) pkg: example Related to an example package (scope) pkg: integration Related to any renderer integration (scope) pkg: lit Related to Lit (scope) pkg: preact Related to Preact (scope) pkg: react Related to React (scope) pkg: solid Related to Solid (scope) pkg: svelte Related to Svelte (scope) pkg: vue Related to Vue (scope)
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant