-
Notifications
You must be signed in to change notification settings - Fork 1
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 #271
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
renovate
bot
force-pushed
the
renovate/all-minor-patch
branch
from
January 14, 2023 04:51
7382b49
to
80cc71c
Compare
renovate
bot
force-pushed
the
renovate/all-minor-patch
branch
from
January 14, 2023 23:20
80cc71c
to
1e9a108
Compare
renovate
bot
force-pushed
the
renovate/all-minor-patch
branch
from
January 15, 2023 05:48
1e9a108
to
d87f7d1
Compare
renovate
bot
force-pushed
the
renovate/all-minor-patch
branch
from
January 16, 2023 18:56
d87f7d1
to
a1c89be
Compare
renovate
bot
force-pushed
the
renovate/all-minor-patch
branch
from
January 17, 2023 02:01
a1c89be
to
86d3420
Compare
mcpsbot
previously approved these changes
Jan 17, 2023
renovate
bot
dismissed stale reviews from mcpsbot and renovate-approve[bot]
via
January 17, 2023 21:23
aceca80
renovate
bot
force-pushed
the
renovate/all-minor-patch
branch
from
January 17, 2023 21:23
86d3420
to
aceca80
Compare
mcpsbot
approved these changes
Jan 18, 2023
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
17.4.0
->17.4.2
^4.8.1
->^4.9.0
5.48.0
->5.48.2
5.48.0
->5.48.2
8.31.0
->8.32.0
2.8.2
->2.8.3
4.8.1
->4.9.0
Release Notes
conventional-changelog/commitlint
v17.4.2
Compare Source
Note: Version bump only for package @commitlint/config-angular
prisma/prisma
v4.9.0
Compare Source
🌟 Help us spread the word about Prisma by starring the repo or tweeting about the release. 🌟
Highlights
Initial support for database views (Preview)
This release introduces a new keyword,
view
, behind theviews
Preview feature flag. You can manually add aview
to your Prisma schema, which is ignored when running migrations. This is a small step forward but should already be helpful to many of you depending on workarounds and shell scripts to work with views and Migrate.Here is an example usage of
views
:To learn more, head to our documentation. Try it out and let us know your thoughts on this GitHub issue.
Multi-schema support for SQL Server (Preview)
We're thrilled to share that this release adds Preview support for multi-schema for SQL Server.
This release adds support for:
If you already have a SQL Server database using multiple schemas, you can quickly get up and running and set up multiple schemas by:
schemas
property in thedatasource
blockprisma db pull
You can further evolve your database schema using the multi-schema Preview feature by using
prisma migrate dev
.For further details, refer to our documentation and let us know what you think in this GitHub issue.
Prisma Client Extensions improvements
In this release, we've made a number of improvements to the Prisma Client Extensions Preview feature:
Retrieving the current model name at runtime
You can now get the name of the current model at runtime using
Prisma.getExtensionContext(this).name
. You might use this to write out the model name to a log, to send the name to another service, or to branch your code based on the model. You can learn more about this in our docs.Improved type safety when defining custom model methods
Prisma Client now provides a set of type utilities that tap into input and output types. They are fully dynamic, which means they adapt to any given model and schema. You can use them to improve your custom model methods' auto-completion. This is especially useful in shared extensions. Learn more about this in our docs.
Let us know what you think in this GitHub issue and in case you run into any issues, please create a bug report.
Introspection and Migration engine improvements
In this release, we moved the Introspection Engine (responsible for
prisma db pull
) which the Migration Engine will now serve. Previously, the Introspection Engine was stand-alone.Let us know what you think in this GitHub issue and in case you run into any issues, please create a bug report.
MongoDB
WriteConflict
bug fixThis version also comes with a notable bug fix: In our MongoDB provider, any queries that are returned with a
WriteConflict
error Prisma now will retry the query, similar to how other MongoDB drivers and clients do.Prisma plugin for JetBrains IDEs
If you are using a JetBrains IDE the team over at JetBrains recently released an official Prisma plugin in their Plugin Marketplace.
Thank you, @JetBrains, for working on this! Next to our VS Code extension for Prisma and our general language server, which works in many editors, most relevant editors should now be covered.
Accelerate (Early Access)
We’re thrilled to announce Early Access to Accelerate.
Accelerate is a global database cache. It is available in 280 locations and has built-in connection pooling for serverless apps. You can make your queries up to 1000 times faster on any Prisma-supported database, reducing your query response times.
Join the waiting list for Accelerate here.
Fixes and improvements
Prisma
openssl
orlibc
installation to improve snapshot testing suite--schemas
param to thedb pull
commandschemas
property different when cross schema references are detected (whenmultiSchema
preview feature is enabled)db pull
withmultiSchema
enabled andschemas
defined, outputspublic
in CLI message anywayschemas
property indatasource
@@​schema
attributedebian
distrosmultiSchema
: addschemas
property togetConfig
outputmigrate reset
with sqlserver does not delete second schemaopenssl
detection for Linux distros besides Alpine and Debian-based distros, like RHELThese enums were enriched with
@@mapinformation taken from the previous Prisma schema.
but the schema file datamodel is actually empty.view
keywordplatform-serverless-vercel/vercel-cli
ecosystem testsdistro
is undefined, the output ofldconfig
is ignored because of thesed: -e expression #​1, char 7: unknown option to
s'` silent errorPrisma Client
where
andinclude
produces an object that doesn't include entities you specify ininclude
delete
on a one-to-one relation while updating removes other relationsPrisma Migrate
Language tools (e.g. VS Code)
@@​schema
attribute to model / enumview
keywordPrisma Engines
2.9.1
to2.10.1
introspect
tests tomigration-engine
Credits
Huge thanks @rintaun, @ivan, @Mini256, @fubhy, @unflxw, @Mosaab-Emam 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, January 19 at 5 pm Berlin | 8 am San Francisco.
typescript-eslint/typescript-eslint (@typescript-eslint/eslint-plugin)
v5.48.2
Compare Source
Note: Version bump only for package @typescript-eslint/eslint-plugin
v5.48.1
Compare Source
Note: Version bump only for package @typescript-eslint/eslint-plugin
typescript-eslint/typescript-eslint (@typescript-eslint/parser)
v5.48.2
Compare Source
Note: Version bump only for package @typescript-eslint/parser
v5.48.1
Compare Source
Note: Version bump only for package @typescript-eslint/parser
eslint/eslint
v8.32.0
Compare Source
Features
fc20f24
feat: add suggestions for redundant wrapping in prefer-regex-literals (#16658) (YeonJuan)Bug Fixes
b4f8329
fix: ignore directives for no-fallthrough (#16757) (gfyoung)Documentation
17b65ad
docs: IA Update page URL move (#16665) (Ben Perlmutter)5981296
docs: fix theme switcher button (#16752) (Sam Chen)6669413
docs: deploy prerelease docs under the/docs/next/
path (#16541) (Nitin Kumar)78ecfe0
docs: use inline code for rule options name (#16768) (Percy Ma)fc2ea59
docs: Update README (GitHub Actions Bot)762a872
docs: Update README (GitHub Actions Bot)Chores
2952d6e
chore: sync templates/*.md files with issue templates (#16758) (gfyoung)3e34418
chore: Add new issues to triage project (#16740) (Nicholas C. Zakas)prettier/prettier
v2.8.3
Compare Source
diff
Allow self-closing tags on custom elements (#14170 by @fisker)
See Angular v15.1.0 release note for details.
Configuration
📅 Schedule: Branch creation - "every weekend" (UTC), Automerge - At any time (no schedule defined).
🚦 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.
This PR has been generated by Mend Renovate. View repository job log here.