Skip to content

fix(auth): update all non-major dependencies#445

Merged
kodiakhq[bot] merged 2 commits into
devfrom
renovate/all-minor-patch
May 1, 2023
Merged

fix(auth): update all non-major dependencies#445
kodiakhq[bot] merged 2 commits into
devfrom
renovate/all-minor-patch

Conversation

@renovate

@renovate renovate Bot commented Apr 26, 2023

Copy link
Copy Markdown
Contributor

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@aws-sdk/client-cognito-identity-provider (source) 3.319.0 -> 3.321.1 age adoption passing confidence
@aws-sdk/client-s3 (source) 3.319.0 -> 3.321.1 age adoption passing confidence
@babel/core (source) 7.21.4 -> 7.21.5 age adoption passing confidence
@babel/preset-env (source) 7.21.4 -> 7.21.5 age adoption passing confidence
@babel/preset-typescript (source) 7.21.4 -> 7.21.5 age adoption passing confidence
@emotion/react (source) 11.10.6 -> 11.10.8 age adoption passing confidence
@iconify-json/simple-icons 1.1.50 -> 1.1.51 age adoption passing confidence
@playwright/test (source) 1.32.3 -> 1.33.0 age adoption passing confidence
@tanstack/react-query-devtools (source) 4.29.5 -> 4.29.6 age adoption passing confidence
@trpc/client (source) 10.21.1 -> 10.23.0 age adoption passing confidence
@trpc/next (source) 10.21.1 -> 10.23.0 age adoption passing confidence
@trpc/react-query (source) 10.21.1 -> 10.23.0 age adoption passing confidence
@trpc/server (source) 10.21.1 -> 10.23.0 age adoption passing confidence
@types/node (source) 18.16.1 -> 18.16.3 age adoption passing confidence
axios (source) 1.3.6 -> 1.4.0 age adoption passing confidence
listr2 6.3.1 -> 6.4.1 age adoption passing confidence
postcss-loader 7.2.4 -> 7.3.0 age adoption passing confidence
prettier-plugin-prisma 4.12.0 -> 4.13.0 age adoption passing confidence
quicktype-core 23.0.27 -> 23.0.30 age adoption passing confidence
tsx 3.12.6 -> 3.12.7 age adoption passing confidence
typesync 0.10.0 -> 0.11.0 age adoption passing confidence
webpack 5.80.0 -> 5.81.0 age adoption passing confidence

Release Notes

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

v3.321.1

Compare Source

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

aws/aws-sdk-js-v3 (@​aws-sdk/client-s3)

v3.321.1

Compare Source

Note: Version bump only for package @​aws-sdk/client-s3

babel/babel

v7.21.5

Compare Source

👓 Spec Compliance
  • babel-generator, babel-parser, babel-types
🐛 Bug Fix
  • babel-core, babel-generator, babel-plugin-transform-modules-commonjs, babel-plugin-transform-react-jsx
  • babel-preset-env
💅 Polish
🏠 Internal
  • babel-core
  • babel-helper-fixtures, babel-preset-typescript
    • #​15568 Handle .overrides and .env when resolving plugins/presets from fixture options (@​JLHwung)
  • babel-helper-create-class-features-plugin, babel-helper-create-regexp-features-plugin
emotion-js/emotion

v11.10.8

Compare Source

Patch Changes
Microsoft/playwright

v1.33.0

Compare Source

Locators Update
  • Use [locator.or()][locator.or()] to create a locator that matches either of the two locators.
    Consider a scenario where you'd like to click on a "New email" button, but sometimes a security settings dialog shows up instead.
    In this case, you can wait for either a "New email" button, or a dialog and act accordingly:

    const newEmail = page.getByRole('button', { name: 'New' });
    const dialog = page.getByText('Confirm security settings');
    await expect(newEmail.or(dialog)).toBeVisible();
    if (await dialog.isVisible())
      await page.getByRole('button', { name: 'Dismiss' }).click();
    await newEmail.click();
  • Use new options hasNot and hasNotText in [locator.filter()][locator.filter()]
    to find elements that do not match certain conditions.

    const rowLocator = page.locator('tr');
    await rowLocator
        .filter({ hasNotText: 'text in column 1' })
        .filter({ hasNot: page.getByRole('button', { name: 'column 2 button' }) })
        .screenshot();
  • Use new web-first assertion [locatorAssertions.toBeAttached()][locatorAssertions.toBeAttached()] to ensure that the element
    is present in the page's DOM. Do not confuse with the [locatorAssertions.toBeVisible()][locatorAssertions.toBeVisible()] that ensures that
    element is both attached & visible.

New APIs
  • [locator.or()][locator.or()]
  • New option hasNot in [locator.filter()][locator.filter()]
  • New option hasNotText in [locator.filter()][locator.filter()]
  • [locatorAssertions.toBeAttached()][locatorAssertions.toBeAttached()]
  • New option timeout in [route.fetch()][route.fetch()]
  • [reporter.onExit()][reporter.onExit()]
⚠️ Breaking change
  • The mcr.microsoft.com/playwright:v1.33.0 now serves a Playwright image based on Ubuntu Jammy.
    To use the focal-based image, please use mcr.microsoft.com/playwright:v1.33.0-focal instead.
Browser Versions
  • Chromium 113.0.5672.53
  • Mozilla Firefox 112.0
  • WebKit 16.4

This version was also tested against the following stable channels:

  • Google Chrome 112
  • Microsoft Edge 112
tanstack/query

v4.29.6

Compare Source

Version 4.29.6 - 4/28/2023, 3:07 PM

Changes
Fix
Chore
Docs
Packages
trpc/trpc

v10.23.0

Compare Source

What's Changed

Full Changelog: trpc/trpc@v10.22.0...v10.23.0

v10.22.0

Compare Source

What's Changed

New Contributors

Full Changelog: trpc/trpc@v10.21.2...v10.22.0

v10.21.2

Compare Source

What's Changed

Full Changelog: trpc/trpc@v10.21.1...v10.21.2

axios/axios

v1.4.0

Compare Source

Bug Fixes
  • formdata: add multipart/form-data content type for FormData payload on custom client environments; (#​5678) (bbb61e7)
  • package: export package internals with unsafe path prefix; (#​5677) (df38c94)
Features
Performance Improvements
  • merge-config: optimize mergeConfig performance by avoiding duplicate key visits; (#​5679) (e6f7053)
Contributors to this release

1.3.6 (2023-04-19)

Bug Fixes
  • types: added transport to RawAxiosRequestConfig (#​5445) (6f360a2)
  • utils: make isFormData detection logic stricter to avoid unnecessary calling of the toString method on the target; (#​5661) (aa372f7)
Contributors to this release

1.3.5 (2023-04-05)

Bug Fixes
  • headers: fixed isValidHeaderName to support full list of allowed characters; (#​5584) (e7decef)
  • params: re-added the ability to set the function as paramsSerializer config; (#​5633) (a56c866)
Contributors to this release

1.3.4 (2023-02-22)

Bug Fixes
  • blob: added a check to make sure the Blob class is available in the browser's global scope; (#​5548) (3772c8f)
  • http: fixed regression bug when handling synchronous errors inside the adapter; (#​5564) (a3b246c)
Contributors to this release

1.3.3 (2023-02-13)

Bug Fixes
  • formdata: added a check to make sure the FormData class is available in the browser's global scope; (#​5545) (a6dfa72)
  • formdata: fixed setting NaN as Content-Length for form payload in some cases; (#​5535) (c19f7bf)
  • headers: fixed the filtering logic of the clear method; (#​5542) (ea87ebf)
Contributors to this release

1.3.2 (2023-02-03)

Bug Fixes
Contributors to this release

1.3.1 (2023-02-01)

Bug Fixes
  • formdata: add hotfix to use the asynchronous API to compute the content-length header value; (#​5521) (96d336f)
  • serializer: fixed serialization of array-like objects; (#​5518) (08104c0)
Contributors to this release
listr2/listr2

v6.4.1

Compare Source

Bug Fixes

v6.4.0

Compare Source

Bug Fixes
  • move types condition to the front (04c20cc)
Features
  • package: export the package.json (3ec1d41)
Reverts
  • revert back the skiping hooks for now (031b536)
webpack-contrib/postcss-loader

v7.3.0

Compare Source

Features
7.2.4 (2023-04-04)
Bug Fixes
7.2.3 (2023-04-03)
Bug Fixes
7.2.2 (2023-04-03)
Bug Fixes
7.2.1 (2023-04-03)
Bug Fixes
umidbekk/prettier-plugin-prisma

v4.13.0

Compare Source

  • feat: Bump @prisma/prisma-fmt-wasm@4.13.0. 606ddda
  • chore: Bump dependencies. f407761
  • chore: Bump @umidbekk/configs. bc4592d
quicktype/quicktype

v23.0.30

Compare Source

v23.0.29

Compare Source

v23.0.28

Compare Source

esbuild-kit/tsx

v3.12.7

Compare Source

Bug Fixes
jeffijoe/typesync

v0.11.0

Compare Source

  • Use npm-registry-fetch instead of axios for fetching package info from npm.
  • Microsoft removed their search-index resource, so will check npm directly.
  • Remove the "remove unused typings" feature as it relied on the information in the Microsoft index and isn't easily available elsewhere for the time being.
  • Update packages.
webpack/webpack

v5.81.0

Compare Source

New Features

Bug Fixes

Tests & Contributor Experience

Developer Experience

Dependencies & Maintenance

New Contributors

Full Changelog: webpack/webpack@v5.80.0...v5.81.0


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 26, 2023 16:13
@renovate renovate Bot added automerge Enable Kodiak auto-merge dependencies Change in project dependencies. labels Apr 26, 2023
@vercel

vercel Bot commented Apr 26, 2023

Copy link
Copy Markdown

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 May 1, 2023 2:27pm
inreach-web ✅ Ready (Inspect) Visit Preview 💬 Add feedback May 1, 2023 2:27pm

@ghost

ghost commented Apr 26, 2023

Copy link
Copy Markdown
👇 Click on the image for a new way to code review

Review these changes using an interactive CodeSee Map

Legend

CodeSee Map legend

@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch from adbdd70 to 9dc8e8b Compare April 26, 2023 20:39
@renovate renovate Bot changed the title chore(ui): update dependency webpack to v5.81.0 chore(db): update all non-major dependencies Apr 26, 2023
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch from 9dc8e8b to c6dce26 Compare April 26, 2023 23:49
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch from c6dce26 to 6ec9b1c Compare April 27, 2023 03:27
@renovate renovate Bot changed the title chore(db): update all non-major dependencies fix(auth): update all non-major dependencies Apr 27, 2023
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch from 6ec9b1c to d2a5bd9 Compare April 27, 2023 13:27
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch from d2a5bd9 to 2322e05 Compare April 27, 2023 23:45
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch from a33d352 to b145fec Compare April 28, 2023 19:36
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch from b145fec to 678eb70 Compare April 28, 2023 23:03
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch from 678eb70 to 798ad9c Compare April 29, 2023 08:37
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch from 798ad9c to 237d8c6 Compare April 29, 2023 12:19
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch from 237d8c6 to e30c79e Compare April 29, 2023 23:13
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch from e30c79e to 613bca8 Compare April 30, 2023 03:58
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch from 613bca8 to 68b10d7 Compare April 30, 2023 15:44
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch from 68b10d7 to 638fa50 Compare April 30, 2023 21:27
@kodiakhq

kodiakhq Bot commented May 1, 2023

Copy link
Copy Markdown
Contributor

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>
@sonarqubecloud

sonarqubecloud Bot commented May 1, 2023

Copy link
Copy Markdown

Kudos, SonarCloud Quality Gate passed!    Quality Gate passed

Bug A 0 Bugs
Vulnerability A 0 Vulnerabilities
Security Hotspot A 0 Security Hotspots
Code Smell A 0 Code Smells

No Coverage information No Coverage information
0.0% 0.0% Duplication

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