-
-
Notifications
You must be signed in to change notification settings - Fork 4
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(auth): update all non-major dependencies #339
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
added
automerge
Enable Kodiak auto-merge
dependencies
Change in project dependencies.
labels
Mar 25, 2023
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
renovate
bot
force-pushed
the
renovate/all-minor-patch
branch
from
March 26, 2023 16:05
150c7df
to
28e5bc5
Compare
renovate
bot
force-pushed
the
renovate/all-minor-patch
branch
from
March 26, 2023 19:59
28e5bc5
to
8ca9c35
Compare
renovate
bot
force-pushed
the
renovate/all-minor-patch
branch
from
March 26, 2023 23:39
8ca9c35
to
2b24eb5
Compare
renovate
bot
force-pushed
the
renovate/all-minor-patch
branch
from
March 27, 2023 16:05
2b24eb5
to
604a4c9
Compare
renovate
bot
force-pushed
the
renovate/all-minor-patch
branch
from
March 27, 2023 22:02
604a4c9
to
58c7833
Compare
renovate
bot
changed the title
chore(app): update all non-major dependencies
fix(auth): update all non-major dependencies
Mar 27, 2023
This PR currently has a merge conflict. Please resolve this and then re-add the |
renovate
bot
force-pushed
the
renovate/all-minor-patch
branch
from
March 27, 2023 23:08
58c7833
to
62354d9
Compare
Signed-off-by: Renovate Bot <bot@renovateapp.com>
renovate
bot
force-pushed
the
renovate/all-minor-patch
branch
from
March 27, 2023 23:12
62354d9
to
b03d5f9
Compare
Kudos, SonarCloud Quality Gate passed! 0 Bugs No Coverage information |
JoeKarow
approved these changes
Mar 27, 2023
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
📦 api
📦 app
📦 auth
📦 aws-cache
📦 aws-messaging
📦 aws-user-migrate
📦 config
📦 db
dependencies
Change in project dependencies.
📦 eslint-config
📦 ui
📦 web
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:
3.299.0
->3.300.0
3.299.0
->3.300.0
1.32.0
->1.32.1
3.52.3
->3.52.4
18.15.8
->18.15.10
5.56.0
->5.57.0
5.56.0
->5.57.0
0.17.13
->0.17.14
6.0.0
->6.0.2
1.3.0
->1.3.1
4.0.1
->4.0.2
7.30.3
->7.30.5
23.0.18
->23.0.19
1.6.5
->1.6.6
1.8.5
->1.8.6
3.7.0
->3.7.1
2.5.1
->2.5.3
Release Notes
aws/aws-sdk-js-v3 (@aws-sdk/client-cognito-identity-provider)
v3.300.0
Compare Source
Features
aws/aws-sdk-js-v3 (@aws-sdk/client-s3)
v3.300.0
Compare Source
Features
Microsoft/playwright
v1.32.1
Compare Source
Highlights
https://github.com/microsoft/playwright/issues/21832 - [BUG] Trace is not opening on specific broken locatorhttps://github.com/microsoft/playwright/issues/218977 - [BUG] --ui fails to open with error reading mainFrame from an undefined this._pahttps://github.com/microsoft/playwright/issues/21918918 - [BUG]: UI mode, skipped tests not being fohttps://github.com/microsoft/playwright/issues/219411941 - [BUG] UI mode does not show webServer startup erhttps://github.com/microsoft/playwright/issues/2195321953 - [BUG] Parameterized tests are not displayed in the UI mode
Browser Versions
This version was also tested against the following stable channels:
typescript-eslint/typescript-eslint (@typescript-eslint/eslint-plugin)
v5.57.0
Compare Source
Bug Fixes
Features
no-duplicate-type-constituents
rule (#5728) (bc31078)typescript-eslint/typescript-eslint (@typescript-eslint/parser)
v5.57.0
Compare Source
Note: Version bump only for package @typescript-eslint/parser
evanw/esbuild
v0.17.14
Compare Source
Allow the TypeScript 5.0
const
modifier in object type declarations (#3021)The new TypeScript 5.0
const
modifier was added to esbuild in version 0.17.5, and works with classes, functions, and arrow expressions. However, support for it wasn't added to object type declarations (e.g. interfaces) due to an oversight. This release adds support for these cases, so the following TypeScript 5.0 code can now be built with esbuild:Implement preliminary lowering for CSS nesting (#1945)
Chrome has implemented the new CSS nesting specification in version 112, which is currently in beta but will become stable very soon. So CSS nesting is now a part of the web platform!
This release of esbuild can now transform nested CSS syntax into non-nested CSS syntax for older browsers. The transformation relies on the
:is()
pseudo-class in many cases, so the transformation is only guaranteed to work when targeting browsers that support:is()
(e.g. Chrome 88+). You'll need to set esbuild'starget
to the browsers you intend to support to tell esbuild to do this transformation. You will get a warning if you use CSS nesting syntax with atarget
which includes older browsers that don't support:is()
.The lowering transformation looks like this:
More complex cases may generate the
:is()
pseudo-class:In addition, esbuild now has a special warning message for nested style rules that start with an identifier. This isn't allowed in CSS because the syntax would be ambiguous with the existing declaration syntax. The new warning message looks like this:
Keep in mind that the transformation in this release is a preliminary implementation. CSS has many features that interact in complex ways, and there may be some edge cases that don't work correctly yet.
Minification now removes unnecessary
&
CSS nesting selectorsThis release introduces the following CSS minification optimizations:
Minification now removes duplicates from CSS selector lists
This release introduces the following CSS minification optimization:
angus-c/just
v6.0.2
Compare Source
DASPRiD/localized-address-format
v1.3.1
Compare Source
Bug Fixes
ai/nanoid
v4.0.2
Compare Source
pnpm/pnpm
v7.30.5
Compare Source
Patch Changes
pnpm audit
should work even if there are nopackage.json
file, just apnpm-lock.yaml
file.dedupe-peer-dependents
istrue
#6154.Our Gold Sponsors
Our Silver Sponsors
v7.30.4
Compare Source
quicktype/quicktype
v23.0.19
Compare Source
simov/slugify
v1.6.6
Compare Source
remove
option (#168) (@Trott)vercel/turbo
v1.8.6
: Turborepo v1.8.6Compare Source
What's Changed
Changelog
endTime
into task execution summary by @mehulkar in https://github.com/vercel/turbo/pull/4326Full Changelog: vercel/turborepo@v1.8.5...v1.8.6
sindresorhus/type-fest
v3.7.1
Compare Source
3deac35
chrishoermann/zod-prisma-types
v2.5.3
: 2.5.3Compare Source
What's Changed
New Contributors
Full Changelog: chrishoermann/zod-prisma-types@v2.5.1...v2.5.3
v2.5.2
Compare Source
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.
This PR has been generated by Mend Renovate. View repository job log here.