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

chore(ui): update all non-major dependencies #719

Merged
merged 1 commit into from
Aug 17, 2023
Merged

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Aug 15, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@storybook/addon-a11y (source) 7.3.0 -> 7.3.1 age adoption passing confidence
@storybook/addon-actions (source) 7.3.0 -> 7.3.1 age adoption passing confidence
@storybook/addon-designs 7.0.4 -> 7.0.5 age adoption passing confidence
@storybook/addon-docs (source) 7.3.0 -> 7.3.1 age adoption passing confidence
@storybook/addon-essentials (source) 7.3.0 -> 7.3.1 age adoption passing confidence
@storybook/addon-interactions (source) 7.3.0 -> 7.3.1 age adoption passing confidence
@storybook/addon-links (source) 7.3.0 -> 7.3.1 age adoption passing confidence
@storybook/addon-viewport (source) 7.3.0 -> 7.3.1 age adoption passing confidence
@storybook/components (source) 7.3.0 -> 7.3.1 age adoption passing confidence
@storybook/core-events (source) 7.3.0 -> 7.3.1 age adoption passing confidence
@storybook/jest 0.1.0 -> 0.2.0 age adoption passing confidence
@storybook/manager-api (source) 7.3.0 -> 7.3.1 age adoption passing confidence
@storybook/nextjs (source) 7.3.0 -> 7.3.1 age adoption passing confidence
@storybook/preview-api (source) 7.3.0 -> 7.3.1 age adoption passing confidence
@storybook/react (source) 7.3.0 -> 7.3.1 age adoption passing confidence
@storybook/theming (source) 7.3.0 -> 7.3.1 age adoption passing confidence
@storybook/types (source) 7.3.0 -> 7.3.1 age adoption passing confidence
@tiptap/extension-link (source) 2.0.4 -> 2.1.1 age adoption passing confidence
@tiptap/react (source) 2.0.4 -> 2.1.1 age adoption passing confidence
@tiptap/starter-kit (source) 2.0.4 -> 2.1.1 age adoption passing confidence
@total-typescript/ts-reset (source) 0.4.2 -> 0.5.1 age adoption passing confidence
dotenv-cli 7.2.1 -> 7.3.0 age adoption passing confidence
eslint-plugin-react 7.33.1 -> 7.33.2 age adoption passing confidence
pg 8.11.2 -> 8.11.3 age adoption passing confidence
storybook (source) 7.3.0 -> 7.3.1 age adoption passing confidence
zod (source) 3.22.0 -> 3.22.1 age adoption passing confidence

Release Notes

storybookjs/storybook (@​storybook/addon-a11y)

v7.3.1

Compare Source

storybookjs/addon-designs (@​storybook/addon-designs)

v7.0.5

Compare Source

storybookjs/jest (@​storybook/jest)

v0.2.0

Compare Source

🎉 This release contains work from new contributors! 🎉

Thanks for all your work!

❤️ Norbert de Langen (@​ndelangen)

❤️ Vanessa Yuen (@​vanessayuenn)

❤️ Valentin Palkovic (@​valentinpalkovic)

❤️ Homa Wong (@​unional)

❤️ Kasper Peulen (@​kasperpeulen)

❤️ Michael Shilman (@​shilman)

Release Notes
Prebundle @​storybook/instrumenter package (#​27)

This change bundles the @storybook/instrumenter package which fixes dependency conflicts in certain scenarios. It shouldn't impact the functionality of the package itself, but let us know if you experience any issues!


🚀 Enhancement
🐛 Bug Fix
📝 Documentation
Authors: 8
ueberdosis/tiptap (@​tiptap/extension-link)

v2.1.1

Compare Source

Note: Version bump only for package @​tiptap/extension-link

v2.1.0

Compare Source

Note: Version bump only for package @​tiptap/extension-link

ueberdosis/tiptap (@​tiptap/react)

v2.1.1

Compare Source

Note: Version bump only for package @​tiptap/react

v2.1.0

Compare Source

Note: Version bump only for package @​tiptap/react

ueberdosis/tiptap (@​tiptap/starter-kit)

v2.1.1

Compare Source

Note: Version bump only for package @​tiptap/starter-kit

v2.1.0

Compare Source

Note: Version bump only for package @​tiptap/starter-kit

total-typescript/ts-reset (@​total-typescript/ts-reset)

v0.5.1

Patch Changes
  • Added homepage for npm purposes.

v0.5.0

Minor Changes
  • 49b8603: Added a rule, /session, to make sessionStorage and localStorage safer.

    // Is now typed as `unknown`, not `any`!
    localStorage.a;
    
    // Is now typed as `unknown`, not `any`!
    sessionStorage.abc;
  • 49b8603: Added a /dom entrypoint to allow users to import DOM-only rules.

entropitor/dotenv-cli (dotenv-cli)

v7.3.0

Compare Source

jsx-eslint/eslint-plugin-react (eslint-plugin-react)

v7.33.2

Compare Source

Fixed
  • [no-deprecated]: prevent false positive on commonjs import (#​3614 @​akulsr0)
  • [no-unsafe]: report on the method instead of the entire component (@​ljharb)
  • [no-deprecated]: report on the destructured property instead of the entire variable declarator (@​ljharb)
  • [no-deprecated]: report on the imported specifier instead of the entire import statement (@​ljharb)
  • [no-invalid-html-attribute]: report more granularly (@​ljharb)
brianc/node-postgres (pg)

v8.11.3

Compare Source

colinhacks/zod (zod)

v3.22.1

Compare Source

Commits:

Fix handing of this in ZodFunction schemas. The parse logic for function schemas now requires the Reflect API.

const methodObject = z.object({
  property: z.number(),
  method: z.function().args(z.string()).returns(z.number()),
});
const methodInstance = {
  property: 3,
  method: function (s: string) {
    return s.length + this.property;
  },
};
const parsed = methodObject.parse(methodInstance);
parsed.method("length=8"); // => 11 (8 length + 3 property)

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 added automerge Enable Kodiak auto-merge dependencies Change in project dependencies. labels Aug 15, 2023
@renovate renovate bot requested a review from JoeKarow as a code owner August 15, 2023 20:01
@renovate renovate bot added the kodiak: merge.method = 'squash' Kodiak will squash merge this PR. label Aug 15, 2023
@ghost
Copy link

ghost commented Aug 15, 2023

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

Review these changes using an interactive CodeSee Map

Legend

CodeSee Map legend

@vercel
Copy link

vercel bot commented Aug 15, 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 Aug 17, 2023 2:03pm

@alwaysmeticulous
Copy link

alwaysmeticulous bot commented Aug 15, 2023

🤖 Meticulous spotted visual differences in 3 of 87 screens tested: view and approve differences detected.

Last updated for commit 00edc6a. This comment will update as new commits are pushed.

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from b11c9a1 to ce0fc36 Compare August 16, 2023 04:15
@renovate renovate bot changed the title chore(ui): update dependency zod to v3.22.1 chore(ui): update all non-major dependencies Aug 16, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from ce0fc36 to 0200703 Compare August 16, 2023 07:06
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 8ecfa42 to 00edc6a Compare August 17, 2023 14:01
@sonarcloud
Copy link

sonarcloud bot commented Aug 17, 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 d38f31a into dev Aug 17, 2023
13 of 14 checks passed
@kodiakhq kodiakhq bot deleted the renovate/all-minor-patch branch August 17, 2023 14:06
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