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: bump the dependencies group with 10 updates #186

Merged

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 30, 2024

Bumps the dependencies group with 10 updates:

Package From To
@datadog/browser-rum 5.27.0 5.28.0
@prisma/client 5.19.1 5.20.0
@tanstack/react-query-devtools 5.56.2 5.58.0
@vercel/toolbar 0.1.20 0.1.22
lucide-react 0.445.0 0.446.0
mapbox-gl 3.6.0 3.7.0
next-auth 4.24.7 4.24.8
@types/node 22.6.1 22.7.4
@types/react 18.3.8 18.3.10
prisma 5.19.1 5.20.0

Updates @datadog/browser-rum from 5.27.0 to 5.28.0

Changelog

Sourced from @​datadog/browser-rum's changelog.

v5.28.0

Public Changes:

  • ✨ replace react-router wildcard routes with their actual path name (#3023) [RUM-REACT]
  • 🐛 fix to redirect v6-canary bundles urls to local dev bundles (#3021)

Internal Changes:

  • 👷 Update all non-major dependencies (#3030) [RUM-REACT]
  • 👷 Bump staging to staging-39
  • 👷 Bump webpack from 5.76.0 to 5.94.0 in /test/app (#3013)
  • ♻️ [RUM-6278] Use performance observer for layout shift entries (#3028) [RUM] [RUM-SLIM]
  • ✨ [RUM 4813] Remove feature flag for view specific context (#3031) [LOGS] [RUM] [RUM-SLIM] [WORKER]
  • 🐛 fix to redirect v6-canary bundles urls to local dev bundles (#3021)
  • 👷 [RUM 6237] Add e2e test for view context API init (#3025)
  • ♻️ [RUM-6188] Use performanceObserver for first input and event entries (#2995) [RUM] [RUM-SLIM]
  • ♻️ [RUM-6184] Use performanceObserver for paint entries (#2991) [RUM] [RUM-SLIM]
  • ✨ Increase INITIALIZATION_TIME_OUT_DELAY (#3017) [RUM]
Commits

Updates @prisma/client from 5.19.1 to 5.20.0

Release notes

Sourced from @​prisma/client's releases.

5.20.0

🌟 Help us spread the word about Prisma by starring the repo or posting on X about the release. 🌟

Highlights

strictUndefinedChecks in Preview

With Prisma ORM 5.20.0, the Preview feature strictUndefinedChecks will disallow any value that is explicitly undefined and will be a runtime error. This change is direct feedback from this GitHub issue and follows our latest proposal on the same issue.

To demonstrate the change, take the following code snippet:

prisma.table.deleteMany({
  where: {
    // If `nullableThing` is nullish, this query will remove all data.
    email: nullableThing?.property,
  }
})

In Prisma ORM 5.19.0 and below, this could result in unintended behavior. In Prisma ORM 5.20.0, if the strictUndefinedChecks Preview feature is enabled, you will get a runtime error instead:

Invalid \`prisma.user.findMany()\` invocation in
/client/tests/functional/strictUndefinedChecks/test.ts:0:0
  XX })
  XX 
  XX test('throws on undefined input field', async () => {
→ XX   const result = prisma.user.deleteMany({
         where: {
           email: undefined
                  ~~~~~~~~~
         }
       })
Invalid value for argument \`where\`: explicitly \`undefined\` values are not allowed."

We have also introduced the Prisma.skip symbol, which will allow you to get the previous behavior if desired.

prisma.table.findMany({
  where: {
    // Use Prisma.skip to skip parts of the query
    email: nullableEmail ?? Prisma.skip
  }
})

From Prisma ORM 5.20.0 onward, we recommend enabling strictUndefinedChecks, along with the TypeScript compiler option exactOptionalPropertyTypes, which will help catch cases of undefined values at compile time. Together, these two changes will help protect your Prisma queries from potentially destructive behavior.

... (truncated)

Commits
  • bf237ff chore(deps): update engines to 5.20.0-12.06fc58a368dc7be9fbbbe894adf8d445d208...
  • b2c080e test(e2e): Update types in e2e tests (#25263)
  • 100c926 feat(typed-sql): Support enum names that are not valid JS identifiers (#25262)
  • ce11a90 feat(client): implement strictUndefinedChecks (#25224)
  • 9810341 chore(deps): update engines to 5.20.0-8.c9ff5773c72b821ff6daf2c55dbe3809eae7c...
  • def5747 chore(e2e): Update next.js to 14 in "schema-not-found" suite (#25197)
  • 47e8f13 feat(driver-adapters): add TransactionContext (#24878)
  • cfd2791 chore: add explicit ts-toolbelt dependency, only use "import type" to avoid b...
  • 08a1733 fix(client): .$extends prevents typescript documentation (#25070)
  • ff16728 chore(deps): update engines to 5.20.0-4.f2561ec470647d6a14db84d3c1dc6fc1c2414...
  • Additional commits viewable in compare view

Updates @tanstack/react-query-devtools from 5.56.2 to 5.58.0

Release notes

Sourced from @​tanstack/react-query-devtools's releases.

v5.58.0

Version 5.58.0 - 9/25/24, 1:40 AM

Changes

Feat

  • query-devtools: Add bulk edit option for simple objects and arrays (#8095) (f7a82c4) by Aryan Deora

Packages

  • @​tanstack/query-devtools@​5.58.0
  • @​tanstack/react-query-devtools@​5.58.0
  • @​tanstack/solid-query-devtools@​5.58.0
  • @​tanstack/svelte-query-devtools@​5.58.0
  • @​tanstack/vue-query-devtools@​5.58.0
  • @​tanstack/angular-query-devtools-experimental@​5.58.0

v5.57.2

Version 5.57.2 - 9/24/24, 6:13 PM

Changes

Fix

  • eslint-plugin-query: correctly handle call-expression spread (#8090) (f1aab70) by Manuel Schiller

Docs

  • react-query: fix queryClient description of useMutation and use… (#8077) (9da00d6) by @​baeharam
  • Don"t use $ prefix in Bash examples (#8067) (1104948) by Peter Bengtsson

Packages

  • @​tanstack/eslint-plugin-query@​5.57.2

v5.57.1

Version 5.57.1 - 9/21/24, 9:15 AM

Changes

Fix

  • eslint-plugin-query: relax property order rule to ignore relative order of getPreviousPageParam and getNextPageParam (#8074) (1793e06) by Manuel Schiller

Packages

  • @​tanstack/eslint-plugin-query@​5.57.1

v5.57.0

... (truncated)

Commits

Updates @vercel/toolbar from 0.1.20 to 0.1.22

Updates lucide-react from 0.445.0 to 0.446.0

Release notes

Sourced from lucide-react's releases.

New icons 0.446.0

New icons 🎨

Commits

Updates mapbox-gl from 3.6.0 to 3.7.0

Release notes

Sourced from mapbox-gl's releases.

v3.7.0

Features and improvements ✨

  • Add background-pitch-alignment property of the background layer, which is set to map by default but can now be set to viewport. Useful for highlighting individual features by dimming the rest of the map with a semitransparent background.
  • Add new control positions (top, right, bottom, and left) (h/t @​Ethan-Guttman).
  • Add retainPadding option for camera movement methods, which can be set to false for pre-v3.4 padding behavior.
  • Add config expression support in layer filter.
  • Add symbol elevation properties: symbol-z-offset and symbol-elevation-reference.
  • Add the fill-z-offset property for fill layers.
  • Improve Map#fitBounds for the alternative projections.
  • Improve terrain hillshade lighting anchored to viewport.
  • Improve shadow casting from 3D models.
  • Improve error messages for invalid expressions.
  • Skip landmarks rendering when the camera is inside them.
  • Improve type checking for the Map#setPaintProperty and Map#setLayoutProperty methods.
  • Allow the string event type in Map event handlers.
  • Expose RequestTransformFunction, ResourceType, and RequestParameters types.
  • Improve texture memory footprint on some platforms.

Bug fixes 🐞

  • Fix feature filtering when using 3D lights.
  • Fix pattern rendering issues on some devices at high zoom levels.
  • Fix fill-extrusion-line-width rendering for large polygons
  • Fix symbol placement ordering when symbol-z-order is set to auto.
  • Fix the issue where minzoom and maxzoom properties were ignored by clip layers.
  • Fix handling previously hidden models in clip layers.
  • Fix directional light cast-shadows property type.
  • Fix an edge case that could produce setStencilMode-related error in the console with the dev build.
  • Fix an issue where some fill extrusions could temporarily disappear when zooming quickly in certain areas.
  • Fix an edge case that could cause flickering on a far plane on high zooms.

v3.7.0-beta.1

Features and improvements ✨

  • Add config expression support in layer filter.
  • Add symbol elevation properties: symbol-z-offset and symbol-elevation-reference.
  • Add the fill-z-offset property for fill layers.
  • Improve Map#fitBounds for the alternative projections.
  • Improve terrain hillshade lighting anchored to viewport.
  • Improve shadow casting from 3D models.
  • Improve error messages for invalid expressions.
  • Skip landmarks rendering when the camera is inside them.
  • Improve type checking for the Map#setPaintProperty and Map#setLayoutProperty methods.
  • Allow the string event type in Map event handlers.
  • Expose RequestTransformFunction, ResourceType, and RequestParameters types.

Bug fixes 🐞

  • Fix feature filtering when using 3D lights.
  • Fix pattern rendering issues on some devices at high zoom levels.
  • Fix fill-extrusion-line-width rendering for large polygons

... (truncated)

Changelog

Sourced from mapbox-gl's changelog.

v3.7.0

Features and improvements ✨

  • Add background-pitch-alignment property of the background layer, which is set to map by default but can now be set to viewport. Useful for highlighting individual features by dimming the rest of the map with a semitransparent background.
  • Add new control positions (top, right, bottom, and left) (h/t @​Ethan-Guttman).
  • Add retainPadding option for camera movement methods, which can be set to false for pre-v3.4 padding behavior.
  • Add config expression support in layer filter.
  • Add symbol elevation properties: symbol-z-offset and symbol-elevation-reference.
  • Add the fill-z-offset property for fill layers.
  • Improve Map#fitBounds for the alternative projections.
  • Improve terrain hillshade lighting anchored to viewport.
  • Improve shadow casting from 3D models.
  • Improve error messages for invalid expressions.
  • Skip landmarks rendering when the camera is inside them.
  • Improve type checking for the Map#setPaintProperty and Map#setLayoutProperty methods.
  • Allow the string event type in Map event handlers.
  • Expose RequestTransformFunction, ResourceType, and RequestParameters types.
  • Improve texture memory footprint on some platforms.

Bug fixes 🐞

  • Fix feature filtering when using 3D lights.
  • Fix pattern rendering issues on some devices at high zoom levels.
  • Fix fill-extrusion-line-width rendering for large polygons
  • Fix symbol placement ordering when symbol-z-order is set to auto.
  • Fix the issue where minzoom and maxzoom properties were ignored by clip layers.
  • Fix handling previously hidden models in clip layers.
  • Fix directional light cast-shadows property type.
  • Fix an edge case that could produce setStencilMode-related error in the console with the dev build.
  • Fix an issue where some fill extrusions could temporarily disappear when zooming quickly in certain areas.
  • Fix an edge case that could cause flickering on a far plane on high zooms.
Commits
  • 732345f v3.7.0
  • b8fc19d Fixed pitch movement detection (internal-1879)
  • 67672bc [MAPS3D-1467] Fix precision related flickering on far plane (internal-1876)
  • 8abc9f4 Adding a new render test for a broken case in GL Native (internal-1874)
  • ba5217d Remove iOS and Android from basic func list (internal-1790)
  • d444092 [GLJS-952] Add retainPadding for camera movements options (internal-1851)
  • 17cb96d Fix disappearing fill extrusions in zoom happening with conflation (internal-...
  • ee0df04 Bump playwright from 1.47.1 to 1.47.2 (internal-1866)
  • dffe0f1 Bump @​types/node from 22.5.5 to 22.6.1 (internal-1869)
  • fffe2ac Bump esbuild from 0.23.1 to 0.24.0 (internal-1868)
  • Additional commits viewable in compare view

Updates next-auth from 4.24.7 to 4.24.8

Release notes

Sourced from next-auth's releases.

[email protected]

What's Changed

New Contributors

Full Changelog: https://github.com/nextauthjs/next-auth/compare/[email protected]@4.24.8

Commits
  • 28af288 chore(release): bump version [skip ci]
  • beb5384 chore: update lock file
  • 246a4d1 fix(providers): allow optional identifier param
  • e0a7d71 fix(providers): optionally check identifier
  • d66ee42 fix(docs): link to getting email for auth'ed user in github endpoint (#11896)
  • 31d827a fix: tweak email flow, change homepage
  • 49675a2 docs: Update security.md
  • b8d86cc chore(v4): update azure-ad.md (#11855)
  • 780c8dc chore(v4): fix readme sponsors table (#11842)
  • 33a5dea chore(docs-v4): add route4me to sponsors page (#11841)
  • Additional commits viewable in compare view

Updates @types/node from 22.6.1 to 22.7.4

Commits

Updates @types/react from 18.3.8 to 18.3.10

Commits

Updates prisma from 5.19.1 to 5.20.0

Release notes

Sourced from prisma's releases.

5.20.0

🌟 Help us spread the word about Prisma by starring the repo or posting on X about the release. 🌟

Highlights

strictUndefinedChecks in Preview

With Prisma ORM 5.20.0, the Preview feature strictUndefinedChecks will disallow any value that is explicitly undefined and will be a runtime error. This change is direct feedback from this GitHub issue and follows our latest proposal on the same issue.

To demonstrate the change, take the following code snippet:

prisma.table.deleteMany({
  where: {
    // If `nullableThing` is nullish, this query will remove all data.
    email: nullableThing?.property,
  }
})

In Prisma ORM 5.19.0 and below, this could result in unintended behavior. In Prisma ORM 5.20.0, if the strictUndefinedChecks Preview feature is enabled, you will get a runtime error instead:

Invalid \`prisma.user.findMany()\` invocation in
/client/tests/functional/strictUndefinedChecks/test.ts:0:0
  XX })
  XX 
  XX test('throws on undefined input field', async () => {
→ XX   const result = prisma.user.deleteMany({
         where: {
           email: undefined
                  ~~~~~~~~~
         }
       })
Invalid value for argument \`where\`: explicitly \`undefined\` values are not allowed."

We have also introduced the Prisma.skip symbol, which will allow you to get the previous behavior if desired.

prisma.table.findMany({
  where: {
    // Use Prisma.skip to skip parts of the query
    email: nullableEmail ?? Prisma.skip
  }
})

From Prisma ORM 5.20.0 onward, we recommend enabling strictUndefinedChecks, along with the TypeScript compiler option exactOptionalPropertyTypes, which will help catch cases of undefined values at compile time. Together, these two changes will help protect your Prisma queries from potentially destructive behavior.

... (truncated)

Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the dependencies group with 10 updates:

| Package | From | To |
| --- | --- | --- |
| [@datadog/browser-rum](https://github.com/DataDog/browser-sdk/tree/HEAD/packages/rum) | `5.27.0` | `5.28.0` |
| [@prisma/client](https://github.com/prisma/prisma/tree/HEAD/packages/client) | `5.19.1` | `5.20.0` |
| [@tanstack/react-query-devtools](https://github.com/TanStack/query/tree/HEAD/packages/react-query-devtools) | `5.56.2` | `5.58.0` |
| [@vercel/toolbar](https://vercel.com) | `0.1.20` | `0.1.22` |
| [lucide-react](https://github.com/lucide-icons/lucide/tree/HEAD/packages/lucide-react) | `0.445.0` | `0.446.0` |
| [mapbox-gl](https://github.com/mapbox/mapbox-gl-js) | `3.6.0` | `3.7.0` |
| [next-auth](https://github.com/nextauthjs/next-auth) | `4.24.7` | `4.24.8` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `22.6.1` | `22.7.4` |
| [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `18.3.8` | `18.3.10` |
| [prisma](https://github.com/prisma/prisma/tree/HEAD/packages/cli) | `5.19.1` | `5.20.0` |


Updates `@datadog/browser-rum` from 5.27.0 to 5.28.0
- [Changelog](https://github.com/DataDog/browser-sdk/blob/main/CHANGELOG.md)
- [Commits](https://github.com/DataDog/browser-sdk/commits/v5.28.0/packages/rum)

Updates `@prisma/client` from 5.19.1 to 5.20.0
- [Release notes](https://github.com/prisma/prisma/releases)
- [Commits](https://github.com/prisma/prisma/commits/5.20.0/packages/client)

Updates `@tanstack/react-query-devtools` from 5.56.2 to 5.58.0
- [Release notes](https://github.com/TanStack/query/releases)
- [Commits](https://github.com/TanStack/query/commits/v5.58.0/packages/react-query-devtools)

Updates `@vercel/toolbar` from 0.1.20 to 0.1.22

Updates `lucide-react` from 0.445.0 to 0.446.0
- [Release notes](https://github.com/lucide-icons/lucide/releases)
- [Commits](https://github.com/lucide-icons/lucide/commits/0.446.0/packages/lucide-react)

Updates `mapbox-gl` from 3.6.0 to 3.7.0
- [Release notes](https://github.com/mapbox/mapbox-gl-js/releases)
- [Changelog](https://github.com/mapbox/mapbox-gl-js/blob/main/CHANGELOG.md)
- [Commits](mapbox/mapbox-gl-js@v3.6.0...v3.7.0)

Updates `next-auth` from 4.24.7 to 4.24.8
- [Release notes](https://github.com/nextauthjs/next-auth/releases)
- [Commits](https://github.com/nextauthjs/next-auth/compare/[email protected]@4.24.8)

Updates `@types/node` from 22.6.1 to 22.7.4
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

Updates `@types/react` from 18.3.8 to 18.3.10
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react)

Updates `prisma` from 5.19.1 to 5.20.0
- [Release notes](https://github.com/prisma/prisma/releases)
- [Commits](https://github.com/prisma/prisma/commits/5.20.0/packages/cli)

---
updated-dependencies:
- dependency-name: "@datadog/browser-rum"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@prisma/client"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@tanstack/react-query-devtools"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@vercel/toolbar"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: lucide-react
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: mapbox-gl
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: next-auth
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@types/react"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: prisma
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Sep 30, 2024
Copy link

vercel bot commented Sep 30, 2024

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
100-cims ✅ Ready (Inspect) Visit Preview 💬 Add feedback Sep 30, 2024 10:51pm

@github-actions github-actions bot enabled auto-merge (squash) September 30, 2024 22:49
@github-actions github-actions bot merged commit 6d5fb01 into main Sep 30, 2024
7 checks passed
@github-actions github-actions bot deleted the dependabot/npm_and_yarn/dependencies-46607146bd branch September 30, 2024 22:53
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants