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

Merged
merged 2 commits into from
May 7, 2024
Merged

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented May 2, 2024

Mend Renovate

This PR contains the following updates:

Package Type Update Change OpenSSF Age Adoption Passing Confidence
@aws-sdk/client-cognito-identity-provider (source) dependencies minor 3.568.0 -> 3.569.0 OpenSSF Scorecard age adoption passing confidence
@iconify-json/ph devDependencies patch 1.1.12 -> 1.1.13 age adoption passing confidence
@opentelemetry/core (source) dependencies patch 1.24.0 -> 1.24.1 OpenSSF Scorecard age adoption passing confidence
@opentelemetry/exporter-trace-otlp-http (source) dependencies patch 0.51.0 -> 0.51.1 OpenSSF Scorecard age adoption passing confidence
@opentelemetry/instrumentation (source) dependencies patch 0.51.0 -> 0.51.1 OpenSSF Scorecard age adoption passing confidence
@opentelemetry/resources (source) dependencies patch 1.24.0 -> 1.24.1 OpenSSF Scorecard age adoption passing confidence
@opentelemetry/sdk-node (source) dependencies patch 0.51.0 -> 0.51.1 OpenSSF Scorecard age adoption passing confidence
@opentelemetry/sdk-trace-base (source) dependencies patch 1.24.0 -> 1.24.1 OpenSSF Scorecard age adoption passing confidence
@opentelemetry/sdk-trace-node (source) dependencies patch 1.24.0 -> 1.24.1 OpenSSF Scorecard age adoption passing confidence
@opentelemetry/semantic-conventions (source) dependencies patch 1.24.0 -> 1.24.1 OpenSSF Scorecard age adoption passing confidence
@playwright/test (source) devDependencies minor 1.43.1 -> 1.44.0 OpenSSF Scorecard age adoption passing confidence
@snaplet/seed devDependencies patch 0.97.6 -> 0.97.11 age adoption passing confidence
@swc/core (source) devDependencies patch 1.5.2 -> 1.5.3 OpenSSF Scorecard age adoption passing confidence
@turf/helpers dependencies patch 7.0.0-alpha.115 -> 7.0.0-alpha.116 OpenSSF Scorecard age adoption passing confidence
@turf/helpers devDependencies patch 7.0.0-alpha.115 -> 7.0.0-alpha.116 OpenSSF Scorecard age adoption passing confidence
@tweenjs/tween.js dependencies patch 23.1.1 -> 23.1.2 OpenSSF Scorecard age adoption passing confidence
@types/node (source) devDependencies patch 20.12.8 -> 20.12.10 OpenSSF Scorecard age adoption passing confidence
@types/pg (source) devDependencies patch 8.11.5 -> 8.11.6 OpenSSF Scorecard age adoption passing confidence
@typescript-eslint/eslint-plugin (source) devDependencies minor 7.7.1 -> 7.8.0 OpenSSF Scorecard age adoption passing confidence
@typescript-eslint/parser (source) devDependencies minor 7.7.1 -> 7.8.0 OpenSSF Scorecard age adoption passing confidence
chromatic (source) devDependencies patch 11.3.0 -> 11.3.1 OpenSSF Scorecard age adoption passing confidence
chromatic (source) dependencies patch 11.3.0 -> 11.3.1 OpenSSF Scorecard age adoption passing confidence
dotenv-cli devDependencies patch 7.4.1 -> 7.4.2 OpenSSF Scorecard age adoption passing confidence
knip (source) devDependencies minor 5.12.0 -> 5.13.0 OpenSSF Scorecard age adoption passing confidence
libphonenumber-js dependencies minor 1.10.61 -> 1.11.1 age adoption passing confidence
libphonenumber-js devDependencies minor 1.10.61 -> 1.11.1 age adoption passing confidence
msw-storybook-addon (source) devDependencies patch 2.0.0 -> 2.0.2 OpenSSF Scorecard age adoption passing confidence
node (source) minor 20.12.2 -> 20.13.0 OpenSSF Scorecard age adoption passing confidence
react-hook-form (source) peerDependencies patch 7.51.3 -> 7.51.4 OpenSSF Scorecard age adoption passing confidence
react-hook-form (source) devDependencies patch 7.51.3 -> 7.51.4 OpenSSF Scorecard age adoption passing confidence
react-hook-form (source) dependencies patch 7.51.3 -> 7.51.4 OpenSSF Scorecard age adoption passing confidence
tsx devDependencies minor 4.8.2 -> 4.9.3 OpenSSF Scorecard age adoption passing confidence
type-fest devDependencies patch 4.18.1 -> 4.18.2 OpenSSF Scorecard age adoption passing confidence
zod (source) devDependencies patch 3.23.5 -> 3.23.7 OpenSSF Scorecard age adoption passing confidence
zod (source) dependencies patch 3.23.5 -> 3.23.7 OpenSSF Scorecard age adoption passing confidence

Release Notes

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

v3.569.0

Compare Source

Bug Fixes
  • clients: add deps required by default credential providers (#​6055) (bfa8626)
open-telemetry/opentelemetry-js (@​opentelemetry/core)

v1.24.1

Compare Source

microsoft/playwright (@​playwright/test)

v1.44.0

Compare Source

New APIs

Accessibility assertions

  • expect(locator).toHaveAccessibleName() checks if the element has the specified accessible name:

    const locator = page.getByRole('button');
    await expect(locator).toHaveAccessibleName('Submit');
  • expect(locator).toHaveAccessibleDescription() checks if the element has the specified accessible description:

    const locator = page.getByRole('button');
    await expect(locator).toHaveAccessibleDescription('Upload a photo');
  • expect(locator).toHaveRole() checks if the element has the specified ARIA role:

    const locator = page.getByTestId('save-button');
    await expect(locator).toHaveRole('button');

Locator handler

  • After executing the handler added with page.addLocatorHandler(), Playwright will now wait until the overlay that triggered the handler is not visible anymore. You can opt-out of this behavior with the new noWaitAfter option.
  • You can use new times option in page.addLocatorHandler() to specify maximum number of times the handler should be run.
  • The handler in page.addLocatorHandler() now accepts the locator as argument.
  • New page.removeLocatorHandler() method for removing previously added locator handlers.
const locator = page.getByText('This interstitial covers the button');
await page.addLocatorHandler(locator, async overlay => {
  await overlay.locator('#close').click();
}, { times: 3, noWaitAfter: true });
// Run your tests that can be interrupted by the overlay.
// ...
await page.removeLocatorHandler(locator);

Miscellaneous options

  • multipart option in apiRequestContext.fetch() now accepts FormData and supports repeating fields with the same name.

    const formData = new FormData();
    formData.append('file', new File(['let x = 2024;'], 'f1.js', { type: 'text/javascript' }));
    formData.append('file', new File(['hello'], 'f2.txt', { type: 'text/plain' }));
    context.request.post('https://example.com/uploadFiles', {
      multipart: formData
    });
  • expect(callback).toPass({ intervals }) can now be configured by expect.toPass.inervals option globally in testConfig.expect or per project in testProject.expect.

  • expect(page).toHaveURL(url) now supports ignoreCase option.

  • testProject.ignoreSnapshots allows to configure per project whether to skip screenshot expectations.

Reporter API

  • New method suite.entries() returns child test suites and test cases in their declaration order. suite.type and testCase.type can be used to tell apart test cases and suites in the list.
  • Blob reporter now allows overriding report file path with a single option outputFile. The same option can also be specified as PLAYWRIGHT_BLOB_OUTPUT_FILE environment variable that might be more convenient on CI/CD.
  • JUnit reporter now supports includeProjectInTestName option.

Command line

  • --last-failed CLI option for running only tests that failed in the previous run.

    First run all tests:

    $ npx playwright test
    
    Running 103 tests using 5 workers
    ...
    2 failed
      [chromium] › my-test.spec.ts:8:5 › two ─────────────────────────────────────────────────────────
      [chromium] › my-test.spec.ts:13:5 › three ──────────────────────────────────────────────────────
    101 passed (30.0s)

    Now fix the failing tests and run Playwright again with --last-failed option:

    $ npx playwright test --last-failed
    
    Running 2 tests using 2 workers
      2 passed (1.2s)

Browser Versions

  • Chromium 125.0.6422.14
  • Mozilla Firefox 125.0.1
  • WebKit 17.4

This version was also tested against the following stable channels:

  • Google Chrome 124
  • Microsoft Edge 124
swc-project/swc (@​swc/core)

v1.5.3

Compare Source

Turfjs/turf (@​turf/helpers)

v7.0.0-alpha.116

Compare Source

tweenjs/tween.js (@​tweenjs/tween.js)

v23.1.2: - yo yo yo yo!

Compare Source

What's Changed

New Contributors

Full Changelog: tweenjs/tween.js@v23.1.1...v23.1.2

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

v7.8.0

Compare Source

🩹 Fixes
  • eslint-plugin: [no-unsafe-argument] handle tagged templates

  • eslint-plugin: [prefer-optional-chain] suggests optional chaining during strict null equality check

  • eslint-plugin: [consistent-type-assertions] handle tagged templates

  • eslint-plugin: [no-unsafe-return] handle union types

  • eslint-plugin: [no-unused-vars] clear error report range

❤️ Thank You
  • auvred
  • Josh Goldberg ✨
  • jsfm01
  • Kim Sang Du
  • YeonJuan

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

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

v7.8.0

Compare Source

This was a version bump only for parser to align it with other projects, there were no code changes.

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

chromaui/chromatic-cli (chromatic)

v11.3.1

Compare Source

🐛 Bug Fix
Authors: 1

entropitor/dotenv-cli (dotenv-cli)

v7.4.2

Compare Source

webpro/knip (knip)

v5.13.0

Compare Source

  • Update some (dev) dependencies (c612138)
  • Temporarily disable slonik integration test (67c03de)
  • Return empty source file for foreign files (resolves #​623) (dc2f508)
  • feat(plugins): add plugin for xo config (#​621) (96f91df)
  • Fresh project overview, auto-format (79cf631)

v5.12.3

Compare Source

v5.12.2

Compare Source

v5.12.1

Compare Source

  • Fix configFileDir in recursive config loader in eslint plugin (fixes #​570) (20e44c6)
  • Allow workspace patterns to be relative (fixes #​617) (6c71399)
catamphetamine/libphonenumber-js (libphonenumber-js)

v1.11.1

Compare Source

v1.11.0

Compare Source

====================

  • (TypeScript) Fixed Tagged type to be more strict, as suggested in an issue by Islam Sharabash.

v1.10.64

Compare Source

v1.10.63

Compare Source

v1.10.62

Compare Source

mswjs/msw-storybook-addon (msw-storybook-addon)

v2.0.2

Compare Source

🐛 Bug Fix
Authors: 1

v2.0.1

Compare Source

🐛 Bug Fix
Authors: 1

nodejs/node (node)

v20.13.0

Compare Source

react-hook-form/react-hook-form (react-hook-form)

v7.51.4: Version 7.51.4

Compare Source

👹 close #​11778 improve unregister omit key with getValues method (#​11779)
🐞 fix #​11794 issue: Fields dirty state is not updated when passing values to useForm

privatenumber/tsx (tsx)

v4.9.3

Compare Source

Bug Fixes

This release is also available on:

v4.9.2

Compare Source

Bug Fixes

This release is also available on:

v4.9.1

Compare Source

v4.9.0

Compare Source

sindresorhus/type-fest (type-fest)

v4.18.2

Compare Source

colinhacks/zod (zod)

v3.23.7

Compare Source

v3.23.6

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 May 2, 2024 21:59
@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 May 2, 2024
Copy link
Contributor

coderabbitai bot commented May 2, 2024

Important

Auto Review Skipped

Bot user detected.

To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.


Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?

Share
Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai generate interesting stats about this repository and render them as a table.
    • @coderabbitai show all the console.log statements in this repository.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (invoked as PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger a review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai help to get help.

Additionally, you can add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.

CodeRabbit Configration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

Copy link

vercel bot commented May 2, 2024

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 May 7, 2024 10:44pm

Copy link

socket-security bot commented May 2, 2024

New and removed dependencies detected. Learn more about Socket for GitHub ↗︎

Package New capabilities Transitives Size Publisher
npm/@aws-lambda-powertools/logger@1.18.1 Transitive: environment +1 167 kB aws-powertools-bot
npm/@crowdin/ota-client@1.0.0 Transitive: filesystem, network +8 2.21 MB andrii.bodnar
npm/@emotion/react@11.11.4 environment Transitive: filesystem +24 5.12 MB emotion-release-bot
npm/@emotion/server@11.11.0 environment +11 241 kB emotion-release-bot
npm/@hookform/devtools@4.3.1 environment Transitive: filesystem +23 6.82 MB bluebill1049
npm/@hookform/resolvers@3.3.4 None 0 554 kB bluebill1049
npm/@mantine/carousel@6.0.21 None 0 144 kB rtivital
npm/@mantine/core@6.0.21 Transitive: environment +20 9.25 MB rtivital
npm/@mantine/dates@6.0.21 environment 0 1.16 MB rtivital
npm/@mantine/form@6.0.21 None +1 233 kB rtivital
npm/@mantine/hooks@6.0.21 environment 0 563 kB rtivital
npm/@mantine/next@6.0.21 None +5 1.95 MB rtivital
npm/@mantine/notifications@6.0.21 Transitive: environment +1 343 kB rtivital
npm/@mantine/nprogress@6.0.21 None 0 45.8 kB rtivital
npm/@mantine/utils@6.0.21 None 0 86.4 kB rtivital
npm/@next/bundle-analyzer@14.2.3 Transitive: environment, filesystem, network, shell +15 2.14 MB vercel-release-bot
npm/@next/third-parties@14.2.3 None +1 65.8 kB vercel-release-bot
npm/@opentelemetry/core@1.24.1 None 0 0 B
npm/@opentelemetry/exporter-trace-otlp-http@0.51.1 None 0 0 B
npm/@opentelemetry/resources@1.24.1 None 0 0 B
npm/@opentelemetry/sdk-node@0.51.1 None 0 0 B
npm/@opentelemetry/sdk-trace-base@1.24.1 None 0 0 B
npm/@opentelemetry/sdk-trace-node@1.24.1 None 0 0 B
npm/@opentelemetry/semantic-conventions@1.24.1 None 0 0 B
npm/@playwright/test@1.44.0 None +1 3.07 MB yurys
npm/@prisma/client@5.13.0 environment, filesystem, shell 0 8.93 MB prismabot
npm/@prisma/instrumentation@5.13.0 environment Transitive: filesystem, shell, unsafe +8 4.45 MB prismabot
npm/@prisma/nextjs-monorepo-workaround-plugin@5.13.0 filesystem 0 18.2 kB prismabot
npm/@relative-ci/agent@4.2.7 environment, filesystem, shell Transitive: eval +14 2.18 MB relativeci-bot
npm/@sentry/browser@7.113.0 network +7 10.3 MB sentry-bot
npm/@sentry/integrations@7.113.0 Transitive: network +3 3.78 MB sentry-bot
npm/@sentry/nextjs@7.113.0 environment, filesystem, network Transitive: shell, unsafe +37 15.9 MB sentry-bot
npm/@sentry/node@7.113.0 environment, filesystem, network, shell, unsafe +4 7.03 MB sentry-bot
npm/@sentry/opentelemetry-node@7.113.0 Transitive: network +3 3.72 MB sentry-bot
npm/@sentry/opentelemetry@7.113.0 Transitive: network +3 4.04 MB sentry-bot
npm/@sentry/profiling-node@7.113.0 environment, filesystem, shell +2 3.34 MB sentry-bot
npm/@tanstack/react-query-devtools@4.36.1 environment +6 8.96 MB tannerlinsley
npm/@tanstack/react-query@4.36.1 environment +2 3.64 MB tannerlinsley
npm/@tanstack/react-table-devtools@8.16.0 None 0 443 kB tannerlinsley
npm/@tanstack/react-table@8.16.0 Transitive: environment +1 4.04 MB tannerlinsley
npm/@total-typescript/ts-reset@0.5.1 None 0 11.7 kB mpocock
npm/@trpc/client@10.45.2 network 0 253 kB katt
npm/@trpc/next@10.45.2 None 0 111 kB katt
npm/@trpc/react-query@10.45.2 None 0 285 kB katt
npm/@types/eslint@8.56.10 None +2 250 kB types
npm/@types/node@16.18.97 None 0 1.8 MB types
npm/@types/react-dom@18.3.0 None 0 37.8 kB types
npm/@types/react@18.3.1 None +1 444 kB types
npm/@typescript-eslint/eslint-plugin@7.8.0 None +14 6.24 MB jameshenry
npm/@typescript-eslint/parser@7.8.0 None +7 1.46 MB jameshenry
npm/@vercel/analytics@1.2.2 None 0 190 kB vercel-release-bot
npm/@vercel/edge-config@1.1.0 environment, network +2 297 kB vercel-release-bot
npm/@vercel/kv@1.0.1 environment Transitive: network +1 291 kB vercel-release-bot
npm/@vercel/speed-insights@1.0.10 None 0 272 kB vercel-release-bot
npm/@welldone-software/why-did-you-render@8.0.1 None 0 334 kB vzaidman
npm/aws-lambda@1.0.7 environment, filesystem, shell Transitive: eval, network +25 100 MB adrian.praja
npm/cookies-next@4.1.1 None +2 62.6 kB andreizanik
npm/embla-carousel-autoplay@7.1.0 None +1 412 kB davidjerleke
npm/embla-carousel-react@7.1.0 None +1 409 kB davidjerleke
npm/eslint-plugin-i18next@6.0.3 Transitive: filesystem +1 73.9 kB edvardchen
npm/eslint@8.57.0 environment, filesystem Transitive: eval, unsafe +59 9.99 MB eslintbot
npm/flat@6.0.1 None 0 12 kB jkoops
npm/i18next-chained-backend@4.6.2 None 0 60 kB adrai
npm/i18next-hmr@3.1.2 None 0 43.9 kB felixmosh
npm/i18next-http-backend@2.5.1 network +5 693 kB adrai
npm/i18next-intervalplural-postprocessor@3.0.0 None 0 27.1 kB jamuhl
npm/i18next-multiload-backend-adapter@2.3.0 None 0 43 kB adrai
npm/just-compare@2.3.0 None 0 9.26 kB angus-c
npm/mantine-react-table@1.3.4 environment +8 50.8 MB kevinvandy
npm/next-auth@4.24.7 environment, network +11 3.64 MB thvu
npm/next-i18next@15.3.0 environment, filesystem Transitive: eval +5 1.94 MB adrai
npm/next-seo@6.5.0 None 0 492 kB garymeehan
npm/next@14.2.3 environment, filesystem, network, shell, unsafe +20 1.2 GB vercel-release-bot
npm/nextjs-google-analytics@2.3.3 environment 0 27.5 kB mauriciorobayo
npm/nextjs-routes@2.1.0 Transitive: environment, filesystem +7 269 kB tatethurston
npm/object-sizeof@2.6.4 None +1 109 kB miktam
npm/pretty-bytes@6.1.1 None 0 11.3 kB sindresorhus
npm/prisma@5.13.0 environment Transitive: eval, filesystem, shell +5 14 MB prismabot
npm/react-dom@18.3.1 environment +2 4.61 MB react-bot
npm/react-error-boundary@4.0.13 None 0 32.8 kB brianvaughn
npm/react-hook-consent@3.5.3 Transitive: environment +7 2.18 MB lukaskupczyk
npm/react-hook-form-mantine@2.0.0 None 0 188 kB aranlucas
npm/react-hook-form@7.51.4 network 0 898 kB bluebill1049
npm/react-i18next@14.1.1 None +2 390 kB adrai
npm/react@18.3.1 environment +1 324 kB react-bot
npm/trpc-panel@1.3.4 filesystem Transitive: environment, eval +21 1.72 MB isaac_way_haystack
npm/trpc-playground@1.0.4 None +5 8.16 MB sachinraja
npm/webpack-bundle-analyzer@4.10.2 environment, filesystem, network Transitive: shell +14 2.13 MB valscion
npm/zod@3.23.7 None 0 0 B

🚮 Removed packages: npm/@types/node@18.19.32, npm/dotenv-expand@11.0.6, npm/dotenv@16.4.5, npm/husky@9.0.11, npm/nanoid@5.0.7, npm/prettier-plugin-packagejson@2.5.0, npm/prettier-plugin-prisma@5.0.0, npm/prettier@3.2.5, npm/pretty-ms@9.0.0, npm/resolve-pkg-maps@1.0.0, npm/slugify@1.6.6, npm/turbo@1.13.3, npm/type-fest@2.19.0, npm/typescript@5.4.5

View full report↗︎

Copy link
Contributor

github-actions bot commented May 2, 2024

📦 Next.js Bundle Analysis for @weareinreach/app

This analysis was generated by the Next.js Bundle Analysis action. 🤖

Five Pages Changed Size

The following pages changed size from the code in this PR compared to its base branch:

Page Size (compressed) First Load % of Budget (575 KB)
/org/[slug] 324.76 KB 726.32 KB 126.32% (🟡 +0.15%)
/org/[slug]/[orgLocationId] 319.17 KB 720.73 KB 125.34% (🟡 +0.14%)
/org/[slug]/[orgLocationId]/edit 320.31 KB 721.87 KB 125.54% (🟡 +0.14%)
/org/[slug]/edit 277.81 KB 679.37 KB 118.15% (🟡 +0.15%)
/org/[slug]/remote 279.89 KB 681.45 KB 118.51% (🟡 +0.14%)
Details

Only the gzipped size is provided here based on an expert tip.

First Load is the size of the global bundle plus the bundle for the individual page. If a user were to show up to your website and land on a given page, the first load size represents the amount of javascript that user would need to download. If next/link is used, subsequent page loads would only need to download that page's bundle (the number in the "Size" column), since the global bundle has already been downloaded.

Any third party scripts you have added directly to your app using the <script> tag are not accounted for in this analysis

The "Budget %" column shows what percentage of your performance budget the First Load total takes up. For example, if your budget was 100kb, and a given page's first load size was 10kb, it would be 10% of your budget. You can also see how much this has increased or decreased compared to the base branch of your PR. If this percentage has increased by 20% or more, there will be a red status indicator applied, indicating that special attention should be given to this. If you see "+/- <0.01%" it means that there was a change in bundle size, but it is a trivial enough amount that it can be ignored.

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 28ed1e9 to 135d1ef Compare May 3, 2024 01:35
@renovate renovate bot changed the title chore(eslint-config): update all non-major dependencies to v7.8.0 chore(eslint-config): update all non-major dependencies May 3, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 135d1ef to 46d1f39 Compare May 3, 2024 08:04
@renovate renovate bot changed the title chore(eslint-config): update all non-major dependencies chore(db): update all non-major dependencies May 3, 2024
Copy link

socket-security bot commented May 3, 2024

🚨 Potential security issues detected. Learn more about Socket for GitHub ↗︎

To accept the risk, merge this PR and you will not be notified again.

Alert Package NoteSource
Install scripts npm/@sentry/cli@1.77.3
  • Install script: install
  • Source: node ./scripts/install.js
Install scripts npm/@vercel/speed-insights@1.0.10
  • Install script: postinstall
  • Source: node scripts/postinstall.mjs
Install scripts npm/@prisma/engines@5.13.0
  • Install script: postinstall
  • Source: node scripts/postinstall.js
Install scripts npm/@prisma/client@5.13.0
  • Install script: postinstall
  • Source: node scripts/postinstall.js
Install scripts npm/prisma@5.13.0
  • Install script: preinstall
  • Source: node scripts/preinstall-entry.js
Telemetry npm/next@14.2.3
  • Note: Can be disabled by setting the environment variable NEXT_TELEMETRY_DISABLED=1 . See https://nextjs.org/telemetry for more information
Install scripts npm/@sentry/profiling-node@7.113.0
  • Install script: install
  • Source: node scripts/check-build.js
Install scripts npm/aws-sdk@2.1613.0
  • Install script: postinstall
  • Source: node scripts/warn-maintenance-mode.js

View full report↗︎

Next steps

What is an install script?

Install scripts are run when the package is installed. The majority of malware in npm is hidden in install scripts.

Packages should not be running non-essential scripts during install and there are often solutions to problems people solve with install scripts that can be run at publish time instead.

What is telemetry?

This package contains telemetry which tracks how it is used.

Most telemetry comes with settings to disable it. Consider disabling telemetry if you do not want to be tracked.

Take a deeper look at the dependency

Take a moment to review the security alert above. Review the linked package source code to understand the potential risk. Ensure the package is not malicious before proceeding. If you're unsure how to proceed, reach out to your security team or ask the Socket team for help at support [AT] socket [DOT] dev.

Remove the package

If you happen to install a dependency that Socket reports as Known Malware you should immediately remove it and select a different dependency. For other alert types, you may may wish to investigate alternative packages or consider if there are other ways to mitigate the specific risk posed by the dependency.

Mark a package as acceptable risk

To ignore an alert, reply with a comment starting with @SocketSecurity ignore followed by a space separated list of ecosystem/package-name@version specifiers. e.g. @SocketSecurity ignore npm/foo@1.0.0 or ignore all packages with @SocketSecurity ignore-all

  • @SocketSecurity ignore npm/@sentry/cli@1.77.3
  • @SocketSecurity ignore npm/@vercel/speed-insights@1.0.10
  • @SocketSecurity ignore npm/@prisma/engines@5.13.0
  • @SocketSecurity ignore npm/@prisma/client@5.13.0
  • @SocketSecurity ignore npm/prisma@5.13.0
  • @SocketSecurity ignore npm/next@14.2.3
  • @SocketSecurity ignore npm/@sentry/profiling-node@7.113.0
  • @SocketSecurity ignore npm/aws-sdk@2.1613.0

Copy link
Contributor

kodiakhq bot commented May 7, 2024

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>
Copy link

sonarcloud bot commented May 7, 2024

Quality Gate Passed Quality Gate passed

Issues
0 New issues
0 Accepted issues

Measures
0 Security Hotspots
No data about Coverage
0.0% Duplication on New Code

See analysis details on SonarCloud

Copy link

relativeci bot commented May 7, 2024

#349 Bundle Size — 3.37MiB (-0.2%).

b7e66fa(current) vs 38b39a9 dev#343(baseline)

Warning

Bundle contains 2 duplicate packages – View duplicate packages

Bundle metrics  Change 7 changes Improvement 2 improvements
                 Current
#349
     Baseline
#343
Improvement  Initial JS 2.98MiB(-0.25%) 2.98MiB
No change  Initial CSS 9.54KiB 9.54KiB
Change  Cache Invalidation 63.28% 36.7%
Change  Chunks 68(+1.49%) 67
Change  Assets 81(+1.25%) 80
Change  Modules 1969(-0.66%) 1982
Improvement  Duplicate Modules 270(-4.59%) 283
Change  Duplicate Code 8%(-2.56%) 8.21%
No change  Packages 207 207
No change  Duplicate Packages 2 2
Bundle size by type  Change 2 changes Regression 1 regression Improvement 1 improvement
                 Current
#349
     Baseline
#343
Improvement  JS 3.25MiB (-0.21%) 3.26MiB
No change  Fonts 94.54KiB 94.54KiB
Regression  Other 9.61KiB (+0.03%) 9.6KiB
No change  CSS 9.54KiB 9.54KiB
No change  IMG 8.57KiB 8.57KiB

Bundle analysis reportBranch renovate/all-minor-patchProject dashboard

Copy link

🤖 No test run has been triggered as your Meticulous project has been deactivated (since you haven't viewed any test results in a while). Click here to reactivate.

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

@kodiakhq kodiakhq bot merged commit a904ab5 into dev May 7, 2024
19 of 21 checks passed
@kodiakhq kodiakhq bot deleted the renovate/all-minor-patch branch May 7, 2024 22:46
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