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

Merged
merged 1 commit into from
Mar 8, 2023

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Mar 8, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@aws-sdk/client-cognito-identity-provider (source) 3.282.0 -> 3.287.0 age adoption passing confidence
@aws-sdk/client-s3 (source) 3.282.0 -> 3.287.0 age adoption passing confidence
@storybook/addon-a11y (source) 7.0.0-beta.62 -> 7.0.0-beta.63 age adoption passing confidence
@storybook/addon-actions (source) 7.0.0-beta.62 -> 7.0.0-beta.63 age adoption passing confidence
@storybook/addon-docs (source) 7.0.0-beta.62 -> 7.0.0-beta.63 age adoption passing confidence
@storybook/addon-essentials (source) 7.0.0-beta.62 -> 7.0.0-beta.63 age adoption passing confidence
@storybook/addon-interactions (source) 7.0.0-beta.62 -> 7.0.0-beta.63 age adoption passing confidence
@storybook/addon-links (source) 7.0.0-beta.62 -> 7.0.0-beta.63 age adoption passing confidence
@storybook/addon-viewport (source) 7.0.0-beta.62 -> 7.0.0-beta.63 age adoption passing confidence
@storybook/nextjs (source) 7.0.0-beta.62 -> 7.0.0-beta.63 age adoption passing confidence
@storybook/react (source) 7.0.0-beta.62 -> 7.0.0-beta.63 age adoption passing confidence
@storybook/theming (source) 7.0.0-beta.62 -> 7.0.0-beta.63 age adoption passing confidence
@storybook/types (source) 7.0.0-beta.62 -> 7.0.0-beta.63 age adoption passing confidence
@total-typescript/ts-reset 0.3.7 -> 0.4.2 age adoption passing confidence
embla-carousel-react (source) 7.0.9 -> 7.1.0 age adoption passing confidence
msw-storybook-addon (source) 1.7.0 -> 1.8.0 age adoption passing confidence
next-i18next 13.2.1 -> 13.2.2 age adoption passing confidence
storybook (source) 7.0.0-beta.62 -> 7.0.0-beta.63 age adoption passing confidence
webpack 5.75.0 -> 5.76.0 age adoption passing confidence

Release Notes

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

v3.287.0

Compare Source

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

v3.287.0

Compare Source

Bug Fixes
storybookjs/storybook

v7.0.0-beta.63

Compare Source

Bug Fixes
  • Story Index: Fix storySort parsing for parameters variable #​21481
  • React/Vite: Add some missing types #​21449
  • Docs: Cleanup with Promise instead of setTimeout #​21476
  • Docs: Re-render MDX files when you fix a thrown error #​21454
  • CLI: Fix mdx-to-csf codemod blocks imports #​21448
Maintenance
  • CLI: Copy tweaks for automigrations #​21475
  • CLI: Warn the user when stories glob does not match any file #​21392
  • Docs: Use Of type in useOf argument #​21442
  • Telemetry: Is interactive shell #​21436
total-typescript/ts-reset

v0.4.2

0.4.2

Minor Changes
  • ce9db42: Added support for widening in Array.lastIndexOf, Array.indexOf, ReadonlyArray.lastIndexOf and ReadonlyArray.indexOf.

  • 107dfc2: Changed the array.includes on readonly arrays to NOT be a type predicate. Before this change, this perfectly valid code would not behave correctly.

    type Code = 0 | 1 | 2;
    type SpecificCode = 0 | 1;
    
    const currentCode: Code = 0;
    
    // Create an empty list of subset type
    const specificCodeList: ReadonlyArray<SpecificCode> = [];
    
    // This will be false, since 0 is not in []
    if (specificCodeList.includes(currentCode)) {
      currentCode; // -> SpecificCode
    } else {
      // This branch will be entered, and ts will think z is 2, when it is actually 0
      currentCode; // -> 2
    }

    Removing the type predicate brings ts-reset closer towards correctness.

  • 4765413: author: @​mefechoel

    Added the Map.has rule.

    Similar to .includes or Set.has(), Map.has() doesn't let you pass members that don't exist in the map's keys:

    // BEFORE
    const userMap = new Map([
      ["matt", 0],
      ["sofia", 1],
      [2, "waqas"],
    ] as const);
    
    // Argument of type '"bryan"' is not assignable to
    // parameter of type '"matt" | "sofia" | "waqas"'.
    userMap.has("bryan");

    With the rule enabled, Map follows the same semantics as Set.

    // AFTER
    import "@&#8203;total-typescript/ts-reset/map-has";
    
    const userMap = new Map([
      ["matt", 0],
      ["sofia", 1],
      [2, "waqas"],
    ] as const);
    
    // .has now takes a string as the argument!
    userMap.has("bryan");
Patch Changes
  • b15aaa4: Fixed an oversight with the initial set-has implementation by adding support to ReadonlySet.

v0.4.1

Patch Changes
  • No changes, just pushing to fix the previous slightly borked release.

v0.4.0

Minor Changes
  • ce9db42: Added support for widening in Array.lastIndexOf, Array.indexOf, ReadonlyArray.lastIndexOf and ReadonlyArray.indexOf.

  • 107dfc2: Changed the array.includes on readonly arrays to NOT be a type predicate. Before this change, this perfectly valid code would not behave correctly.

    type Code = 0 | 1 | 2;
    type SpecificCode = 0 | 1;
    
    const currentCode: Code = 0;
    
    // Create an empty list of subset type
    const specificCodeList: ReadonlyArray<SpecificCode> = [];
    
    // This will be false, since 0 is not in []
    if (specificCodeList.includes(currentCode)) {
      currentCode; // -> SpecificCode
    } else {
      // This branch will be entered, and ts will think z is 2, when it is actually 0
      currentCode; // -> 2
    }

    Removing the type predicate brings ts-reset closer towards correctness.

  • 4765413: author: @​mefechoel

    Added the Map.has rule.

    Similar to .includes or Set.has(), Map.has() doesn't let you pass members that don't exist in the map's keys:

    // BEFORE
    const userMap = new Map([
      ["matt", 0],
      ["sofia", 1],
      [2, "waqas"],
    ] as const);
    
    // Argument of type '"bryan"' is not assignable to
    // parameter of type '"matt" | "sofia" | "waqas"'.
    userMap.has("bryan");

    With the rule enabled, Map follows the same semantics as Set.

    // AFTER
    import "@&#8203;total-typescript/ts-reset/map-has";
    
    const userMap = new Map([
      ["matt", 0],
      ["sofia", 1],
      [2, "waqas"],
    ] as const);
    
    // .has now takes a string as the argument!
    userMap.has("bryan");
Patch Changes
  • b15aaa4: Fixed an oversight with the initial set-has implementation by adding support to ReadonlySet.
davidjerleke/embla-carousel

v7.1.0

Compare Source

🌟 New features:

Donations

Embla Carousel is an open source MIT licensed project. If you are interested in supporting this project, please consider:


What's Changed

Full Changelog: davidjerleke/embla-carousel@v7.0.9...v7.1.0

mswjs/msw-storybook-addon

v1.8.0

Compare Source

🚀 Enhancement
🐛 Bug Fix
Authors: 2
i18next/next-i18next

v13.2.2

Compare Source

  • pageProps may be undefined on strange setups #​2109"
webpack/webpack

v5.76.0

Compare Source

Bugfixes

Features

Security

Repo Changes

New Contributors

Full Changelog: webpack/webpack@v5.75.0...v5.76.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.

Signed-off-by: Renovate Bot <bot@renovateapp.com>
@renovate renovate bot requested a review from JoeKarow as a code owner March 8, 2023 21:07
@renovate renovate bot added automerge Enable Kodiak auto-merge dependencies Change in project dependencies. labels Mar 8, 2023
@vercel
Copy link

vercel bot commented Mar 8, 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 8, 2023 at 9:09PM (UTC)
inreach-web ✅ Ready (Inspect) Visit Preview 💬 Add your feedback Mar 8, 2023 at 9:09PM (UTC)

@sonarqubecloud
Copy link

sonarqubecloud bot commented Mar 8, 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

@ghost
Copy link

ghost commented Mar 8, 2023

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

Review these changes using an interactive CodeSee Map

Legend

CodeSee Map legend

@kodiakhq kodiakhq bot merged commit 1ef659d into dev Mar 8, 2023
@kodiakhq kodiakhq bot deleted the renovate/all-minor-patch branch March 8, 2023 23:19
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant