msonnberger / queued

https://queued.vercel.app
3 stars 0 forks source link

Update all non-major dependencies #220

Closed renovate[bot] closed 1 year ago

renovate[bot] commented 1 year ago

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@playwright/test (source) 1.35.1 -> 1.36.0 age adoption passing confidence
@sveltejs/adapter-vercel (source) 3.0.1 -> 3.0.2 age adoption passing confidence
@sveltejs/kit (source) 1.22.1 -> 1.22.3 age adoption passing confidence
drizzle-kit 0.19.3 -> 0.19.5 age adoption passing confidence
drizzle-orm 0.27.1 -> 0.27.2 age adoption passing confidence
lucide-svelte (source) 0.259.0 -> 0.260.0 age adoption passing confidence
postcss (source) 8.4.25 -> 8.4.26 age adoption passing confidence
prettier-plugin-tailwindcss 0.3.0 -> 0.4.0 age adoption passing confidence
svelte-check 3.4.5 -> 3.4.6 age adoption passing confidence
svelte-headlessui (source) 0.0.18 -> 0.0.19 age adoption passing confidence
tailwindcss (source) 3.3.2 -> 3.3.3 age adoption passing confidence
vite (source) 4.4.2 -> 4.4.4 age adoption passing confidence

Release Notes

Microsoft/playwright (@​playwright/test) ### [`v1.36.0`](https://togithub.com/microsoft/playwright/releases/tag/v1.36.0) [Compare Source](https://togithub.com/Microsoft/playwright/compare/v1.35.1...v1.36.0) ##### Highlights 🏝️ Summer maintenance release. ##### Browser Versions - Chromium 115.0.5790.75 - Mozilla Firefox 115.0 - WebKit 17.0 This version was also tested against the following stable channels: - Google Chrome 114 - Microsoft Edge 114
sveltejs/kit (@​sveltejs/adapter-vercel) ### [`v3.0.2`](https://togithub.com/sveltejs/kit/blob/HEAD/packages/adapter-vercel/CHANGELOG.md#302) [Compare Source](https://togithub.com/sveltejs/kit/compare/@sveltejs/adapter-vercel@3.0.1...@sveltejs/adapter-vercel@3.0.2) ##### Patch Changes - chore: upgrade to esbuild 0.18.11 ([#​10330](https://togithub.com/sveltejs/kit/pull/10330)) - Updated dependencies \[[`23d1df702`](https://togithub.com/sveltejs/kit/commit/23d1df702f0fd77983040404352d8d83fd1dd8a1), [`486a971fe`](https://togithub.com/sveltejs/kit/commit/486a971fe7c375aae1585f1fa2505e28f86f4b8e)]: - [@​sveltejs/kit](https://togithub.com/sveltejs/kit)[@​1](https://togithub.com/1).22.2
sveltejs/kit (@​sveltejs/kit) ### [`v1.22.3`](https://togithub.com/sveltejs/kit/blob/HEAD/packages/kit/CHANGELOG.md#1223) [Compare Source](https://togithub.com/sveltejs/kit/compare/@sveltejs/kit@1.22.2...@sveltejs/kit@1.22.3) ##### Patch Changes - fix: gracefully handle server endpoints that return `Response`s with immutable `Headers` ([#​10367](https://togithub.com/sveltejs/kit/pull/10367)) ### [`v1.22.2`](https://togithub.com/sveltejs/kit/blob/HEAD/packages/kit/CHANGELOG.md#1222) [Compare Source](https://togithub.com/sveltejs/kit/compare/@sveltejs/kit@1.22.1...@sveltejs/kit@1.22.2) ##### Patch Changes - fix: wait a tick before announcing new page title ([#​10363](https://togithub.com/sveltejs/kit/pull/10363)) - feat: more helpful error for preview if build output doesn't exist ([#​10337](https://togithub.com/sveltejs/kit/pull/10337))
drizzle-team/drizzle-kit-mirror (drizzle-kit) ### [`v0.19.5`](https://togithub.com/drizzle-team/drizzle-kit-mirror/releases/tag/v0.19.5): 0.19.5 [Compare Source](https://togithub.com/drizzle-team/drizzle-kit-mirror/compare/v0.19.4...v0.19.5) - πŸ› [drizzle-kit: v0.19.4 generates ,,](https://togithub.com/drizzle-team/drizzle-kit-mirror/issues/120) - thanks [@​agotfredsen82](https://togithub.com/agotfredsen82) - πŸ› [Wrong syntax for MySQL composite primary key](https://togithub.com/drizzle-team/drizzle-kit-mirror/issues/119) - thanks [@​AlessioDP](https://togithub.com/AlessioDP) - πŸ› [introspect:sqlite generates invalid schema for text columns](https://togithub.com/drizzle-team/drizzle-kit-mirror/issues/116) - thanks [@​ninxadev](https://togithub.com/ninxadev) - πŸ› [push:sqlite does not recognize --schema option](https://togithub.com/drizzle-team/drizzle-kit-mirror/issues/107) - thanks [@​WPitak](https://togithub.com/WPitak) - πŸ› [generate:sqlite generates invalid migration statement for integer field that use auto-increment](https://togithub.com/drizzle-team/drizzle-kit-mirror/issues/106) - thanks [@​WPitak](https://togithub.com/WPitak) ### [`v0.19.4`](https://togithub.com/drizzle-team/drizzle-kit-mirror/releases/tag/v0.19.4): 0.19.4 [Compare Source](https://togithub.com/drizzle-team/drizzle-kit-mirror/compare/v0.19.3...v0.19.4) #### πŸŽ‰ Added support for UNIQUE constraints in PostgreSQL, MySQL, SQLite Drizzle Kit now properly handles unique constraints for each dialect. In PostgreSQL and MySQL, they will be created as UNIQUE constraints, while in SQLite, they will be created as UNIQUE INDEX statements. According to the SQLite documentation, unique constraints are treated as unique indexes. Therefore, in the ORM and Kit, we handle unique constraints for SQLite as unique indexes #### πŸŽ‰ Collision detection for unique keys We are introducing collision detection for unique keys as part of the new wave of drizzle-kit improvements. Currently, if drizzle-kit finds any unique constraints with the same name, you will receive a warning and identify the places where those names were defined by mistake. In the upcoming releases, we will further enhance this feature by adding collision checks for column names, other constraints, and more collisions and database-specific limitations. image
drizzle-team/drizzle-orm (drizzle-orm) ### [`v0.27.2`](https://togithub.com/drizzle-team/drizzle-orm/releases/tag/0.27.2) [Compare Source](https://togithub.com/drizzle-team/drizzle-orm/compare/0.27.1...0.27.2) #### πŸŽ‰ Added support for `UNIQUE` constraints in PostgreSQL, MySQL, SQLite For PostgreSQL, unique constraints can be defined at the column level for single-column constraints, and in the third parameter for multi-column constraints. In both cases, it will be possible to define a custom name for the constraint. Additionally, PostgreSQL will receive the `NULLS NOT DISTINCT` option to restrict having more than one NULL value in a table. [Reference](https://www.postgresql.org/docs/current/ddl-constraints.html#DDL-CONSTRAINTS-UNIQUE-CONSTRAINTS) Examples that just shows a different `unique` usage. Please don't search a real usage for those tables ```ts // single column const table = pgTable('table', { id: serial('id').primaryKey(), name: text('name').notNull().unique(), state: char('state', { length: 2 }).unique('custom'), field: char('field', { length: 2 }).unique('custom_field', { nulls: 'not distinct' }), }); // multiple columns const table = pgTable('table', { id: serial('id').primaryKey(), name: text('name').notNull(), state: char('state', { length: 2 }), }, (t) => ({ first: unique('custom_name').on(t.name, t.state).nullsNotDistinct(), second: unique('custom_name1').on(t.name, t.state), })); ``` For MySQL, everything will be the same except for the `NULLS NOT DISTINCT` option. It appears that MySQL does not support it Examples that just shows a different `unique` usage. Please don't search a real usage for those tables ```ts // single column const table = mysqlTable('table', { id: serial('id').primaryKey(), name: text('name').notNull().unique(), state: text('state').unique('custom'), field: text('field').unique('custom_field'), }); // multiple columns const table = mysqlTable('cities1', { id: serial('id').primaryKey(), name: text('name').notNull(), state: text('state'), }, (t) => ({ first: unique().on(t.name, t.state), second: unique('custom_name1').on(t.name, t.state), })); ``` In SQLite unique constraints are the same as unique indexes. As long as you can specify a name for the unique index in SQLite - we will treat all unique constraints as unique indexes in internal implementation ```ts // single column const table = sqliteTable('table', { id: int('id').primaryKey(), name: text('name').notNull().unique(), state: text('state').unique('custom'), field: text('field').unique(), }); // multiple columns const table = sqliteTable('table', { id: int('id').primaryKey(), name: text('name').notNull(), state: text('state'), }, (t) => ({ first: unique().on(t.name, t.state), second: unique('custom').on(t.name, t.state), })); ```
lucide-icons/lucide (lucide-svelte) ### [`v0.260.0`](https://togithub.com/lucide-icons/lucide/releases/tag/v0.260.0): Lucide React Update and Icons [Compare Source](https://togithub.com/lucide-icons/lucide/compare/v0.259.0...v0.260.0) #### Lucide React Update ##### Improves Typescript types Improves Typescript types export by switching to [rollup-plugin-dts](https://togithub.com/Swatinem/rollup-plugin-dts) for types generation. Closes [#​1420](https://togithub.com/lucide-icons/lucide/issues/1420) and [#​1373](https://togithub.com/lucide-icons/lucide/issues/1373) ##### Added JS Docs When hovering (in an IDE that supports it) over a Lucide component you get a JSDoc comment with useful information about the Lucide Icons component. It also shows a small preview of the icons you imported with the link to the lucide website. image ##### Dynamic Imports Map (experimental) Addition to [#​1373](https://togithub.com/lucide-icons/lucide/issues/1373) (closed). Lucide react now exposes a dynamic import map `dynamicIconImports`. Useful for applications that want to show icons dynamically by icon name. For example when using a content management system with where icon names are stored in a database. More info in [docs](https://lucide.dev/guide/packages/lucide-react#with-dynamic-imports) Example component with NextJS: ```tsx import dynamic from 'next/dynamic' import { dynamicIconImports, LucideProps } from 'lucide-react'; interface IconProps extends LucideProps { name: keyof typeof dynamicIconImports; } const Icon = ({ name, color, size }: IconProps) => { const LucideIcon = dynamic(dynamicIconImports[name]) return ; }; export default Icon; ``` ##### Using the Icon Component These features will be added later to other packages. ```tsx import Icon from './Icon'; const App = () => { return ; }; export default App; ``` #### New icons 🎨 - `gauge-circle` ([#​1256](https://togithub.com/lucide-icons/lucide/issues/1256)) by [@​danielbayley](https://togithub.com/danielbayley) #### Modified Icons πŸ”¨ - `minus-circle` ([#​1381](https://togithub.com/lucide-icons/lucide/issues/1381)) by [@​danielbayley](https://togithub.com/danielbayley) - `minus-square` ([#​1381](https://togithub.com/lucide-icons/lucide/issues/1381)) by [@​danielbayley](https://togithub.com/danielbayley) - `minus` ([#​1381](https://togithub.com/lucide-icons/lucide/issues/1381)) by [@​danielbayley](https://togithub.com/danielbayley) - `plus-circle` ([#​1381](https://togithub.com/lucide-icons/lucide/issues/1381)) by [@​danielbayley](https://togithub.com/danielbayley) - `plus-square` ([#​1381](https://togithub.com/lucide-icons/lucide/issues/1381)) by [@​danielbayley](https://togithub.com/danielbayley) - `plus` ([#​1381](https://togithub.com/lucide-icons/lucide/issues/1381)) by [@​danielbayley](https://togithub.com/danielbayley) - `square` ([#​1381](https://togithub.com/lucide-icons/lucide/issues/1381)) by [@​danielbayley](https://togithub.com/danielbayley)
postcss/postcss (postcss) ### [`v8.4.26`](https://togithub.com/postcss/postcss/blob/HEAD/CHANGELOG.md#8426) [Compare Source](https://togithub.com/postcss/postcss/compare/8.4.25...8.4.26) - Fixed clone methods types.
tailwindlabs/prettier-plugin-tailwindcss (prettier-plugin-tailwindcss) ### [`v0.4.0`](https://togithub.com/tailwindlabs/prettier-plugin-tailwindcss/blob/HEAD/CHANGELOG.md#040---2023-07-11) [Compare Source](https://togithub.com/tailwindlabs/prettier-plugin-tailwindcss/compare/v0.3.0...v0.4.0) ##### Added - Export types for Prettier config ([#​162](https://togithub.com/tailwindlabs/prettier-plugin-tailwindcss/pull/162)) - Add Prettier v3 support ([#​179](https://togithub.com/tailwindlabs/prettier-plugin-tailwindcss/pull/179)) ##### Fixed - Don't move partial classes inside Liquid script attributes ([#​164](https://togithub.com/tailwindlabs/prettier-plugin-tailwindcss/pull/164)) - Do not split classes by non-ASCII whitespace ([#​166](https://togithub.com/tailwindlabs/prettier-plugin-tailwindcss/pull/166)) - Match tagged template literals with tag expressions ([#​169](https://togithub.com/tailwindlabs/prettier-plugin-tailwindcss/pull/169))
sveltejs/language-tools (svelte-check) ### [`v3.4.6`](https://togithub.com/sveltejs/language-tools/releases/tag/svelte-check-3.4.6) [Compare Source](https://togithub.com/sveltejs/language-tools/compare/svelte-check-3.4.5...svelte-check-3.4.6) - chore: bump deps to force versions that include Svelte 4 peer dependencies
tailwindlabs/tailwindcss (tailwindcss) ### [`v3.3.3`](https://togithub.com/tailwindlabs/tailwindcss/releases/tag/v3.3.3) [Compare Source](https://togithub.com/tailwindlabs/tailwindcss/compare/v3.3.2...v3.3.3) ##### Fixed - Fix issue where some pseudo-element variants generated the wrong selector ([#​10943](https://togithub.com/tailwindlabs/tailwindcss/pull/10943), [#​10962](https://togithub.com/tailwindlabs/tailwindcss/pull/10962), [#​11111](https://togithub.com/tailwindlabs/tailwindcss/pull/11111)) - Make font settings propagate into buttons, inputs, etc. ([#​10940](https://togithub.com/tailwindlabs/tailwindcss/pull/10940)) - Fix parsing of `theme()` inside `calc()` when there are no spaces around operators ([#​11157](https://togithub.com/tailwindlabs/tailwindcss/pull/11157)) - Ensure `repeating-conic-gradient` is detected as an image ([#​11180](https://togithub.com/tailwindlabs/tailwindcss/pull/11180)) - Move unknown pseudo-elements outside of `:is` by default ([#​11345](https://togithub.com/tailwindlabs/tailwindcss/pull/11345)) - Escape animation names when prefixes contain special characters ([#​11470](https://togithub.com/tailwindlabs/tailwindcss/pull/11470)) - Don't prefix arbitrary classes in `group` and `peer` variants ([#​11454](https://togithub.com/tailwindlabs/tailwindcss/pull/11454)) - Sort classes using position of first matching rule ([#​11504](https://togithub.com/tailwindlabs/tailwindcss/pull/11504)) - Allow variant to be an at-rule without a prelude ([#​11589](https://togithub.com/tailwindlabs/tailwindcss/pull/11589)) - Make PostCSS plugin async to improve performance ([#​11548](https://togithub.com/tailwindlabs/tailwindcss/pull/11548)) - Don’t error when a config file is missing ([f97759f](https://togithub.com/tailwindlabs/tailwindcss/commit/f97759f808d15ace66647b1405744fcf95a392e5)) ##### Added - Add `aria-busy` utility ([#​10966](https://togithub.com/tailwindlabs/tailwindcss/pull/10966)) ##### Changed - Reset padding for `` elements in preflight ([#​11069](https://togithub.com/tailwindlabs/tailwindcss/pull/11069))
vitejs/vite (vite) ### [`v4.4.4`](https://togithub.com/vitejs/vite/blob/HEAD/packages/vite/CHANGELOG.md#small444-2023-07-14-small) [Compare Source](https://togithub.com/vitejs/vite/compare/v4.4.3...v4.4.4) - chore: warning about ssr cjs format removal ([#​13827](https://togithub.com/vitejs/vite/issues/13827)) ([4646e9f](https://togithub.com/vitejs/vite/commit/4646e9f)), closes [#​13827](https://togithub.com/vitejs/vite/issues/13827) - fix(esbuild): enable experimentalDecorators by default ([#​13805](https://togithub.com/vitejs/vite/issues/13805)) ([e8880f0](https://togithub.com/vitejs/vite/commit/e8880f0)), closes [#​13805](https://togithub.com/vitejs/vite/issues/13805) - fix(scan): skip tsconfigRaw fallback if tsconfig is set ([#​13823](https://togithub.com/vitejs/vite/issues/13823)) ([b6155a1](https://togithub.com/vitejs/vite/commit/b6155a1)), closes [#​13823](https://togithub.com/vitejs/vite/issues/13823) - feat(client): close `vite-error-overlay` with Escape key ([#​13795](https://togithub.com/vitejs/vite/issues/13795)) ([85bdcda](https://togithub.com/vitejs/vite/commit/85bdcda)), closes [#​13795](https://togithub.com/vitejs/vite/issues/13795) ### [`v4.4.3`](https://togithub.com/vitejs/vite/blob/HEAD/packages/vite/CHANGELOG.md#small443-2023-07-11-small) [Compare Source](https://togithub.com/vitejs/vite/compare/v4.4.2...v4.4.3) - fix: avoid early error when server is closed in ssr ([#​13787](https://togithub.com/vitejs/vite/issues/13787)) ([89d01eb](https://togithub.com/vitejs/vite/commit/89d01eb)), closes [#​13787](https://togithub.com/vitejs/vite/issues/13787) - fix(deps): update all non-major dependencies ([#​13758](https://togithub.com/vitejs/vite/issues/13758)) ([8ead116](https://togithub.com/vitejs/vite/commit/8ead116)), closes [#​13758](https://togithub.com/vitejs/vite/issues/13758) - fix(server): remove restart guard on restart ([#​13789](https://togithub.com/vitejs/vite/issues/13789)) ([2a38ef7](https://togithub.com/vitejs/vite/commit/2a38ef7)), closes [#​13789](https://togithub.com/vitejs/vite/issues/13789)

Configuration

πŸ“… Schedule: Branch creation - At any time (no schedule defined), 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.



This PR has been generated by Mend Renovate. View repository job log here.

vercel[bot] commented 1 year ago

The latest updates on your projects. Learn more about Vercel for Git β†—οΈŽ

Name Status Preview Comments Updated (UTC)
queued βœ… Ready (Inspect) Visit Preview πŸ’¬ Add feedback Jul 14, 2023 10:23am