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(app): update all non-major dependencies #672

Merged
merged 1 commit into from
Jul 20, 2023
Merged

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jul 18, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@aws-sdk/client-s3 (source) 3.370.0 -> 3.373.0 age adoption passing confidence dependencies minor
@sentry/nextjs (source) 7.59.2 -> 7.59.3 age adoption passing confidence dependencies patch
@trpc/client (source) 10.34.0 -> 10.35.0 age adoption passing confidence peerDependencies minor
@trpc/client (source) 10.34.0 -> 10.35.0 age adoption passing confidence devDependencies minor
@trpc/client (source) 10.34.0 -> 10.35.0 age adoption passing confidence dependencies minor
@trpc/next (source) 10.34.0 -> 10.35.0 age adoption passing confidence peerDependencies minor
@trpc/next (source) 10.34.0 -> 10.35.0 age adoption passing confidence devDependencies minor
@trpc/next (source) 10.34.0 -> 10.35.0 age adoption passing confidence dependencies minor
@trpc/react-query (source) 10.34.0 -> 10.35.0 age adoption passing confidence peerDependencies minor
@trpc/react-query (source) 10.34.0 -> 10.35.0 age adoption passing confidence devDependencies minor
@trpc/react-query (source) 10.34.0 -> 10.35.0 age adoption passing confidence dependencies minor
@trpc/server (source) 10.34.0 -> 10.35.0 age adoption passing confidence dependencies minor
@types/umami (source) 0.1.1 -> 0.1.2 age adoption passing confidence devDependencies patch
esbuild 0.18.14 -> 0.18.15 age adoption passing confidence devDependencies patch
eslint-plugin-storybook 0.6.12 -> 0.6.13 age adoption passing confidence devDependencies patch
eslint-plugin-turbo 1.10.8 -> 1.10.9 age adoption passing confidence devDependencies patch
msw (source) 1.2.2 -> 1.2.3 age adoption passing confidence devDependencies patch
next-auth (source) 4.22.1 -> 4.22.3 age adoption passing confidence devDependencies patch
next-auth (source) 4.22.1 -> 4.22.3 age adoption passing confidence dependencies patch
node 18.16.1 -> 18.17.0 age adoption passing confidence minor
turbo (source) 1.10.8 -> 1.10.9 age adoption passing confidence dependencies patch

Release Notes

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

v3.373.0

Compare Source

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

getsentry/sentry-javascript (@​sentry/nextjs)

v7.59.3

Compare Source

  • fix(browser): 0 is a valid index (#​8581)
  • fix(nextjs): Ensure Webpack plugin is available after dynamic require (#​8584)
  • types(browser): Add browser profiling client options (#​8565)
trpc/trpc (@​trpc/client)

v10.35.0

Compare Source

What's Changed

Full Changelog: trpc/trpc@v10.34.1...v10.35.0

v10.34.1

Compare Source

What's Changed
New Contributors

Full Changelog: trpc/trpc@v10.34.0...v10.34.1

evanw/esbuild (esbuild)

v0.18.15

Compare Source

  • Add the --serve-fallback= option (#​2904)

    The web server built into esbuild serves the latest in-memory results of the configured build. If the requested path doesn't match any in-memory build result, esbuild also provides the --servedir= option to tell esbuild to serve the requested path from that directory instead. And if the requested path doesn't match either of those things, esbuild will either automatically generate a directory listing (for directories) or return a 404 error.

    Starting with this release, that last step can now be replaced with telling esbuild to serve a specific HTML file using the --serve-fallback= option. This can be used to provide a "not found" page for missing URLs. It can also be used to implement a single-page app that mutates the current URL and therefore requires the single app entry point to be served when the page is loaded regardless of whatever the current URL is.

  • Use the tsconfig field in package.json during extends resolution (#​3247)

    This release adds a feature from TypeScript 3.2 where if a tsconfig.json file specifies a package name in the extends field and that package's package.json file has a tsconfig field, the contents of that field are used in the search for the base tsconfig.json file.

  • Implement CSS nesting without :is() when possible (#​1945)

    Previously esbuild would always produce a warning when transforming nested CSS for a browser that doesn't support the :is() pseudo-class. This was because the nesting transform needs to generate an :is() in some complex cases which means the transformed CSS would then not work in that browser. However, the CSS nesting transform can often be done without generating an :is(). So with this release, esbuild will no longer warn when targeting browsers that don't support :is() in the cases where an :is() isn't needed to represent the nested CSS.

    In addition, esbuild's nested CSS transform has been updated to avoid generating an :is() in cases where an :is() is preferable but there's a longer alternative that is also equivalent. This update means esbuild can now generate a combinatorial explosion of CSS for complex CSS nesting syntax when targeting browsers that don't support :is(). This combinatorial explosion is necessary to accurately represent the original semantics. For example:

    /* Original code */
    .first,
    .second,
    .third {
      & > & {
        color: red;
      }
    }
    
    /* Old output (with --target=chrome80) */
    :is(.first, .second, .third) > :is(.first, .second, .third) {
      color: red;
    }
    
    /* New output (with --target=chrome80) */
    .first > .first,
    .first > .second,
    .first > .third,
    .second > .first,
    .second > .second,
    .second > .third,
    .third > .first,
    .third > .second,
    .third > .third {
      color: red;
    }

    This change means you can now use CSS nesting with esbuild when targeting an older browser that doesn't support :is(). You'll now only get a warning from esbuild if you use complex CSS nesting syntax that esbuild can't represent in that older browser without using :is(). There are two such cases:

    /* Case 1 */
    a b {
      .foo & {
        color: red;
      }
    }
    
    /* Case 2 */
    a {
      > b& {
        color: red;
      }
    }

    These two cases still need to use :is(), both for different reasons, and cannot be used when targeting an older browser that doesn't support :is():

    /* Case 1 */
    .foo :is(a b) {
      color: red;
    }
    
    /* Case 2 */
    a > a:is(b) {
      color: red;
    }
  • Automatically lower inset in CSS for older browsers

    With this release, esbuild will now automatically expand the inset property to the top, right, bottom, and left properties when esbuild's target is set to a browser that doesn't support inset:

    /* Original code */
    .app {
      position: absolute;
      inset: 10px 20px;
    }
    
    /* Old output (with --target=chrome80) */
    .app {
      position: absolute;
      inset: 10px 20px;
    }
    
    /* New output (with --target=chrome80) */
    .app {
      position: absolute;
      top: 10px;
      right: 20px;
      bottom: 10px;
      left: 20px;
    }
  • Add support for the new @starting-style CSS rule (#​3249)

    This at rule allow authors to start CSS transitions on first style update. That is, you can now make the transition take effect when the display property changes from none to block.

    /* Original code */
    @​starting-style {
      h1 {
        background-color: transparent;
      }
    }
    
    /* Output */
    @​starting-style{h1{background-color:transparent}}

    This was contributed by @​yisibl.

storybookjs/eslint-plugin-storybook (eslint-plugin-storybook)

v0.6.13

Compare Source

⚠️ Pushed to main
Authors: 1

vercel/turbo (eslint-plugin-turbo)

v1.10.9: Turborepo v1.10.9

Compare Source

What's Changed

Changelog

New Contributors

Full Changelog: vercel/turborepo@v1.10.8...v1.10.9

mswjs/msw (msw)

v1.2.3

Compare Source

v1.2.3 (2023-07-20)
Bug Fixes

v1.2.2

Compare Source

v1.2.2 (2023-06-09)

Bug Fixes
nextauthjs/next-auth (next-auth)

v4.22.3

Compare Source

Full Changelog: https://github.com/nextauthjs/next-auth/compare/next-auth@4.22.2...next-auth@4.22.3

v4.22.2

Compare Source

Bugfixes

Other

  • remove unused TS types
  • merge changes back to v4 (#​7430)
  • rephrase
nodejs/node (node)

v18.17.0: 2023-07-18, Version 18.17.0 'Hydrogen' (LTS), @​danielleadams

Compare Source

Notable Changes
Ada 2.0

Node.js v18.17.0 comes with the latest version of the URL parser, Ada. This update brings significant performance improvements
to URL parsing, including enhancements to the url.domainToASCII and url.domainToUnicode functions in node:url.

Ada 2.0 has been integrated into the Node.js codebase, ensuring that all parts of the application can benefit from the
improved performance. Additionally, Ada 2.0 features a significant performance boost over its predecessor, Ada 1.0.4,
while also eliminating the need for the ICU requirement for URL hostname parsing.

Contributed by Yagiz Nizipli and Daniel Lemire in #​47339

Web Crypto API

Web Crypto API functions' arguments are now coerced and validated as per their WebIDL definitions like in other Web Crypto API implementations.
This further improves interoperability with other implementations of Web Crypto API.

Contributed by Filip Skokan in #​46067

  • crypto:
    • update root certificates to NSS 3.89 (Node.js GitHub Bot) #​47659
  • dns:
    • (SEMVER-MINOR) expose getDefaultResultOrder (btea) #​46973
  • doc:
    • add ovflowd to collaborators (Claudio Wunder) #​47844
    • add KhafraDev to collaborators (Matthew Aitken) #​47510
  • events:
    • (SEMVER-MINOR) add getMaxListeners method (Matthew Aitken) #​47039
  • fs:
    • (SEMVER-MINOR) add support for mode flag to specify the copy behavior (Tetsuharu Ohzeki) #​47084
    • (SEMVER-MINOR) add recursive option to readdir and opendir (Ethan Arrowood) #​41439
    • (SEMVER-MINOR) add support for mode flag to specify the copy behavior (Tetsuharu Ohzeki) #​47084
    • (SEMVER-MINOR) implement byob mode for readableWebStream() (Debadree Chatterjee) #​46933
  • http:
    • (SEMVER-MINOR) prevent writing to the body when not allowed by HTTP spec (Gerrard Lindsay) #​47732
    • (SEMVER-MINOR) remove internal error in assignSocket (Matteo Collina) #​47723
    • (SEMVER-MINOR) add highWaterMark opt in http.createServer (HinataKah0) #​47405
  • lib:
    • (SEMVER-MINOR) add webstreams to Duplex.from() (Debadree Chatterjee) #​46190
    • (SEMVER-MINOR) implement AbortSignal.any() (Chemi Atlow) #​47821
  • module:
    • change default resolver to not throw on unknown scheme (Gil Tayar) #​47824
  • node-api:
    • (SEMVER-MINOR) define version 9 (Chengzhong Wu) #​48151
    • (SEMVER-MINOR) deprecate napi_module_register (Vladimir Morozov) #​46319
  • stream:
    • (SEMVER-MINOR) preserve object mode in compose (Raz Luvaton) #​47413
    • (SEMVER-MINOR) add setter & getter for default highWaterMark (#​46929) (Robert Nagy) #​46929
  • test:
    • unflake test-vm-timeout-escape-nexttick (Santiago Gimeno) #​48078
  • test_runner:
    • (SEMVER-MINOR) add shorthands to test (Chemi Atlow) #​47909
    • (SEMVER-MINOR) support combining coverage reports (Colin Ihrig) #​47686
    • (SEMVER-MINOR) execute before hook on test (Chemi Atlow) #​47586
    • (SEMVER-MINOR) expose reporter for use in run api (Chemi Atlow) #​47238
  • tools:
    • update LICENSE and license-builder.sh (Santiago Gimeno) #​48078
  • url:
    • (SEMVER-MINOR) implement URL.canParse (Matthew Aitken) #​47179
  • wasi:
    • (SEMVER-MINOR) no longer require flag to enable wasi (Michael Dawson) #​47286
Commits

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 18, 2023 14:11
@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 18, 2023
@vercel
Copy link

vercel bot commented Jul 18, 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 20, 2023 3:09pm

@ghost
Copy link

ghost commented Jul 18, 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 changed the title chore(ui): update dependency next-auth to v4.22.2 chore(ui): update all non-major dependencies Jul 18, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from b2ca2ac to 0444cc9 Compare July 18, 2023 20:16
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 0444cc9 to 8bb6ca8 Compare July 18, 2023 22:30
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 8bb6ca8 to 446b9f5 Compare July 19, 2023 13:07
@renovate renovate bot changed the title chore(ui): update all non-major dependencies chore(app): update all non-major dependencies Jul 19, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 446b9f5 to bbd8fca Compare July 19, 2023 14:53
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from bbd8fca to 94a9120 Compare July 19, 2023 17:23
@renovate renovate bot changed the title chore(app): update all non-major dependencies fix(app): update all non-major dependencies Jul 19, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 94a9120 to df18c17 Compare July 19, 2023 18:21
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from df18c17 to f7646db Compare July 19, 2023 21:06
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from f7646db to 540bf7e Compare July 20, 2023 10:14
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
@sonarcloud
Copy link

sonarcloud bot commented Jul 20, 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 9166845 into dev Jul 20, 2023
13 checks passed
@kodiakhq kodiakhq bot deleted the renovate/all-minor-patch branch July 20, 2023 16:58
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