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(auth): update all non-major dependencies #1201

Merged
merged 1 commit into from
Apr 4, 2024
Merged

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Apr 3, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@aws-sdk/client-cognito-identity-provider (source) 3.540.0 -> 3.549.0 age adoption passing confidence
@iconify-json/mdi 1.1.64 -> 1.1.65 age adoption passing confidence
@iconify-json/ph 1.1.11 -> 1.1.12 age adoption passing confidence
@iconify-json/simple-icons 1.1.97 -> 1.1.98 age adoption passing confidence
@playwright/test (source) 1.42.1 -> 1.43.0 age adoption passing confidence
@prisma/client (source) 5.12.0 -> 5.12.1 age adoption passing confidence
@prisma/instrumentation (source) 5.12.0 -> 5.12.1 age adoption passing confidence
@prisma/nextjs-monorepo-workaround-plugin (source) 5.12.0 -> 5.12.1 age adoption passing confidence
@snaplet/seed 0.89.6 -> 0.91.0 age adoption passing confidence
@swc/core (source) 1.4.11 -> 1.4.12 age adoption passing confidence
@types/google.maps (source) 3.55.5 -> 3.55.6 age adoption passing confidence
@types/node (source) 20.12.3 -> 20.12.4 age adoption passing confidence
@types/react-dom (source) 18.2.23 -> 18.2.24 age adoption passing confidence
i18next-hmr 3.1.1 -> 3.1.2 age adoption passing confidence
knip (source) 5.7.1 -> 5.7.3 age adoption passing confidence
prisma (source) 5.12.0 -> 5.12.1 age adoption passing confidence
snaplet 0.89.6 -> 0.90.0 age adoption passing confidence
tsx 4.7.1 -> 4.7.2 age adoption passing confidence
typescript (source) 5.4.3 -> 5.4.4 age adoption passing confidence

Release Notes

aws/aws-sdk-js-v3 (@​aws-sdk/client-cognito-identity-provider)

v3.549.0

Compare Source

Note: Version bump only for package @​aws-sdk/client-cognito-identity-provider

microsoft/playwright (@​playwright/test)

v1.43.0

Compare Source

New APIs

  • Method browserContext.clearCookies() now supports filters to remove only some cookies.

    // Clear all cookies.
    await context.clearCookies();
    // New: clear cookies with a particular name.
    await context.clearCookies({ name: 'session-id' });
    // New: clear cookies for a particular domain.
    await context.clearCookies({ domain: 'my-origin.com' });
  • New mode retain-on-first-failure for testOptions.trace. In this mode, trace is recorded for the first run of each test, but not for retires. When test run fails, the trace file is retained, otherwise it is removed.

    import { defineConfig } from '@​playwright/test';
    
    export default defineConfig({
      use: {
        trace: 'retain-on-first-failure',
      },
    });
  • New property testInfo.tags exposes test tags during test execution.

    test('example', async ({ page }) => {
      console.log(test.info().tags);
    });
  • New method locator.contentFrame() converts a Locator object to a FrameLocator. This can be useful when you have a Locator object obtained somewhere, and later on would like to interact with the content inside the frame.

    const locator = page.locator('iframe[name="embedded"]');
    // ...
    const frameLocator = locator.contentFrame();
    await frameLocator.getByRole('button').click();
  • New method frameLocator.owner() converts a FrameLocator object to a Locator. This can be useful when you have a FrameLocator object obtained somewhere, and later on would like to interact with the iframe element.

    const frameLocator = page.frameLocator('iframe[name="embedded"]');
    // ...
    const locator = frameLocator.owner();
    await expect(locator).toBeVisible();

UI Mode Updates

Playwright UI Mode

  • See tags in the test list.
  • Filter by tags by typing @fast or clicking on the tag itself.
  • New shortcuts:
    • F5 to run tests.
    • Shift F5 to stop running tests.
    • Ctrl ` to toggle test output.

Browser Versions

  • Chromium 124.0.6367.29
  • Mozilla Firefox 124.0
  • WebKit 17.4

This version was also tested against the following stable channels:

  • Google Chrome 123
  • Microsoft Edge 123
prisma/prisma (@​prisma/client)

v5.12.1

Compare Source

Today, we are issuing the 5.12.1 patch release to fix two small problems with our new Cloudflare D1 support.

Fixes in Prisma CLI
Windows-only fix for new D1 specific flags for migrate diff and db pull

The flags --from-local-d1 and --to-local-d1 for migrate diff and --local-d1 to db pull we added in 5.12.0 were not working as expected when running on Windows only. This is now fixed.

📚 Documentation: Deploying a Cloudflare worker with D1 and Prisma ORM

New option for migrate diff: -o or --output

We added a new parameter --output to migrate diff that can be used to provide a filename into which the output of the command will be written. This is particularly useful for Windows users, using PowerShell, as using > to write into a file creates a UTF-16 LE file that can not be read by wrangler d1 migrations apply. Using this new option, this problem can be avoided:

npx prisma migrate diff --script --from-empty --to-schema-datamodel ./prisma/schema.prisma --output ./schema.sql

Related issues:

swc-project/swc (@​swc/core)

v1.4.12

Compare Source

Bug Fixes
Features
Miscellaneous Tasks
Performance
felixmosh/i18next-hmr (i18next-hmr)

v3.1.2

Compare Source

  • build(deps): bump express from 4.18.2 to 4.19.2 in /examples/vue-i18next ef51cbb
  • fix: typescript types defs 3c0dd84
  • build(deps-dev): bump vite in /examples/vite-react-i18next 79323f6
webpro/knip (knip)

v5.7.3

Compare Source

v5.7.2

Compare Source

privatenumber/tsx (tsx)

v4.7.2

Compare Source

Microsoft/TypeScript (typescript)

v5.4.4: TypeScript 5.4.4

Compare Source

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:


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 April 3, 2024 21:43
@renovate renovate bot added automerge Enable Kodiak auto-merge dependencies Change in project dependencies. kodiak: merge.method = 'squash' Kodiak will squash merge this PR. labels Apr 3, 2024
Copy link

vercel bot commented Apr 3, 2024

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

Name Status Preview Comments Updated (UTC)
inreach-app ✅ Ready (Inspect) Visit Preview 💬 Add feedback Apr 4, 2024 9:42pm

Copy link

deepsource-io bot commented Apr 3, 2024

Here's the code health analysis summary for commits 80b26cc..ee46bcc. View details on DeepSource ↗.

Analysis Summary

AnalyzerStatusSummaryLink
DeepSource JavaScript LogoJavaScript✅ SuccessView Check ↗
DeepSource Secrets LogoSecrets✅ SuccessView Check ↗

💡 If you’re a repository administrator, you can configure the quality gates from the settings.

Copy link
Contributor

github-actions bot commented Apr 3, 2024

📦 Next.js Bundle Analysis for @weareinreach/app

This analysis was generated by the Next.js Bundle Analysis action. 🤖

This PR introduced no changes to the JavaScript bundle! 🙌

Copy link

alwaysmeticulous bot commented Apr 3, 2024

🤖 No test run has been triggered as your Meticulous project has been deactivated (since you haven't viewed any test results in a while). Click here to reactivate.

Last updated for commit 581fb24. This comment will update as new commits are pushed.

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from ee46bcc to ab1bc5b Compare April 3, 2024 22:54
@renovate renovate bot changed the title chore(ui): update dependency @types/react-dom to v18.2.24 chore(ui): update all non-major dependencies Apr 3, 2024
Copy link

socket-security bot commented Apr 3, 2024

👍 Dependency issues cleared. Learn more about Socket for GitHub ↗︎

This PR previously contained dependency changes with security issues that have been resolved, removed, or ignored.

View full report↗︎

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from ab1bc5b to 275e360 Compare April 4, 2024 01:45
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 275e360 to 51f18ed Compare April 4, 2024 08:00
@renovate renovate bot changed the title chore(ui): update all non-major dependencies chore(db): update all non-major dependencies Apr 4, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 51f18ed to 77163a2 Compare April 4, 2024 11:44
@renovate renovate bot changed the title chore(db): update all non-major dependencies chore(ui): update all non-major dependencies Apr 4, 2024
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from effdf06 to 581fb24 Compare April 4, 2024 21:37
@renovate renovate bot changed the title chore(ui): update all non-major dependencies fix(auth): update all non-major dependencies Apr 4, 2024
Copy link

sonarcloud bot commented Apr 4, 2024

Quality Gate Passed Quality Gate passed

Issues
0 New issues
0 Accepted issues

Measures
0 Security Hotspots
No data about Coverage
0.0% Duplication on New Code

See analysis details on SonarCloud

@kodiakhq kodiakhq bot merged commit b7bfa8e into dev Apr 4, 2024
24 checks passed
@kodiakhq kodiakhq bot deleted the renovate/all-minor-patch branch April 4, 2024 22:29
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant