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

Merged
merged 2 commits into from
Mar 27, 2023
Merged

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Mar 25, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@aws-sdk/client-cognito-identity-provider (source) 3.299.0 -> 3.300.0 age adoption passing confidence
@aws-sdk/client-s3 (source) 3.299.0 -> 3.300.0 age adoption passing confidence
@playwright/test (source) 1.32.0 -> 1.32.1 age adoption passing confidence
@types/google.maps (source) 3.52.3 -> 3.52.4 age adoption passing confidence
@types/node (source) 18.15.8 -> 18.15.10 age adoption passing confidence
@typescript-eslint/eslint-plugin 5.56.0 -> 5.57.0 age adoption passing confidence
@typescript-eslint/parser 5.56.0 -> 5.57.0 age adoption passing confidence
esbuild 0.17.13 -> 0.17.14 age adoption passing confidence
just-diff 6.0.0 -> 6.0.2 age adoption passing confidence
localized-address-format 1.3.0 -> 1.3.1 age adoption passing confidence
nanoid 4.0.1 -> 4.0.2 age adoption passing confidence
pnpm (source) 7.30.3 -> 7.30.5 age adoption passing confidence
quicktype-core 23.0.18 -> 23.0.19 age adoption passing confidence
slugify 1.6.5 -> 1.6.6 age adoption passing confidence
turbo (source) 1.8.5 -> 1.8.6 age adoption passing confidence
type-fest 3.7.0 -> 3.7.1 age adoption passing confidence
zod-prisma-types 2.5.1 -> 2.5.3 age adoption passing confidence

Release Notes

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

v3.300.0

Compare Source

Features
  • clients: codegen for structural hint documentation in commands (#​4573) (b3ff58d)
aws/aws-sdk-js-v3 (@​aws-sdk/client-s3)

v3.300.0

Compare Source

Features
  • clients: codegen for structural hint documentation in commands (#​4573) (b3ff58d)
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

  • Chromium 112.0.5615.29
  • Mozilla Firefox 111.0
  • WebKit 16.4

This version was also tested against the following stable channels:

  • Google Chrome 111
  • Microsoft Edge 111
typescript-eslint/typescript-eslint (@​typescript-eslint/eslint-plugin)

v5.57.0

Compare Source

Bug Fixes
  • eslint-plugin: [no-unnecessary-boolean-literal-compare] simplify fixer and add support for double negation (#​6620) (81c8519)
  • eslint-plugin: correct crashes with getTypeArguments for ts < 3.7 (#​6767) (59eab58)
Features
  • eslint-plugin: [consistent-type-assertions] add suggestions for objectLiteralTypeAssertions (#​6642) (720e811)
  • eslint-plugin: [consistent-type-assertions] autofix angle bracket assertions to as (#​6641) (ad8ea64)
  • eslint-plugin: add 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:

    interface Foo { <const T>(): T }
    type Bar = { new <const T>(): T }
  • 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's target 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 a target which includes older browsers that don't support :is().

    The lowering transformation looks like this:

    /* Original input */
    a.btn {
      color: #&#8203;333;
      &:hover { color: #&#8203;444 }
      &:active { color: #&#8203;555 }
    }
    
    /* New output (with --target=chrome88) */
    a.btn {
      color: #&#8203;333;
    }
    a.btn:hover {
      color: #&#8203;444;
    }
    a.btn:active {
      color: #&#8203;555;
    }

    More complex cases may generate the :is() pseudo-class:

    /* Original input */
    div, p {
      .warning, .error {
        padding: 20px;
      }
    }
    
    /* New output (with --target=chrome88) */
    :is(div, p) :is(.warning, .error) {
      padding: 20px;
    }

    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:

    ▲ [WARNING] A nested style rule cannot start with "p" because it looks like the start of a declaration [css-syntax-error]
    
        <stdin>:1:7:
          1 │ main { p { margin: auto } }
            │        ^
            ╵        :is(p)
    
      To start a nested style rule with an identifier, you need to wrap the identifier in ":is(...)" to
      prevent the rule from being parsed as a declaration.
    

    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 selectors

    This release introduces the following CSS minification optimizations:

    /* Original input */
    a {
      font-weight: bold;
      & {
        color: blue;
      }
      & :hover {
        text-decoration: underline;
      }
    }
    
    /* Old output (with --minify) */
    a{font-weight:700;&{color:#&#8203;00f}& :hover{text-decoration:underline}}
    
    /* New output (with --minify) */
    a{font-weight:700;:hover{text-decoration:underline}color:#&#8203;00f}
  • Minification now removes duplicates from CSS selector lists

    This release introduces the following CSS minification optimization:

    /* Original input */
    div, div { color: red }
    
    /* Old output (with --minify) */
    div,div{color:red}
    
    /* New output (with --minify) */
    div{color:red}
angus-c/just

v6.0.2

Compare Source

DASPRiD/localized-address-format

v1.3.1

Compare Source

Bug Fixes
  • formats: update address formats to 2023-03-26 (7b1a0f1)
ai/nanoid

v4.0.2

Compare Source

  • Added link to Github Sponsors.
pnpm/pnpm

v7.30.5

Compare Source

Patch Changes

  • pnpm audit should work even if there are no package.json file, just a pnpm-lock.yaml file.
  • Dedupe direct dependencies after hoisting.
  • Don't remove automatically installed peer dependencies from the root workspace project, when dedupe-peer-dependents is true #​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

vercel/turbo

v1.8.6: Turborepo v1.8.6

Compare Source

What's Changed

Changelog

Full Changelog: vercel/turbo@v1.8.5...v1.8.6

sindresorhus/type-fest

v3.7.1

Compare Source

chrishoermann/zod-prisma-types

v2.5.3: 2.5.3

Compare 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.


  • 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 March 25, 2023 09:39
@renovate renovate bot added automerge Enable Kodiak auto-merge dependencies Change in project dependencies. labels Mar 25, 2023
@vercel
Copy link

vercel bot commented Mar 25, 2023

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

Name Status Preview Comments Updated
inreach-app ✅ Ready (Inspect) Visit Preview 💬 Add your feedback Mar 27, 2023 at 11:17PM (UTC)
inreach-web ✅ Ready (Inspect) Visit Preview 💬 Add your feedback Mar 27, 2023 at 11:17PM (UTC)

@ghost
Copy link

ghost commented Mar 25, 2023

👇 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 150c7df to 28e5bc5 Compare March 26, 2023 16:05
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 28e5bc5 to 8ca9c35 Compare March 26, 2023 19:59
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 8ca9c35 to 2b24eb5 Compare March 26, 2023 23:39
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 2b24eb5 to 604a4c9 Compare March 27, 2023 16:05
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 604a4c9 to 58c7833 Compare March 27, 2023 22:02
@renovate renovate bot changed the title chore(app): update all non-major dependencies fix(auth): update all non-major dependencies Mar 27, 2023
@kodiakhq kodiakhq bot removed the automerge Enable Kodiak auto-merge label Mar 27, 2023
@kodiakhq
Copy link
Contributor

kodiakhq bot commented Mar 27, 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>
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 62354d9 to b03d5f9 Compare March 27, 2023 23:12
@sonarcloud
Copy link

sonarcloud bot commented Mar 27, 2023

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

@kodiakhq kodiakhq bot merged commit b057f8e into dev Mar 27, 2023
@kodiakhq kodiakhq bot deleted the renovate/all-minor-patch branch March 27, 2023 23:15
@vercel vercel bot temporarily deployed to Preview – inreach-app March 27, 2023 23:18 Inactive
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.

None yet

1 participant