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(aws-user-migrate): update all non-major dependencies #684

Merged
merged 1 commit into from
Jul 26, 2023

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jul 24, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@aws-lambda-powertools/logger (source) 1.11.1 -> 1.12.1 age adoption passing confidence
@aws-sdk/client-cognito-identity-provider (source) 3.370.0 -> 3.377.0 age adoption passing confidence
@aws-sdk/client-s3 (source) 3.374.0 -> 3.377.0 age adoption passing confidence
@playwright/test (source) 1.36.1 -> 1.36.2 age adoption passing confidence
@storybook/addon-a11y (source) 7.1.0 -> 7.1.1 age adoption passing confidence
@storybook/addon-actions (source) 7.1.0 -> 7.1.1 age adoption passing confidence
@storybook/addon-docs (source) 7.1.0 -> 7.1.1 age adoption passing confidence
@storybook/addon-essentials (source) 7.1.0 -> 7.1.1 age adoption passing confidence
@storybook/addon-interactions (source) 7.1.0 -> 7.1.1 age adoption passing confidence
@storybook/addon-links (source) 7.1.0 -> 7.1.1 age adoption passing confidence
@storybook/addon-viewport (source) 7.1.0 -> 7.1.1 age adoption passing confidence
@storybook/components (source) 7.1.0 -> 7.1.1 age adoption passing confidence
@storybook/core-events (source) 7.1.0 -> 7.1.1 age adoption passing confidence
@storybook/manager-api (source) 7.1.0 -> 7.1.1 age adoption passing confidence
@storybook/nextjs (source) 7.1.0 -> 7.1.1 age adoption passing confidence
@storybook/preview-api (source) 7.1.0 -> 7.1.1 age adoption passing confidence
@storybook/react (source) 7.1.0 -> 7.1.1 age adoption passing confidence
@storybook/theming (source) 7.1.0 -> 7.1.1 age adoption passing confidence
@storybook/types (source) 7.1.0 -> 7.1.1 age adoption passing confidence
@types/eslint (source) 8.44.0 -> 8.44.1 age adoption passing confidence
@types/node (source) 18.17.0 -> 18.17.1 age adoption passing confidence
@types/react (source) 18.2.15 -> 18.2.16 age adoption passing confidence
@typescript-eslint/eslint-plugin 6.1.0 -> 6.2.0 age adoption passing confidence
@typescript-eslint/parser 6.1.0 -> 6.2.0 age adoption passing confidence
esbuild 0.18.16 -> 0.18.17 age adoption passing confidence
eslint-plugin-turbo 1.10.9 -> 1.10.12 age adoption passing confidence
i18next (source) 23.2.11 -> 23.3.0 age adoption passing confidence
libphonenumber-js 1.10.37 -> 1.10.38 age adoption passing confidence
quicktype-core 23.0.59 -> 23.0.63 age adoption passing confidence
storybook (source) 7.1.0 -> 7.1.1 age adoption passing confidence
turbo (source) 1.10.9 -> 1.10.12 age adoption passing confidence

Release Notes

aws-powertools/powertools-lambda-typescript (@​aws-lambda-powertools/logger)

v1.12.1

Compare Source

Note: Version bump only for package aws-lambda-powertools-typescript

v1.12.0

Compare Source

Features

1.11.1 (2023-07-11)

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

v3.377.0

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

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

v3.377.0

Compare Source

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

Microsoft/playwright (@​playwright/test)

v1.36.2: 1.36.2

Compare Source

Highlights

https://github.com/microsoft/playwright/issues/24316 - [REGRESSION] Character classes are not working in globs in 1.36

Browser Versions
  • Chromium 115.0.5790.75
  • Mozilla Firefox 115.0
  • WebKit 17.0

This version was also tested against the following stable channels:

  • Google Chrome 114
  • Microsoft Edge 114
storybookjs/storybook (@​storybook/addon-a11y)

v7.1.1

Compare Source

typescript-eslint/typescript-eslint (@​typescript-eslint/eslint-plugin)

v6.2.0

Compare Source

Bug Fixes
  • eslint-plugin: [member-ordering] account for repeated names (#​6864) (d207b59)
  • eslint-plugin: [no-unsafe-enum-comparison] exempt bit shift operators (#​7074) (b3e0e75)
  • eslint-plugin: [prefer-nullish-coalescing] handle case when type of left side is null or undefined (#​7225) (b62affe)
  • eslint-plugin: use a default export for the rules type (#​7266) (af77a1d)
Features
  • eslint-plugin: [class-methods-use-this] add extension rule (#​6457) (18ea3b1)
  • eslint-plugin: sync getFunctionHeadLoc implementation with upstream (#​7260) (f813147)

You can read about our versioning strategy and releases on our website.

typescript-eslint/typescript-eslint (@​typescript-eslint/parser)

v6.2.0

Compare Source

Note: Version bump only for package @​typescript-eslint/parser

You can read about our versioning strategy and releases on our website.

evanw/esbuild (esbuild)

v0.18.17

Compare Source

  • Support An+B syntax and :nth-*() pseudo-classes in CSS

    This adds support for the :nth-child(), :nth-last-child(), :nth-of-type(), and :nth-last-of-type() pseudo-classes to esbuild, which has the following consequences:

    • The An+B syntax is now parsed, so parse errors are now reported
    • An+B values inside these pseudo-classes are now pretty-printed (e.g. a leading + will be stripped because it's not in the AST)
    • When minification is enabled, An+B values are reduced to equivalent but shorter forms (e.g. 2n+0 => 2n, 2n+1 => odd)
    • Local CSS names in an of clause are now detected (e.g. in :nth-child(2n of :local(.foo)) the name foo is now renamed)
    /* Original code */
    .foo:nth-child(+2n+1 of :local(.bar)) {
      color: red;
    }
    
    /* Old output (with --loader=local-css) */
    .stdin_foo:nth-child(+2n + 1 of :local(.bar)) {
      color: red;
    }
    
    /* New output (with --loader=local-css) */
    .stdin_foo:nth-child(2n+1 of .stdin_bar) {
      color: red;
    }
  • Adjust CSS nesting parser for IE7 hacks (#​3272)

    This fixes a regression with esbuild's treatment of IE7 hacks in CSS. CSS nesting allows selectors to be used where declarations are expected. There's an IE7 hack where prefixing a declaration with a * causes that declaration to only be applied in IE7 due to a bug in IE7's CSS parser. However, it's valid for nested CSS selectors to start with *. So esbuild was incorrectly parsing these declarations and anything following it up until the next { as a selector for a nested CSS rule. This release changes esbuild's parser to terminate the parsing of selectors for nested CSS rules when a ; is encountered to fix this edge case:

    /* Original code */
    .item {
      *width: 100%;
      height: 1px;
    }
    
    /* Old output */
    .item {
      *width: 100%; height: 1px; {
      }
    }
    
    /* New output */
    .item {
      *width: 100%;
      height: 1px;
    }

    Note that the syntax for CSS nesting is about to change again, so esbuild's CSS parser may still not be completely accurate with how browsers do and/or will interpret CSS nesting syntax. Expect additional updates to esbuild's CSS parser in the future to deal with upcoming CSS specification changes.

  • Adjust esbuild's warning about undefined imports for TypeScript import equals declarations (#​3271)

    In JavaScript, accessing a missing property on an import namespace object is supposed to result in a value of undefined at run-time instead of an error at compile-time. This is something that esbuild warns you about by default because doing this can indicate a bug with your code. For example:

    // app.js
    import * as styles from './styles'
    console.log(styles.buton)
    // styles.js
    export let button = {}

    If you bundle app.js with esbuild you will get this:

    ▲ [WARNING] Import "buton" will always be undefined because there is no matching export in "styles.js" [import-is-undefined]
    
        app.js:2:19:
          2 │ console.log(styles.buton)
            │                    ~~~~~
            ╵                    button
    
      Did you mean to import "button" instead?
    
        styles.js:1:11:
          1 │ export let button = {}
            ╵            ~~~~~~
    

    However, there is TypeScript-only syntax for import equals declarations that can represent either a type import (which esbuild should ignore) or a value import (which esbuild should respect). Since esbuild doesn't have a type system, it tries to only respect import equals declarations that are actually used as values. Previously esbuild always generated this warning for unused imports referenced within import equals declarations even when the reference could be a type instead of a value. Starting with this release, esbuild will now only warn in this case if the import is actually used. Here is an example of some code that no longer causes an incorrect warning:

    // app.ts
    import * as styles from './styles'
    import ButtonType = styles.Button
    // styles.ts
    export interface Button {}
vercel/turbo (eslint-plugin-turbo)

v1.10.12: Turborepo v1.10.12

Compare Source

What's Changed
Changelog

Full Changelog: vercel/turbo@v1.10.11...v1.10.12

v1.10.11: Turborepo v1.10.11

Compare Source

What's Changed

Changelog

Full Changelog: vercel/turbo@v1.10.10...v1.10.11

v1.10.10: Turborepo v1.10.10

Compare Source

What's Changed

Changelog

Full Changelog: vercel/turbo@v1.10.9...v1.10.10

i18next/i18next (i18next)

v23.3.0

Compare Source

  • types: Fix performance issue that affects flat object with multiple (thousands) keys 2004
catamphetamine/libphonenumber-js (libphonenumber-js)

v1.10.38

Compare Source

quicktype/quicktype (quicktype-core)

v23.0.63

Compare Source

v23.0.62

Compare Source

v23.0.61

Compare Source

v23.0.60

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 July 24, 2023 18:55
@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 Jul 24, 2023
@vercel
Copy link

vercel bot commented Jul 24, 2023

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 Jul 26, 2023 1:16pm

@ghost
Copy link

ghost commented Jul 24, 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 c02dcc2 to 1261e62 Compare July 24, 2023 22:09
@renovate renovate bot changed the title chore(eslint-config): update all non-major dependencies to v6.2.0 chore(ui): update all non-major dependencies Jul 24, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 1261e62 to 58313a6 Compare July 25, 2023 01:34
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 58313a6 to 7dd8ad6 Compare July 25, 2023 09:20
@renovate renovate bot changed the title chore(ui): update all non-major dependencies chore(app): update all non-major dependencies Jul 25, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 7dd8ad6 to a3a0399 Compare July 25, 2023 12:25
@renovate renovate bot changed the title chore(app): update all non-major dependencies fix(aws-user-migrate): update all non-major dependencies Jul 25, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from a3a0399 to 20d8a04 Compare July 25, 2023 13:07
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 20d8a04 to b027627 Compare July 25, 2023 22:24
@kodiakhq kodiakhq bot removed the automerge Enable Kodiak auto-merge label Jul 25, 2023
@kodiakhq
Copy link
Contributor

kodiakhq bot commented Jul 25, 2023

This PR currently has a merge conflict. Please resolve this and then re-add the automerge label.

Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
@sonarcloud
Copy link

sonarcloud bot commented Jul 26, 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 db2eacb into dev Jul 26, 2023
22 checks passed
@kodiakhq kodiakhq bot deleted the renovate/all-minor-patch branch July 26, 2023 13:42
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