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

Merged
merged 1 commit into from
Feb 10, 2023

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Feb 7, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@prisma/client (source) 4.9.0 -> 4.10.1 age adoption passing confidence
@storybook/addon-a11y (source) 7.0.0-beta.43 -> 7.0.0-beta.45 age adoption passing confidence
@storybook/addon-essentials (source) 7.0.0-beta.43 -> 7.0.0-beta.45 age adoption passing confidence
@storybook/addon-interactions (source) 7.0.0-beta.43 -> 7.0.0-beta.45 age adoption passing confidence
@storybook/addon-links (source) 7.0.0-beta.43 -> 7.0.0-beta.45 age adoption passing confidence
@storybook/addon-viewport (source) 7.0.0-beta.43 -> 7.0.0-beta.45 age adoption passing confidence
@storybook/blocks (source) 7.0.0-beta.43 -> 7.0.0-beta.45 age adoption passing confidence
@storybook/nextjs (source) 7.0.0-beta.43 -> 7.0.0-beta.45 age adoption passing confidence
@storybook/react (source) 7.0.0-beta.43 -> 7.0.0-beta.45 age adoption passing confidence
@tiptap/extension-link (source) 2.0.0-beta.212 -> 2.0.0-beta.217 age adoption passing confidence
@tiptap/react (source) 2.0.0-beta.212 -> 2.0.0-beta.217 age adoption passing confidence
@tiptap/starter-kit (source) 2.0.0-beta.212 -> 2.0.0-beta.217 age adoption passing confidence
@trpc/client (source) 10.10.0 -> 10.11.0 age adoption passing confidence
@trpc/next (source) 10.10.0 -> 10.11.0 age adoption passing confidence
@trpc/react-query (source) 10.10.0 -> 10.11.0 age adoption passing confidence
@trpc/server (source) 10.10.0 -> 10.11.0 age adoption passing confidence
chromatic (source) 6.15.0 -> 6.17.0 age adoption passing confidence
lint-staged 13.1.0 -> 13.1.1 age adoption passing confidence
next-i18next 13.1.4 -> 13.1.5 age adoption passing confidence
pnpm (source) 7.26.3 -> 7.27.0 age adoption passing confidence
prettier (source) 2.8.3 -> 2.8.4 age adoption passing confidence
prettier-plugin-prisma 4.9.0 -> 4.10.0 age adoption passing confidence
prisma (source) 4.9.0 -> 4.10.1 age adoption passing confidence
storybook (source) 7.0.0-beta.43 -> 7.0.0-beta.45 age adoption passing confidence
zod (source) 3.20.2 -> 3.20.6 age adoption passing confidence

Release Notes

prisma/prisma

v4.10.1

Compare Source

Today, we are issuing the 4.10.1 patch release.

Fixes in Prisma Client

v4.10.0

Compare Source

🌟 Help us spread the word about Prisma by starring the repo or tweeting about the release. 🌟

Highlights

Introspection support for PostgreSQL views

We introduced initial support for database views in 4.9.0 with the addition of the view keyword. This release introduces introspection support for PostgreSQL views. You can run prisma db pull against your database to populate your Prisma schema with your views.

To learn more, refer to our documentation on views introspection. Try it out and let us know your thoughts in this GitHub issue.

Improved introspection for unsupported database functionality & partitioned tables

Currently, the Prisma Schema Language(PSL) does not cover the full feature sets of different database providers. For the unsupported database functionality, Prisma provides offers escape hatches like raw queries or manual editing of the migration files.

While we work on adding support for missing database functionality, e.g. database views, some of it is not fully-supported and the escape hatches fail. Objects that use unsupported properties might not be caught during introspection and raw queries might not work. Re-introspection may sometimes remove the information from the schema file and the generated migrations may be invalid or re-generate the same SQL repeatedly.

We're therefore fixing the defects and supporting the unsupported database functionalities Prisma currently doesn't support. We created a list of these features in this GitHub issue we would like to improve.

This release improves introspection support for partitioned tables in PostgreSQL and MySQL. Previously, Prisma would pick up the partitions as models and miss the actual main table. Prisma will now pick up the main table as a model, not the partitions.

If you're already using partitioned tables in your database, you can use prisma db pull to update your Prisma schema. If you're already using Prisma and want to partition a table in your database, you can:

  1. Create a draft migration using prisma migrate dev --create-only
  2. Update the draft migration with the SQL to partition the tables
  3. Re-run prisma migrate dev to apply the draft migration to your database

Try it out and let us know what you think. If you run into an issue, feel free to create a bug report.

Smaller engine size used in Prisma CLI

In 4.8.0, we decreased the size of the engines by ~50%, which significantly impacted Prisma Client, especially in serverless environments.

In this release, we've reduced the size of Prisma CLI by removing the Introspection and Formatter engines. The introspection functionality is now served by the Migration Engine. A cross-platform Wasm module has entirely replaced the Formatter Engine. This reduces the overall installation size for Prisma CLI.

Fixes and improvements

Prisma Client
Prisma
Language tools (e.g. VS Code)

Credits

Huge thanks to @​rintaun, @​ivan, @​Mini256, @​yukukotani, @​sandrewTx08 for helping!

📺 Join us for another "What's new in Prisma" live stream

Learn about the latest release and other news from the Prisma community by joining us for another "What's new in Prisma" live stream.

The stream takes place on YouTube on Thursday, February 9 at 5 pm Berlin | 8 am San Francisco.

storybookjs/storybook

v7.0.0-beta.45

Compare Source

Features
Bug Fixes
Maintenance

v7.0.0-beta.44

Compare Source

Features
  • Feature: Add woff2 support for builder-manager #​20962
  • Feature: Add super early node version check #​20964
  • Csf-tools: Add satisfies support to ConfigFile #​20936
Bug Fixes
  • Angular: Fix changeDetectorRef should be defined #​20984
  • Angular: Fix standalone components to be included in the imports array #​20983
  • CLI: Fix Introduction MDX for Next.js and Typescript #​20798
  • CLI: Fix detection of JS projects with type checking #​20944
  • UI: Fix fonts missing/warnings #​20957
  • Core: Undo AST main.js check in validateConfigFile #​20952
  • Csf-tools: Fix error handling for storySort variable references #​20930
Maintenance
  • Core: Fix missing dependency for core-server #​20989
  • CLI: Add a default background to newly initialized storybooks #​20982
  • Svelte/Vite: Remove svelte-options #​20942
  • Vite: Correctly preserve existing vite envPrefix config #​20918
Dependencies
Build
ueberdosis/tiptap (@​tiptap/extension-link)

v2.0.0-beta.217

Compare Source

Note: Version bump only for package @​tiptap/extension-link

v2.0.0-beta.216

Compare Source

Note: Version bump only for package @​tiptap/extension-link

v2.0.0-beta.215

Compare Source

Bug Fixes
  • fix builds including prosemirror (a380ec4)

v2.0.0-beta.214

Compare Source

Note: Version bump only for package @​tiptap/extension-link

v2.0.0-beta.213

Compare Source

Note: Version bump only for package @​tiptap/extension-link

ueberdosis/tiptap (@​tiptap/react)

v2.0.0-beta.217

Compare Source

Note: Version bump only for package @​tiptap/react

v2.0.0-beta.216

Compare Source

Note: Version bump only for package @​tiptap/react

v2.0.0-beta.215

Compare Source

Bug Fixes
  • fix builds including prosemirror (a380ec4)

v2.0.0-beta.214

Compare Source

Note: Version bump only for package @​tiptap/react

v2.0.0-beta.213

Compare Source

Note: Version bump only for package @​tiptap/react

ueberdosis/tiptap (@​tiptap/starter-kit)

v2.0.0-beta.217

Compare Source

Note: Version bump only for package @​tiptap/starter-kit

v2.0.0-beta.216

Compare Source

Note: Version bump only for package @​tiptap/starter-kit

v2.0.0-beta.215

Compare Source

Bug Fixes
  • fix builds including prosemirror (a380ec4)

v2.0.0-beta.214

Compare Source

Note: Version bump only for package @​tiptap/starter-kit

v2.0.0-beta.213

Compare Source

Note: Version bump only for package @​tiptap/starter-kit

trpc/trpc

v10.11.0

Compare Source

What's Changed
New Contributors

Full Changelog: trpc/trpc@v10.10.0...v10.11.0

chromaui/chromatic-cli

v6.17.0

Compare Source

okonet/lint-staged

v13.1.1

Compare Source

Bug Fixes
  • allow re-enabling --stash when using the --diff option (99390c3)
i18next/next-i18next

v13.1.5

Compare Source

  • #​2089, more stable impelementation of "feat(server-side): custom default config path #​2084"
pnpm/pnpm

v7.27.0

Compare Source

Minor Changes

  • A new resolution-mode added: lowest-direct. With this resolution mode direct dependencies will be resolved to their lowest versions. So if there is foo@^1.1.0 in the dependencies, then 1.1.0 will be installed, even if the latest version of foo is 1.2.0.
  • Support script selector with RegExp such as pnpm run /build:.*/ and execute the matched scripts with the RegExp #​5871.

Patch Changes

  • Fix version number replacing for namespaced workspace packages. workspace:@&#8203;foo/bar@* should be replaced with npm:@&#8203;foo/bar@<version> on publish #​6052.

  • When resolving dependencies, prefer versions that are already used in the root of the project. This is important to minimize the number of packages that will be nested during hoisting #​6054.

  • Deduplicate direct dependencies.

    Let's say there are two projects in the workspace that dependend on foo. One project has foo@1.0.0 in the dependencies while another one has foo@^1.0.0 in the dependencies. In this case, foo@1.0.0 should be installed to both projects as satisfies the version specs of both projects.

  • Use Map rather than Object in createPackageExtender to prevent read the prototype property to native function

Our Gold Sponsors

Our Silver Sponsors

prettier/prettier

v2.8.4

Compare Source

diff

Fix leading comments in mapped types with readonly (#​13427 by @​thorn0, @​sosukesuzuki)
// Input
type Type = {
  // comment
  readonly [key in Foo];
};

// Prettier 2.8.3
type Type = {
  readonly // comment
  [key in Foo];
};

// Prettier 2.8.4
type Type = {
  // comment
  readonly [key in Foo];
};
Group params in opening block statements (#​14067 by @​jamescdavis)

This is a follow-up to #​13930 to establish wrapping consistency between opening block statements and else blocks by
grouping params in opening blocks. This causes params to break to a new line together and not be split across lines
unless the length of params exceeds the print width. This also updates the else block wrapping to behave exactly the
same as opening blocks.

{{! Input }}
{{#block param param param param param param param param param param as |blockParam|}}
  Hello
{{else block param param param param param param param param param param as |blockParam|}}
  There
{{/block}}

{{! Prettier 2.8.3 }}
{{#block
  param
  param
  param
  param
  param
  param
  param
  param
  param
  param
  as |blockParam|
}}
  Hello
{{else block param
param
param
param
param
param
param
param
param
param}}
  There
{{/block}}

{{! Prettier 2.8.4 }}
{{#block
  param param param param param param param param param param
  as |blockParam|
}}
  Hello
{{else block
  param param param param param param param param param param
  as |blockParam|
}}
  There
{{/block}}
Ignore files in .sl/ (#​14206 by @​bolinfest)

In Sapling SCM, .sl/ is the folder where it stores its state, analogous to .git/ in Git. It should be ignored in Prettier like the other SCM folders.

Recognize @satisfies in Closure-style type casts (#​14262 by @​fisker)
// Input
const a = /** @&#8203;satisfies {Record<string, string>} */ ({hello: 1337});
const b = /** @&#8203;type {Record<string, string>} */ ({hello: 1337});

// Prettier 2.8.3
const a = /** @&#8203;satisfies {Record<string, string>} */ { hello: 1337 };
const b = /** @&#8203;type {Record<string, string>} */ ({ hello: 1337 });

// Prettier 2.8.4
const a = /** @&#8203;satisfies {Record<string, string>} */ ({hello: 1337});
const b = /** @&#8203;type {Record<string, string>} */ ({hello: 1337});
Fix parens in inferred function return types with extends (#​14279 by @​fisker)
// Input
type Foo<T> = T extends ((a) => a is infer R extends string) ? R : never;

// Prettier 2.8.3 (First format)
type Foo<T> = T extends (a) => a is infer R extends string ? R : never;

// Prettier 2.8.3 (Second format)
SyntaxError: '?' expected. 

// Prettier 2.8.4
type Foo<T> = T extends ((a) => a is infer R extends string) ? R : never;
umidbekk/prettier-plugin-prisma

v4.10.0

Compare Source

  • feat: Bump @prisma/prisma-fmt-wasm to 4.10.0. 01a6f2d
  • chore: Bump dependencies. 89d5314
colinhacks/zod

v3.20.6

Compare Source

Commits:

v3.20.5

Compare Source

Commits:
  • e71c7be Fix extract/exclude type error

v3.20.4

Compare Source

Commits:

v3.20.3

Compare Source

Features
Fixes and documentation

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

@renovate renovate bot requested a review from JoeKarow as a code owner February 7, 2023 10:42
@vercel
Copy link

vercel bot commented Feb 7, 2023

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

Name Status Preview Comments Updated
glaad ✅ Ready (Inspect) Visit Preview 💬 Add your feedback Feb 10, 2023 at 3:21PM (UTC)

@kodiakhq
Copy link
Contributor

kodiakhq bot commented Feb 8, 2023

This PR currently has a merge conflict. Please resolve this and then re-add the automerge label.

Signed-off-by: Renovate Bot <bot@renovateapp.com>
@JoeKarow JoeKarow merged commit 017ed28 into dev Feb 10, 2023
@JoeKarow JoeKarow deleted the renovate/all-minor-patch branch February 10, 2023 15:22
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Change in project dependencies.
Development

Successfully merging this pull request may close these issues.

None yet

1 participant