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 across 1 directory with 33 updates #140

Closed

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Apr 29, 2024

Bumps the dependencies group with 33 updates in the / directory:

Package From To
@datadog/browser-rum 5.10.0 5.16.0
@prisma/client 5.9.1 5.13.0
@tanstack/react-query 5.18.1 5.32.0
@tanstack/react-query-devtools 5.18.1 5.32.0
@tanstack/react-table 8.11.8 8.16.0
@vercel/analytics 1.1.2 1.2.2
@vercel/speed-insights 1.0.9 1.0.10
clsx 2.1.0 2.1.1
lucide-react 0.321.0 0.376.0
mapbox-gl 3.1.2 3.3.0
@types/mapbox-gl 2.7.20 3.1.0
next 14.1.0 14.2.3
next-auth 4.24.5 4.24.7
nodemailer 6.9.9 6.9.13
playwright 1.41.2 1.43.1
react 18.2.0 18.3.1
@types/react 18.2.51 18.3.1
react-dom 18.2.0 18.3.1
@types/react-dom 18.2.18 18.3.0
tailwind-merge 2.2.1 2.3.0
tailwindcss 3.4.1 3.4.3
zod 3.22.4 3.23.5
@datadog/datadog-ci 2.31.2 2.34.0
@playwright/test 1.41.2 1.43.1
@testing-library/jest-dom 6.4.1 6.4.2
@types/node 20.11.16 20.12.7
autoprefixer 10.4.17 10.4.19
dotenv 16.4.1 16.4.5
eslint-config-next 14.1.0 14.2.3
postcss 8.4.33 8.4.38
prettier 3.2.4 3.2.5
prisma 5.9.1 5.13.0
typescript 5.3.3 5.4.5

Updates @datadog/browser-rum from 5.10.0 to 5.16.0

Changelog

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

v5.16.0

  • ✨ [RUM-3684] Capture scroll record on shadow dom elements (#2708)
  • ✨[RUM-3798] Report the cpu impact as a pr comment (#2702)
  • ✨ [RUM-162] Truncate resources URL containing data URLs (#2690)
  • 🐛[RUM-4109] Mask iframe srcdoc with privacy override (#2714)
  • ⚗ [RUM-2782] Validate resource timings more granularly

v5.15.0

  • 🐛 fix beforeSend type definition for logs (#2686)
  • 🐛 [RUM-2782] remove buggy redirect timing estimation based on fetchStart (#2683)
  • [ci-visibility] Implement driver-agnostic integration with CI Visibility (#2639)

v5.14.0

  • ✨ [RUM-3387] forward to beforeSend context (#2665)
  • 🐛 [RUM-3581] Fix the selector computation due to properties partially supported on IE (#2663)
  • 🐛 [RUM-96] Ignore frustrations on clicks resulting in scrolls (#2669)
  • ♻️✅ Harmonize record observers (#2659)

v5.13.0

  • ✨ [RUM-3542] Add trace context injection control in rum configuration (#2656)
  • 🐛 [RUM-3599] do not define undefined instrumented method (#2662)
  • 🐛 [RUM-3598] Ignore collecting requests to logs PCI intake as RUM resources (#2655)
  • ⚡ [RUM-2633] Optimize DOM iteration in the recorder (#2657)

v5.12.0

  • ✨ [RUM-3546] Add support of PCI compliant intake for browser logs (#2648)
  • ✨ [RUM 3352] Extra resource event attributes to enable performance CWV troubleshooting (#2646)
  • ✨ [RUM-2885] Collect CSP disposition (#2635)
  • 🐛 [RUM-3440] Fix INP CSS selector computation
  • 🐛 [RUM-3502] fix fetch(url) tracing (#2642)
  • 🔧 Enforce snake case for event type properties (#2649)
  • 🔊 [RUM-3501] add tracking_consent to configuration telemetry (#2640)
  • 🔧 configure renovate to deduplicate subdependencies (#2643)

v5.11.0

  • ✨ [RUM-3349] enable the consent management API (#2634)
  • ✨ [RUM-2203] Forward replay records to the bridge (#2470)
  • 🐛 [RUM-2445] fix unexpected session renewal after expire() (#2632)
  • ⚗️ [RUM-3234] Discard outdated vitals (#2610)
Commits

Updates @prisma/client from 5.9.1 to 5.13.0

Release notes

Sourced from @​prisma/client's releases.

5.13.0

Today, we are excited to share the 5.13.0 stable release 🎉

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

Highlights

omit fields from Prisma Client queries (Preview)

We’re excited to announce Preview support for the omit option within the Prisma Client query options. The highly-requested omit feature now allows you to exclude fields that you don’t want to retrieve from the database on a per-query basis.

By default, when a query returns records, the result includes all scalar fields of the models defined in the Prisma schema. select can be used to return specific fields, while omit can now be used to exclude specific fields. omit lives at the same API level and works on all of the same Prisma Client model queries as select. Note, however, that omit and select are mutually exclusive. In other words, you can’t use both in the same query.

To get started using omit, enable the omitApi Preview feature in your Prisma schema:

// schema.prisma
generator client {
  provider        = "prisma-client-js"
  previewFeatures = ["omitApi"]
}

Be sure to re-generate Prisma Client afterwards:

npx prisma generate

Here is an example of using omit:

// Includes all fields except password
await prisma.user.findMany({
  omit: {
   password: true
  },
})

Here is an example of using omit with include:

// Includes all user fields except user's password and title of user's posts
await prisma.user.findMany({
  omit: {
   password: true
  },
  include: {
    posts: {
</tr></table> 

... (truncated)

Commits
  • 781ddb2 chore(deps): update engines to 5.13.0-23.b9a39a7ee606c28e3455d0fd60e78c3ba82b...
  • cb7784e chore: unexclude sqlite createMany tests (#23689)
  • 0e3f95f feat: React Native support (#23637)
  • 183c14d chore(deps): update engines to 5.13.0-22.3364458a783b65fd18b9ccc7fe4acfa87fba...
  • 47e2430 feat(client): Add omit option to the queries (#23770)
  • 67d5034 chore(deps): update engines to 5.13.0-21.b339b9da56f3d53fccd4fb229effb0118721...
  • cb7aa39 chore(deps): update engines to 5.13.0-16.6d35870e9578a3e7406168f61f89f84e78c1...
  • e2d1906 chore(deps): update engines to 5.13.0-15.8b36be322cc78c7e156e98b8966fb34e5ea0...
  • 0e209dc chore(deps): update dependency wrangler to v3.49.0 (#23821)
  • 4954f35 chore(deps): update dependency @​types/node to v16.18.96 (#23801)
  • Additional commits viewable in compare view

Updates @tanstack/react-query from 5.18.1 to 5.32.0

Release notes

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

v5.32.0

Version 5.32.0 - 4/23/2024, 7:31 AM

Changes

Feat

  • core: make observers on Query a public property (#7326) (e3240f02) by Dominik Dorfmeister

Chore

  • docs: fix prettier (f025a7c2) by Dominik Dorfmeister

Docs

  • fix pages breaking due to diff in markdown (#7321) (b92fb043) by @​KushagraMehta
  • fix broken internal links in the query docs (#7247) (8fa82653) by fuko

Packages

  • @​tanstack/query-core@​5.32.0
  • @​tanstack/query-broadcast-client-experimental@​5.32.0
  • @​tanstack/query-persist-client-core@​5.32.0
  • @​tanstack/query-sync-storage-persister@​5.32.0
  • @​tanstack/react-query@​5.32.0
  • @​tanstack/react-query-devtools@​5.32.0
  • @​tanstack/react-query-persist-client@​5.32.0
  • @​tanstack/react-query-next-experimental@​5.32.0
  • @​tanstack/solid-query@​5.32.0
  • @​tanstack/solid-query-devtools@​5.32.0
  • @​tanstack/solid-query-persist-client@​5.32.0
  • @​tanstack/svelte-query@​5.32.0
  • @​tanstack/svelte-query-devtools@​5.32.0
  • @​tanstack/svelte-query-persist-client@​5.32.0
  • @​tanstack/vue-query@​5.32.0
  • @​tanstack/vue-query-devtools@​5.32.0
  • @​tanstack/angular-query-experimental@​5.32.0
  • @​tanstack/query-async-storage-persister@​5.32.0
  • @​tanstack/angular-query-devtools-experimental@​5.32.0

v5.31.0

Version 5.31.0 - 4/22/2024, 6:41 AM

Changes

Feat

  • scoped mutations (#7312) (24f1d45c) by Dominik Dorfmeister

Packages

... (truncated)

Commits
  • 2ffd9fb release: v5.32.0
  • 5b6c67f release: v5.31.0
  • 24f1d45 feat: scoped mutations (#7312)
  • 5ace1bc release: v5.29.2
  • 03048e3 fix(react-query): reorder query function declarations (#7260)
  • 3fa5323 types(react-query): rename useSuspenseQueries, useQueries internal type name ...
  • 51dea30 release: v5.29.0
  • 3c31124 feat(core): memoize result of combine (#7233)
  • 0a2b1ba release: v5.28.14
  • f585bfe fix(react-query): useSuspenseQueries type not compatible with queryOption (#7...
  • Additional commits viewable in compare view

Updates @tanstack/react-query-devtools from 5.18.1 to 5.32.0

Release notes

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

v5.32.0

Version 5.32.0 - 4/23/2024, 7:31 AM

Changes

Feat

  • core: make observers on Query a public property (#7326) (e3240f02) by Dominik Dorfmeister

Chore

  • docs: fix prettier (f025a7c2) by Dominik Dorfmeister

Docs

  • fix pages breaking due to diff in markdown (#7321) (b92fb043) by @​KushagraMehta
  • fix broken internal links in the query docs (#7247) (8fa82653) by fuko

Packages

  • @​tanstack/query-core@​5.32.0
  • @​tanstack/query-broadcast-client-experimental@​5.32.0
  • @​tanstack/query-persist-client-core@​5.32.0
  • @​tanstack/query-sync-storage-persister@​5.32.0
  • @​tanstack/react-query@​5.32.0
  • @​tanstack/react-query-devtools@​5.32.0
  • @​tanstack/react-query-persist-client@​5.32.0
  • @​tanstack/react-query-next-experimental@​5.32.0
  • @​tanstack/solid-query@​5.32.0
  • @​tanstack/solid-query-devtools@​5.32.0
  • @​tanstack/solid-query-persist-client@​5.32.0
  • @​tanstack/svelte-query@​5.32.0
  • @​tanstack/svelte-query-devtools@​5.32.0
  • @​tanstack/svelte-query-persist-client@​5.32.0
  • @​tanstack/vue-query@​5.32.0
  • @​tanstack/vue-query-devtools@​5.32.0
  • @​tanstack/angular-query-experimental@​5.32.0
  • @​tanstack/query-async-storage-persister@​5.32.0
  • @​tanstack/angular-query-devtools-experimental@​5.32.0

v5.31.0

Version 5.31.0 - 4/22/2024, 6:41 AM

Changes

Feat

  • scoped mutations (#7312) (24f1d45c) by Dominik Dorfmeister

Packages

... (truncated)

Commits

Updates @tanstack/react-table from 8.11.8 to 8.16.0

Release notes

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

v8.16.0

Version 8.16.0 - 4/13/2024, 12:47 AM

Changes

Feat

  • new sortUndefined last and first options (#5486) (d2ae5390) by Kevin Van Cott

Docs

  • Update overview.md (#5474) (5a907f3a) by Artem
  • update overview and installation (#5462) (c40d734a) by Kevin Van Cott
  • fix virtual link (b23c1336) by Kevin Vandy
  • fix more links for tsr migration (#5461) (2c12856e) by Kevin Van Cott
  • prep for tanstack.com migration to TSR (024ecda9) by Tanner Linsley

Packages

  • @​tanstack/table-core@​8.16.0
  • @​tanstack/qwik-table@​8.16.0
  • @​tanstack/react-table@​8.16.0
  • @​tanstack/solid-table@​8.16.0
  • @​tanstack/vue-table@​8.16.0
  • @​tanstack/svelte-table@​8.16.0
  • @​tanstack/react-table-devtools@​8.16.0

v8.15.3

Version 8.15.3 - 3/29/2024, 5:18 AM

Changes

Fix

  • table-core: column getCanGroup always resolving to true (#4843) (fce4725f) by mozzerbob

Docs

  • fix faq (c6b2507f) by Kevin Van Cott
  • update faq for infinite render question (#5451) (3809e0a2) by Kevin Van Cott

Other

  • rename header (64841997) by Kevin Van Cott

Packages

  • @​tanstack/table-core@​8.15.3
  • @​tanstack/qwik-table@​8.15.3
  • @​tanstack/react-table@​8.15.3

... (truncated)

Commits

Updates @vercel/analytics from 1.1.2 to 1.2.2

Release notes

Sourced from @​vercel/analytics's releases.

1.2.2

What's Changed

Full Changelog: vercel/analytics@1.2.1...1.2.2

1.2.1

What's Changed

New Contributors

Full Changelog: vercel/analytics@1.2.0...1.2.1

1.2.0

What's Changed

Full Changelog: vercel/analytics@1.1.4...1.2.0

1.2.0-beta.4

Improved route support for race conditions

1.2.0-beta.3

Improve route support in pages router

1.2.0-beta.2

Further improve route support and better testing

1.2.0-beta.1

  • Adds the new /next import which supports upcoming route support

1.1.4

What's Changed

New Contributors

Full Changelog: vercel/analytics@1.1.3...1.1.4

1.1.3

What's Changed

Full Changelog: vercel/analytics@1.1.2...1.1.3

Commits

Updates @vercel/speed-insights from 1.0.9 to 1.0.10

Release notes

Sourced from @​vercel/speed-insights's releases.

1.0.10

What's Changed

New Contributors

Full Changelog: vercel/speed-insights@1.0.9...1.0.10

Commits

Updates clsx from 2.1.0 to 2.1.1

Release notes

Sourced from clsx's releases.

v2.1.1

Patches

  • (types) Include bigint in ClassValue type: (#96): 3d960ab Accommodates recent @types/react changes to ReactNode. Thank you @​ViliamKopecky~!

Chores

  • Add licenses.dev badge: 684509c This service recursively analyzes entire dependency graphs to ensure that a package (or your project) is using permissive licenses. For example, here's a results table for polka@next and a larger astro example.

Full Changelog: lukeed/clsx@v2.1.0...v2.1.1

Commits

Updates lucide-react from 0.321.0 to 0.376.0

Release notes

Sourced from lucide-react's releases.

Adding Icon component for external libs

Implementation of the <Icon /> component which makes it easier to create (custom) icons from iconNodes. This will be useful for external packages like @lucide/lab and more.

Example with lucide-react

import { burger } from '@lucide/lab';
import { Icon } from 'lucide-react';
<Icon iconNode={burger} /> // Renders burger icon

See the docs

New icons 0.375.0

New icons 🎨

New icons 0.374.0

Modified Icons 🔨

New icons 0.373.0

Modified Icons 🔨

... (truncated)

Commits

Updates mapbox-gl from 3.1.2 to 3.3.0

Release notes

Sourced from mapbox-gl's releases.

v3.3.0

Features and improvements ✨

  • Add a new raster-array source type, representing a new experimental Mapbox Raster Tile format which encodes series of tiled raster data (such as weather time series).
  • Add a new raster-particle layer which animates particles of different speed and color based on underlying raster-array data.
  • Add addImport, moveImport, updateImport, and removeImport API methods.
  • Add getSlot, and setSlot API methods to control layers' slots.
  • Add landmarks and models support in queryRenderedFeatures.
  • Add raster-elevation support for tiled raster sources.
  • Add config expression support in fog.
  • Improve map loading performance.

Bug fixes 🐞

  • Fix zooming with the pitched camera and maxZoom.
  • Fix memory leak after removing the map. (h/t @​kamil-sienkiewicz-asi) #13110, #13116
  • Fix broken horizon line for some camera values.
  • Fix broken globe draping after updating style with setStyle.
  • Fix the z offset when the opacity is evaluated at 0 on the zoom change.
  • Fix the format expression in the config expression.
  • Fix adding a marker to the map that is not loaded when fog is enabled.
  • Fix symbol and icon rendering order when using symbol-sort-key property.

v3.3.0-beta.1

Features and improvements ✨

  • Add raster particles layer.
  • Add raster-array source.
  • Add addImport, moveImport, updateImport, and removeImport API methods.
  • Add getSlot, and setSlot API methods to control layers' slots.
  • Add landmarks and models support in queryRenderedFeatures.
  • Add raster-elevation support for tiled raster sources.
  • Add config expression support in fog.
  • Improve map loading performance.

Bug fixes 🐞

  • Fix zooming with the pitched camera and maxZoom.
  • Fix memory leak after removing the map. (h/t @​kamil-sienkiewicz-asi) #13110, #13116
  • Fix broken horizon line for some camera values.
  • Fix broken globe draping after updating style with setStyle.
  • Fix the z offset when the opacity is evaluated at 0 on the zoom change.
  • Fix the format expression in the config expression.
  • Fix adding a marker to the map that is not loaded when fog is enabled.

v3.2.0

Features and improvements ✨

  • Improve map loading performance.
  • Add a debug UI for the development build of GL JS, enabled with devtools: true in Map options.

... (truncated)

Changelog

Sourced from mapbox-gl's changelog.

3.3.0

Features and improvements ✨

  • Add a new raster-array source type, representing a new experimental Mapbox Raster Tile format which encodes series of tiled raster data (such as weather time series).
  • Add a new raster-particle layer which animates particles of different speed and color based on underlying raster-array data.
  • Add addImport, moveImport, updateImport, and removeImport API methods.
  • Add getSlot, and setSlot API methods to control layers' slots.
  • Add landmarks and models support in queryRenderedFeatures.
  • Add raster-elevation support for tiled raster sources.
  • Add config expression support in fog.
  • Improve map loading performance.

Bug fixes 🐞

  • Fix zooming with the pitched camera and maxZoom.
  • Fix memory leak after removing the map. (h/t @​kamil-sienkiewicz-asi) #13110, #13116
  • Fix broken horizon line for some camera values.
  • Fix broken globe draping after updating style with setStyle.
  • Fix the z offset when the opacity is evaluated at 0 on the zoom change.
  • Fix the format expression in the config expression.
  • Fix adding a marker to the map that is not loaded when fog is enabled.
  • Fix symbol and icon rendering order when using symbol-sort-key property.

3.2.0

Features and improvements ✨

  • Improve map loading performance.
  • Add a debug UI for the development build of GL JS, enabled with devtools: true in Map options.
  • Add imports support in map.areTilesLoaded.
  • Add support of rotation of elevated raster layers.
  • Add support of negative values for fill-extrusion-flood-light-ground-radius property.
  • Improve visual cutoff behavior of buildings when using fill-extrusion-cutoff-fade-range property.

Bug fixes 🐞

  • Fix an issue where map.flyTo with padding option was setting and overriding map's padding.
  • Issue a warning instead of a validation error if url or tiles is missing from source, i.e. in MapTiler source.
  • Fix the moiré effects on patterns in tilted map views.
  • Remove role attribute for non-visible alerts. (h/t @​jakubmakielkowski) #13051
  • Fix an elevation of symbols above multiple fill extrusions, when some of them hidden or lowered.
  • Fix config expression chaining through nested styles and other issues related to config scope.
  • Fix a small callback-related memory leak. (h/t @​temas) #13074
  • Fix config and format expressions not working together.
Commits
  • 541c310 v3.3.0
  • 1db9002 Fix sampler double-declaration in raster_particle.fragment.glsl
  • fd85802 Keep FeatureIndex in the shared chunk (internal-1310)
  • 1f02f3d GLJS-725 Fixed symbol text overlapping (internal-1257)
  • c378758 Add raster-array page to release testing (internal-1309)
  • a3d7d86 Add support for caching partial responses (internal-1300)
  • 3b9ebec Bump @​babel/core from 7.24.3 to 7.24.4 (internal-1304)
  • 6ff7ab7 Bump eslint-plugin-jsdoc from 48.2.2 to 48.2.3 (internal-1305)
  • fadba56 Bump playwright from 1.42.1 to 1.43.0 (internal-1306)
  • 8a5daa2 Bump @​octokit/rest from 20.0.2 to 20.1.0 (internal-1307)
  • Additional commits viewable in compare view

Updates @types/mapbox-gl from 2.7.20 to 3.1.0

Commits

Updates next from 14.1.0 to 14.2.3

Release notes

Sourced from next's releases.

v14.2.3

[!NOTE]
This release is backporting bug fixes. It does not include all pending features/changes on canary.

Core Changes

  • Fix: resolve mixed re-exports module as cjs (#64681)
  • fix: mixing namespace import and named import client components (#64809)
  • Fix mixed exports in server component with barrel optimization (#64894)
  • Fix next/image usage in mdx(#64875)
  • fix(fetch-cache): fix additional typo, add type & data validation (#64799)
  • prevent erroneous route interception during lazy fetch (#64692)
  • fix root page revalidation when redirecting in a server action (#64730)
  • fix: remove traceparent from cachekey should not remove traceparent from original object (#64727)
  • Clean-up fetch metrics tracking (#64746)

Credits

Huge thanks to @​huozhi, @​samcx, @​ztanner, @​Jeffrey-Zutt, and @​ijjk for helping!

v14.2.2

[!NOTE]
This release is backporting bug fixes. It does not include all pending features/changes on canary.

Core Changes

  • Fix Server Action error logs for unhandled POST requests (#64315)
  • Improve rendering performance (#64408)
  • Fix the method prop case in Server Actions transform (#64398)
  • fix(next-lint): update option --report-unused-disable-directives to --report-unused-disable-directives-severity (#64405)
  • tweak test for Azure (#64424)
  • router restore should take priority over pending actions (#64449)
  • Fix client boundary inheritance for barrel optimization (#64467)
  • improve turborepo caching (#64493)
  • feat: strip traceparent header from cachekey (#64499)
  • Fix more Turbopack build tests
  • Update lockfile for compatibility with turbo (#64360)
  • Fix typo in dynamic-rendering.ts (#64365)
  • Fix DynamicServerError not being thrown in fetch (#64511)
  • fix(next): Metadata.openGraph values not resolving basic values when type is set (#63620)
  • disable production chunking in dev (#64488)
  • Fix cjs client components tree-shaking (#64558)
  • fix refresh behavior for discarded actions (#64532)
  • fix: filter out middleware requests in logging (#64549)
  • Turbopack: Allow client components to be imported in app routes (#64520)
  • Fix ASL bundling for dynamic css (#64451)
  • add pathname normalizer for actions (#64592)
  • fix incorrect refresh request when basePath is set (#64589)
  • test: skip turbopack build test (#64356)
  • hotfix(turbopack): Update with patch for postcss.config.js path resolution on Windows (#64677)

... (truncated)

Commits
  • 2e7a96a v14.2.3
  • a230be4 Clean-up fetch metrics tracking (#64746)
  • 73c2d63 fix: remove traceparent from cachekey should not remove traceparent from orig...
  • dd44191 fix root page revalidation when redirecting in a server action (#64730)
  • 8b4c234 prevent erroneous route interception during lazy fetch (#64692)
  • d6a7ca0 fix(fetch-cache): fix additional typo, add type & data validation (#64799)
  • 4a6b511 Fix next/image usage in mdx (#64875)
  • 04cc13c Fix mixed exports in server component with barrel optimization (#64894)
  • 8d01d49 fix: mixing namespace import and named import client components (#64809)
  • de84e3a Fix: resolve mixed re-exports module as cjs (#64681)
  • Additional commits viewable in compare view

Updates next-auth from 4.24.5 to 4.24.7

Commits

Bumps the dependencies group with 33 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@datadog/browser-rum](https://github.com/DataDog/browser-sdk/tree/HEAD/packages/rum) | `5.10.0` | `5.16.0` |
| [@prisma/client](https://github.com/prisma/prisma/tree/HEAD/packages/client) | `5.9.1` | `5.13.0` |
| [@tanstack/react-query](https://github.com/TanStack/query/tree/HEAD/packages/react-query) | `5.18.1` | `5.32.0` |
| [@tanstack/react-query-devtools](https://github.com/TanStack/query/tree/HEAD/packages/react-query-devtools) | `5.18.1` | `5.32.0` |
| [@tanstack/react-table](https://github.com/TanStack/table/tree/HEAD/packages/react-table) | `8.11.8` | `8.16.0` |
| [@vercel/analytics](https://github.com/vercel/analytics/tree/HEAD/packages/web) | `1.1.2` | `1.2.2` |
| [@vercel/speed-insights](https://github.com/vercel/speed-insights/tree/HEAD/packages/web) | `1.0.9` | `1.0.10` |
| [clsx](https://github.com/lukeed/clsx) | `2.1.0` | `2.1.1` |
| [lucide-react](https://github.com/lucide-icons/lucide/tree/HEAD/packages/lucide-react) | `0.321.0` | `0.376.0` |
| [mapbox-gl](https://github.com/mapbox/mapbox-gl-js) | `3.1.2` | `3.3.0` |
| [@types/mapbox-gl](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/mapbox-gl) | `2.7.20` | `3.1.0` |
| [next](https://github.com/vercel/next.js) | `14.1.0` | `14.2.3` |
| [next-auth](https://github.com/nextauthjs/next-auth) | `4.24.5` | `4.24.7` |
| [nodemailer](https://github.com/nodemailer/nodemailer) | `6.9.9` | `6.9.13` |
| [playwright](https://github.com/microsoft/playwright) | `1.41.2` | `1.43.1` |
| [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `18.2.0` | `18.3.1` |
| [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `18.2.51` | `18.3.1` |
| [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `18.2.0` | `18.3.1` |
| [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) | `18.2.18` | `18.3.0` |
| [tailwind-merge](https://github.com/dcastil/tailwind-merge) | `2.2.1` | `2.3.0` |
| [tailwindcss](https://github.com/tailwindlabs/tailwindcss) | `3.4.1` | `3.4.3` |
| [zod](https://github.com/colinhacks/zod) | `3.22.4` | `3.23.5` |
| [@datadog/datadog-ci](https://github.com/DataDog/datadog-ci) | `2.31.2` | `2.34.0` |
| [@playwright/test](https://github.com/microsoft/playwright) | `1.41.2` | `1.43.1` |
| [@testing-library/jest-dom](https://github.com/testing-library/jest-dom) | `6.4.1` | `6.4.2` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `20.11.16` | `20.12.7` |
| [autoprefixer](https://github.com/postcss/autoprefixer) | `10.4.17` | `10.4.19` |
| [dotenv](https://github.com/motdotla/dotenv) | `16.4.1` | `16.4.5` |
| [eslint-config-next](https://github.com/vercel/next.js/tree/HEAD/packages/eslint-config-next) | `14.1.0` | `14.2.3` |
| [postcss](https://github.com/postcss/postcss) | `8.4.33` | `8.4.38` |
| [prettier](https://github.com/prettier/prettier) | `3.2.4` | `3.2.5` |
| [prisma](https://github.com/prisma/prisma/tree/HEAD/packages/cli) | `5.9.1` | `5.13.0` |
| [typescript](https://github.com/Microsoft/TypeScript) | `5.3.3` | `5.4.5` |



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

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

Updates `@tanstack/react-query` from 5.18.1 to 5.32.0
- [Release notes](https://github.com/TanStack/query/releases)
- [Commits](https://github.com/TanStack/query/commits/v5.32.0/packages/react-query)

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

Updates `@tanstack/react-table` from 8.11.8 to 8.16.0
- [Release notes](https://github.com/TanStack/table/releases)
- [Commits](https://github.com/TanStack/table/commits/v8.16.0/packages/react-table)

Updates `@vercel/analytics` from 1.1.2 to 1.2.2
- [Release notes](https://github.com/vercel/analytics/releases)
- [Commits](https://github.com/vercel/analytics/commits/1.2.2/packages/web)

Updates `@vercel/speed-insights` from 1.0.9 to 1.0.10
- [Release notes](https://github.com/vercel/speed-insights/releases)
- [Commits](https://github.com/vercel/speed-insights/commits/1.0.10/packages/web)

Updates `clsx` from 2.1.0 to 2.1.1
- [Release notes](https://github.com/lukeed/clsx/releases)
- [Commits](lukeed/clsx@v2.1.0...v2.1.1)

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

Updates `mapbox-gl` from 3.1.2 to 3.3.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.1.2...v3.3.0)

Updates `@types/mapbox-gl` from 2.7.20 to 3.1.0
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/mapbox-gl)

Updates `next` from 14.1.0 to 14.2.3
- [Release notes](https://github.com/vercel/next.js/releases)
- [Changelog](https://github.com/vercel/next.js/blob/canary/release.js)
- [Commits](vercel/next.js@v14.1.0...v14.2.3)

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

Updates `nodemailer` from 6.9.9 to 6.9.13
- [Release notes](https://github.com/nodemailer/nodemailer/releases)
- [Changelog](https://github.com/nodemailer/nodemailer/blob/master/CHANGELOG.md)
- [Commits](nodemailer/nodemailer@v6.9.9...v6.9.13)

Updates `playwright` from 1.41.2 to 1.43.1
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.41.2...v1.43.1)

Updates `react` from 18.2.0 to 18.3.1
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/v18.3.1/packages/react)

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

Updates `react-dom` from 18.2.0 to 18.3.1
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/v18.3.1/packages/react-dom)

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

Updates `tailwind-merge` from 2.2.1 to 2.3.0
- [Release notes](https://github.com/dcastil/tailwind-merge/releases)
- [Commits](dcastil/tailwind-merge@v2.2.1...v2.3.0)

Updates `tailwindcss` from 3.4.1 to 3.4.3
- [Release notes](https://github.com/tailwindlabs/tailwindcss/releases)
- [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/v3.4.3/CHANGELOG.md)
- [Commits](tailwindlabs/tailwindcss@v3.4.1...v3.4.3)

Updates `zod` from 3.22.4 to 3.23.5
- [Release notes](https://github.com/colinhacks/zod/releases)
- [Changelog](https://github.com/colinhacks/zod/blob/master/CHANGELOG.md)
- [Commits](colinhacks/zod@v3.22.4...v3.23.5)

Updates `@datadog/datadog-ci` from 2.31.2 to 2.34.0
- [Release notes](https://github.com/DataDog/datadog-ci/releases)
- [Commits](DataDog/datadog-ci@v2.31.2...v2.34.0)

Updates `@playwright/test` from 1.41.2 to 1.43.1
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.41.2...v1.43.1)

Updates `@testing-library/jest-dom` from 6.4.1 to 6.4.2
- [Release notes](https://github.com/testing-library/jest-dom/releases)
- [Changelog](https://github.com/testing-library/jest-dom/blob/main/CHANGELOG.md)
- [Commits](testing-library/jest-dom@v6.4.1...v6.4.2)

Updates `@types/mapbox-gl` from 2.7.20 to 3.1.0
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/mapbox-gl)

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

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

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

Updates `autoprefixer` from 10.4.17 to 10.4.19
- [Release notes](https://github.com/postcss/autoprefixer/releases)
- [Changelog](https://github.com/postcss/autoprefixer/blob/main/CHANGELOG.md)
- [Commits](postcss/autoprefixer@10.4.17...10.4.19)

Updates `dotenv` from 16.4.1 to 16.4.5
- [Changelog](https://github.com/motdotla/dotenv/blob/master/CHANGELOG.md)
- [Commits](motdotla/dotenv@v16.4.1...v16.4.5)

Updates `eslint-config-next` from 14.1.0 to 14.2.3
- [Release notes](https://github.com/vercel/next.js/releases)
- [Changelog](https://github.com/vercel/next.js/blob/canary/release.js)
- [Commits](https://github.com/vercel/next.js/commits/v14.2.3/packages/eslint-config-next)

Updates `postcss` from 8.4.33 to 8.4.38
- [Release notes](https://github.com/postcss/postcss/releases)
- [Changelog](https://github.com/postcss/postcss/blob/main/CHANGELOG.md)
- [Commits](postcss/postcss@8.4.33...8.4.38)

Updates `prettier` from 3.2.4 to 3.2.5
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/prettier@3.2.4...3.2.5)

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

Updates `typescript` from 5.3.3 to 5.4.5
- [Release notes](https://github.com/Microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml)
- [Commits](microsoft/TypeScript@v5.3.3...v5.4.5)

---
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"
  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: "@tanstack/react-table"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@vercel/analytics"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@vercel/speed-insights"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: clsx
  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: "@types/mapbox-gl"
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: next
  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: nodemailer
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: playwright
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: react
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@types/react"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: react-dom
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@types/react-dom"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: tailwind-merge
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: tailwindcss
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: zod
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@datadog/datadog-ci"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@playwright/test"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@testing-library/jest-dom"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: "@types/mapbox-gl"
  dependency-type: direct:development
  update-type: version-update:semver-major
  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-minor
  dependency-group: dependencies
- dependency-name: "@types/react-dom"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: autoprefixer
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: dotenv
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: eslint-config-next
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: postcss
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: prettier
  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
- dependency-name: typescript
  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 Apr 29, 2024
Copy link

vercel bot commented Apr 29, 2024

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

Name Status Preview Updated (UTC)
100-cims ✅ Ready (Inspect) Visit Preview Apr 29, 2024 11:56pm

Copy link
Contributor Author

dependabot bot commented on behalf of github May 6, 2024

Superseded by #141.

@dependabot dependabot bot closed this May 6, 2024
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/dependencies-a4b311dc74 branch May 6, 2024 22:17
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