Skip to content

Bump the minors group across 1 directory with 11 updates #247

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

Closed

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Apr 4, 2025

Bumps the minors group with 11 updates in the /webserver directory:

Package From To
@google-cloud/storage 7.15.2 7.16.0
@js-temporal/polyfill 0.4.4 0.5.1
@prisma/client 6.4.1 6.5.0
@shoelace-style/shoelace 2.20.0 2.20.1
n3 1.23.1 1.24.2
@types/n3 1.21.1 1.24.2
prisma 6.4.1 6.5.0
remark-rehype 11.1.1 11.1.2
typescript 5.7.3 5.8.2
@playwright/test 1.50.1 1.51.1
@types/node 22.13.5 22.14.0

Updates @google-cloud/storage from 7.15.2 to 7.16.0

Release notes

Sourced from @​google-cloud/storage's releases.

v7.16.0

7.16.0 (2025-03-31)

Features

Changelog

Sourced from @​google-cloud/storage's changelog.

7.16.0 (2025-03-31)

Features

Commits

Updates @js-temporal/polyfill from 0.4.4 to 0.5.1

Release notes

Sourced from @​js-temporal/polyfill's releases.

v0.5.1

Please see CHANGELOG.md for a summary of changes in this release.

Thanks to everyone who contributed!

Version 0.5.0

Please see CHANGELOG.md for a summary of changes in this release.

Thanks to everyone who contributed!

Changelog

Sourced from @​js-temporal/polyfill's changelog.

0.5.1

Bug fixes:

  • Fix infinite recursion in Node 23.x with Intl.DurationFormat (fixes #329).
  • Include correct package-lock.json (fixes #328).
  • Don't override TIMEOUT when running npm run test262.

Non-breaking changes:

  • Support Node 22.x and 23.x and test them in CI (fixes #323).
  • The polyfilled Intl.DateTimeFormat object now supports offset time zone identifiers (e.g., -02:30) in Node 23.x. Note that the native Intl.DateTimeFormat in Node 23.x also supports them, but in a nonstandard way, so you should use the polyfilled Intl.DateTimeFormat in your code.
  • Add migration guide for 0.4.x → 0.5.0.
  • Reduce production bundle size by deleting assertions and minifying function names.

0.5.0

Breaking changes:

This major update reflects all changes to the Temporal proposal adopted by TC39 between May 2023 and March 2025.

The majority of these changes were made in the June 2024 TC39 meeting (slides here) where the scope of Temporal was reduced at the request of JS engine implementers who were concerned about the size impact of adding Temporal to distributions on limited-capacity devices like low-end Android phones and Apple Watch.

  • User-defined calendars have been removed. Calendars are now represented by strings representing built-in calendars. Without custom calendars, the huge surface area of Temporal.Calendar was not necessary, and that type was removed from the proposal.
  • User-defined time zones have been removed. Time zones are now only represented by string identifiers representing built-in time zones: either a Zone or Link name from the IANA Time Zone Database, or a time zone offset with minutes precision. Temporal.TimeZone has also been removed, and its methods replaced by the following:
    • getPreviousTransition/getNextTransition - use the new getTimeZoneTransition method of Temporal.ZoneDateTime.
    • equals - use ZonedDateTime.prototype.equals using the same instant and calendar.
    • Other Temporal.TimeZone methods can use the corresponding methods on Temporal.ZonedDateTime.
  • Many convenience methods have been removed. In all cases, the same functionality is available using other Temporal methods:
    • Removed getISOFields() methods. Instead use withCalendar('iso8601') and the individual property getters.
    • Removed withPlainDate() methods. Instead use with({ year, monthCode, day }).
    • Removed toPlainDateTime() and toZonedDateTime() methods of Temporal.PlainTime. Instead use the same-named methods on Temporal.PlainDate to combine a date and a time.
    • Removed epochSeconds and epochMicroseconds properties. Instead calculate epoch seconds with Math.floor(epochMilliseconds / 1000) and epoch microseconds with epochNanoseconds / 1000n + ((epochNanoseconds % 1000n) < 0n ? -1n : 0n).
    • Removed toPlainYearMonth() and toPlainMonthDay() methods of Temporal.PlainDateTime and Temporal.ZonedDateTime. Instead use toPlainDate() and then the methods on Temporal.PlainDate.
    • Removed Temporal.Instant.prototype.toZonedDateTime and Temporal.Now.zonedDateTime. Instead use toZonedDateTimeISO()/zonedDateTimeISO() to create a Temporal.ZonedDateTime object using the ISO8601 calendar, and then use withCalendar() if a non-ISO calendar is desired.
  • The relativeTo parameter is no longer accepted in Temporal.Duration.prototype.add and subtract. Instead take the relativeTo object, add the two durations to it, and difference it with the original using until().
  • Throw if there are multiple calendar annotations in a string and one has the critical flag (Proposal PR)
  • Changed the way calculations are done with Temporal.Duration, and placed limits on each of the units. Years, months, and weeks are each limited to 2³²−1. The other units (days through nanoseconds) are collectively limited: taken together, they must be less than Number.MAX_SAFE_INTEGER seconds plus 999,999,999 nanoseconds. This has few user-visible changes, but it does mean that some durations are no longer allowed (for example, Temporal.Duration.from({ seconds: Number.MAX_VALUE }).) (Proposal PR 1, PR 2, PR 3)
  • Offset time zones are now limited to minutes precision. That is, you can have [+01:01] but not [+01:00:01] or [+01:00:00.000000001] (Proposal PR)
  • For APIs that take a string, other primitives are no longer coerced to strings. Technically, you could previously do Temporal.PlainDate.from(20230711) and it would be treated as Temporal.PlainDate.from("20230711"). This is no longer the case. (Proposal PR)
  • Temporal.PlainYearMonth.prototype.toPlainDate and Temporal.PlainMonthDay.prototype.toPlainDate now have clamping behaviour instead of throwing if the resulting PlainDate would be invalid. For example, birthday.toPlainDate({ year: 2025 }) will now return February 28, 2025 if the birthday in question if February 29. (Proposal PR)
    • If you still want the throwing behaviour, you can get it more verbosely:
    const { monthCode, day } = birthday;
    Temporal.PlainDate.from({ year: 2025, monthCode, day }, { overflow: 'reject' });

... (truncated)

Commits
  • f3c07e5 Rephrase package.json description
  • 45ca8dc Release 0.5.1 version bump and changelog
  • c29428c Support offset time zones in Intl.DTF polyfill
  • b8df3ae Save initial DurationFormat methods
  • b0c5124 Support Node 22 & 23
  • d28772f Fix ESLint in VS Code for package*.json
  • ba8d45a Fix timeouts for running Test262 in a debugger
  • bc4e4c1 Update package-lock.json
  • 2971710 Minify function names
  • c346a81 Delete assertions using rollup strip plugin
  • Additional commits viewable in compare view

Updates @prisma/client from 6.4.1 to 6.5.0

Release notes

Sourced from @​prisma/client's releases.

6.5.0

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

🌟 Help us spread the word about Prisma by starring the repo ☝️ or tweeting about the release. 🌟

Highlights

Databases can only be reset manually and explicitly

In previous versions, if Prisma ORM determined that a migrate command could not be applied cleanly to the underlying database, you would get a message like this one:

? We need to reset the "public" schema at "db.url.com:5432"
Do you want to continue? All data will be lost. (y/N)

While "no" was the default, we've determined that having this prompt in the first place was a mistake. In this version we're removing the prompt entirely and instead exiting with an appropriate error message.

To get the previous behavior, you will need to run prisma migrate reset directly.

Support for prisma.config.ts in Prisma Studio

We've expanded support for our prisma.config.ts file to include Prisma Studio!

To use the new config file, including the ability to connect to driver adapter enabled databases with Prisma Studio, add a studio block to your prisma.config.ts file:

import path from 'node:path'
import type { PrismaConfig } from 'prisma'
import { PrismaLibSQL } from '@prisma/adapter-libsql'
import { createClient } from '@libsql/client'
export default {
earlyAccess: true,
schema: {
kind: 'single',
filePath: './prisma/schema.prisma',
},
studio: {
adapter: async (env: unknown) => {
const connectionString = `file:./dev.db'
const libsql = createClient({
url: connectionString,
})
return new PrismaLibSQL(libsql)
},
},
} satisfies PrismaConfig

... (truncated)

Commits
  • 160e860 chore(deps): update engines to 6.5.0-73.173f8d54f8d52e692c7e27e72a88314ec7aef...
  • 1bc2337 chore(deps): update engines to 6.5.0-71.45af6d605e0f0ead4e63bb8e7624a6eadf930...
  • 5e5a2b8 chore(deps-dev): bump rimraf from 3.0.2 to 6.0.1 (#26522)
  • 4bb2040 chore(deps-dev): bump @​inquirer/prompts from 7.3.2 to 7.3.3 (#26563)
  • d44d9ea feat(instrumentation): add ability to filter span by PrismaLayerType (#20113)
  • 31381be chore(deps): update engines to 6.5.0-70.d3fd11690486b166608fd9d9091a0e94f299a...
  • 11aa623 chore(deps): update engines to 6.5.0-69.3f67705e4a5926f5487f51bfad02d128528ee...
  • bf38a15 chore(deps): update engines to 6.5.0-67.b2f6fb29daaeacb2c633f1d666d9d18555356...
  • 49489c6 chore(deps): update engines to 6.5.0-66.d8cf42b3d1a205c65d885c779ca30b63913dd...
  • 3c6da2c chore(deps): update engines to 6.5.0-64.e1a176ceb6ec2db27f00a5ae2bc5cb7dd6e89...
  • Additional commits viewable in compare view

Updates @shoelace-style/shoelace from 2.20.0 to 2.20.1

Release notes

Sourced from @​shoelace-style/shoelace's releases.

v2.20.1

Commits

  • 19537b1: Fix a11y issues for closing components with focused children (Christian Schilling) #2383
  • 61c73cd: Add ticket number to changelog (Christian Schilling) #2383
  • Nested tab groups broken in v2.19.1 (#2367) #2367 (Christian Schilling)
  • d83d620: Remove log statement (Christian Schilling) #2383
  • 0a48bc5: Merge remote-tracking branch 'upstream/next' into fix/a11y-errors-for-blur (Christian Schilling) #2383
  • 91235cb: Fixes dropdown closing on tab key (#2371) (Gabriel Belgamo) #2371
  • 1b9104d: update changelog (Cory LaViska)
  • 5ef3c91: fix contextElement guard (#2399) (Diego Ferreiro Val) #2399
  • ee42086: update changelog (Cory LaViska)
  • e09277e: Fixes closable sl-alert can be closed on whole vertical area without visual indication (#2375) (Susanne Kirchner) #2375
  • eef4c17: update changelog (Cory LaViska)
  • d2ce983: Merge branch 'fix/a11y-errors-for-blur' of https://github.com/schilchSICKAG/shoelace into schilchSICKAG-fix/a11y-errors-for-blur (Cory LaViska) #2383
  • 5be9540: Merge branch 'schilchSICKAG-fix/a11y-errors-for-blur' into next (Cory LaViska)
  • 0cf1984: update docs to fix types (Cory LaViska)
  • bcf08a8: Carousel accessibility (#2364) (Matt McLean) #2364
  • d1f94ab: update changelog (Cory LaViska)
  • 3142d14: update version (Cory LaViska)
  • fb59fda: 2.20.1 (Cory LaViska)
Commits

Updates n3 from 1.23.1 to 1.24.2

Release notes

Sourced from n3's releases.

v1.24.2

1.24.2 (2025-03-17)

Bug Fixes

  • align some with RDF/JS definition of Dataset (#504) (d987798)

v1.24.1

1.24.1 (2025-03-16)

Bug Fixes

  • allow datasets to be inputs to stores to align with RDF/JS DatasetFactory interface (#505) (0a78539)

v1.24.0

1.24.0 (2025-03-04)

Features

v1.23.2

1.23.2 (2025-03-02)

Bug Fixes

  • make sure filter works when encountering unseen named graphs (#498) (cbffbbf)
Commits
  • d987798 fix: align some with RDF/JS definition of Dataset (#504)
  • 68c1266 chore(deps-dev): Bump @​babel/core in the minor group (#510)
  • 0a78539 fix: allow datasets to be inputs to stores to align with RDF/JS `DatasetFacto...
  • 023fdb9 feat: add log:isImpliedBy feature flag (#500)
  • cbffbbf fix: make sure filter works when encountering unseen named graphs (#498)
  • 3f0fb79 chore(deps-dev): Bump the minor group with 2 updates (#493)
  • 77942dd chore(deps-dev): Bump the minor group with 2 updates (#491)
  • 063558d chore(deps-dev): Bump rdf-isomorphic in the minor group (#489)
  • 711e166 chore(deps-dev): Bump the minor group with 2 updates (#487)
  • eafe639 chore(deps-dev): Bump eslint-plugin-jest in the minor group (#485)
  • Additional commits viewable in compare view

Updates @types/n3 from 1.21.1 to 1.24.2

Commits

Updates prisma from 6.4.1 to 6.5.0

Release notes

Sourced from prisma's releases.

6.5.0

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

🌟 Help us spread the word about Prisma by starring the repo ☝️ or tweeting about the release. 🌟

Highlights

Databases can only be reset manually and explicitly

In previous versions, if Prisma ORM determined that a migrate command could not be applied cleanly to the underlying database, you would get a message like this one:

? We need to reset the "public" schema at "db.url.com:5432"
Do you want to continue? All data will be lost. (y/N)

While "no" was the default, we've determined that having this prompt in the first place was a mistake. In this version we're removing the prompt entirely and instead exiting with an appropriate error message.

To get the previous behavior, you will need to run prisma migrate reset directly.

Support for prisma.config.ts in Prisma Studio

We've expanded support for our prisma.config.ts file to include Prisma Studio!

To use the new config file, including the ability to connect to driver adapter enabled databases with Prisma Studio, add a studio block to your prisma.config.ts file:

import path from 'node:path'
import type { PrismaConfig } from 'prisma'
import { PrismaLibSQL } from '@prisma/adapter-libsql'
import { createClient } from '@libsql/client'
export default {
earlyAccess: true,
schema: {
kind: 'single',
filePath: './prisma/schema.prisma',
},
studio: {
adapter: async (env: unknown) => {
const connectionString = `file:./dev.db'
const libsql = createClient({
url: connectionString,
})
return new PrismaLibSQL(libsql)
},
},
} satisfies PrismaConfig

... (truncated)

Commits
  • 5e5a2b8 chore(deps-dev): bump rimraf from 3.0.2 to 6.0.1 (#26522)
  • 4bb2040 chore(deps-dev): bump @​inquirer/prompts from 7.3.2 to 7.3.3 (#26563)
  • 13d2709 fix: export index.js for compatibility (#26536)
  • e3fd10d feat(cli): define prisma.config.ts without requiring @prisma/config (#26483)
  • ddd5f7b fix(cli): init url showing unnecessary step (#26511)
  • 9a4dba7 chore(deps-dev): bump @​inquirer/prompts from 5.0.5 to 7.3.2 (#26479)
  • f0a2f8f chore(depsDev): replace unmaintained eslint plugins (#25058)
  • b737cce chore(deps-dev): bump @​swc/core from 1.2.204 to 1.11.5 (#26471)
  • f1ef568 chore(deps): bump fs-extra and @​types/fs-extra (#26457)
  • 87e8507 feat(studio): ORM-578 enable use of driver adapters in prisma studio (#26329)
  • Additional commits viewable in compare view

Updates remark-rehype from 11.1.1 to 11.1.2

Release notes

Sourced from remark-rehype's releases.

11.1.2

Types

  • eefd5f1 Fix types for bridge mode with missing overload

Full Changelog: remarkjs/remark-rehype@11.1.1...11.1.2

Commits

Updates typescript from 5.7.3 to 5.8.2

Release notes

Sourced from typescript's releases.

TypeScript 5.8

For release notes, check out the release announcement.

Downloads are available on:

TypeScript 5.8 RC

For release notes, check out the release announcement.

Downloads are available on:

TypeScript 5.8 Beta

For release notes, check out the release announcement.

Downloads are available on:

Commits
  • beb69e4 Bump version to 5.8.2 and LKG
  • 8fdbd54 🤖 Pick PR #61210 (Fix mistakenly disallowed default e...) into release-5.8 (#...
  • f4a3a8a 🤖 Pick PR #61175 (Ban import=require and export= unde...) into release-5.8 (#...
  • 420ff06 Bump version to 5.8.1-rc and LKG
  • 48eb13f Update LKG
  • fb59c19 Merge remote-tracking branch 'origin/main' into release-5.8
  • df342b7 Fixed rewriteRelativeImportExtensions for import() within call expression...
  • 775412a Bump github/codeql-action from 3.28.8 to 3.28.9 in the github-actions group (...
  • e1629e5 Pass ignoreErrors=true to more resolveEntityName callers (#61144)
  • 6fd1799 Update LKG
  • Additional commits viewable in compare view

Updates @playwright/test from 1.50.1 to 1.51.1

Release notes

Sourced from @​playwright/test's releases.

v1.51.1

Highlights

microsoft/playwright#35093 - [Regression]: TimeoutOverflowWarning: 2149630296.634 does not fit into a 32-bit signed integer microsoft/playwright#35138 - [Regression]: TypeError: Cannot read properties of undefined (reading 'expectInfo')

Browser Versions

  • Chromium 134.0.6998.35
  • Mozilla Firefox 135.0
  • WebKit 18.4

This version was also tested against the following stable channels:

  • Google Chrome 133
  • Microsoft Edge 133

v1.51.0

StorageState for indexedDB

  • New option indexedDB for browserContext.storageState() allows to save and restore IndexedDB contents. Useful when your application uses IndexedDB API to store authentication tokens, like Firebase Authentication.

    Here is an example following the authentication guide:

    // tests/auth.setup.ts
    import { test as setup, expect } from '@playwright/test';
    import path from 'path';
    const authFile = path.join(__dirname, '../playwright/.auth/user.json');
    setup('authenticate', async ({ page }) => {
    await page.goto('/');
    // ... perform authentication steps ...
    // make sure to save indexedDB
    await page.context().storageState({ path: authFile, indexedDB: true });
    });

Copy prompt

New "Copy prompt" button on errors in the HTML report, trace viewer and UI mode. Click to copy a pre-filled LLM prompt that contains the error message and useful context for fixing the error.

Copy prompt

Filter visible elements

New option visible for locator.filter() allows matching only visible elements.

</tr></table> 

... (truncated)

Commits
  • 0ad26b3 chore: mark v1.51.1 (#35098)
  • 25c0deb cherry-pick(#35149): fix(expect): properly handle custom asymmetric matcher r...
  • 4ecf5e0 cherry-pick(#35096): chore: do not use |0 for rounding large numbers
  • 3707a93 cherry-pick(#35045): chore: hide indexedDB in BrowserContext.storageState() b...
  • 52ddca4 cherry-pick(#35043): docs: release notes for 1.51 for java, python, csharp
  • 1f13108 cherry-pick(#35058): chore: hide indexedDB from storageState() and BrowserCon...
  • 9e9f0d1 cherry-pick(#35062): do not compute git diff on non! PRs
  • 12835d6 cherry-pick(#35059): chore: typo in prompt (#35061)
  • ef33c83 cherry-pick(#35057): chore: rename to copy prompt
  • 224385a cherry-pick(#35050): docs: update Git information image in release notes
  • Additional commits viewable in compare view

Updates @types/n3 from 1.21.1 to 1.24.2

Commits

Updates @types/node from 22.13.5 to 22.14.0

Commits

Most Recent Ignore Conditions Applied to This Pull Request
Dependency Name Ignore Conditions
@shoelace-style/shoelace [>= 2.19.a, < 2.20]

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 minors group with 11 updates in the /webserver directory:

| Package | From | To |
| --- | --- | --- |
| [@google-cloud/storage](https://github.com/googleapis/nodejs-storage) | `7.15.2` | `7.16.0` |
| [@js-temporal/polyfill](https://github.com/js-temporal/temporal-polyfill) | `0.4.4` | `0.5.1` |
| [@prisma/client](https://github.com/prisma/prisma/tree/HEAD/packages/client) | `6.4.1` | `6.5.0` |
| [@shoelace-style/shoelace](https://github.com/shoelace-style/shoelace) | `2.20.0` | `2.20.1` |
| [n3](https://github.com/rdfjs/N3.js) | `1.23.1` | `1.24.2` |
| [@types/n3](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/n3) | `1.21.1` | `1.24.2` |
| [prisma](https://github.com/prisma/prisma/tree/HEAD/packages/cli) | `6.4.1` | `6.5.0` |
| [remark-rehype](https://github.com/remarkjs/remark-rehype) | `11.1.1` | `11.1.2` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.7.3` | `5.8.2` |
| [@playwright/test](https://github.com/microsoft/playwright) | `1.50.1` | `1.51.1` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `22.13.5` | `22.14.0` |



Updates `@google-cloud/storage` from 7.15.2 to 7.16.0
- [Release notes](https://github.com/googleapis/nodejs-storage/releases)
- [Changelog](https://github.com/googleapis/nodejs-storage/blob/main/CHANGELOG.md)
- [Commits](googleapis/nodejs-storage@v7.15.2...v7.16.0)

Updates `@js-temporal/polyfill` from 0.4.4 to 0.5.1
- [Release notes](https://github.com/js-temporal/temporal-polyfill/releases)
- [Changelog](https://github.com/js-temporal/temporal-polyfill/blob/main/CHANGELOG.md)
- [Commits](js-temporal/temporal-polyfill@v0.4.4...v0.5.1)

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

Updates `@shoelace-style/shoelace` from 2.20.0 to 2.20.1
- [Release notes](https://github.com/shoelace-style/shoelace/releases)
- [Commits](shoelace-style/shoelace@v2.20.0...v2.20.1)

Updates `n3` from 1.23.1 to 1.24.2
- [Release notes](https://github.com/rdfjs/N3.js/releases)
- [Commits](rdfjs/N3.js@v1.23.1...v1.24.2)

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

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

Updates `remark-rehype` from 11.1.1 to 11.1.2
- [Release notes](https://github.com/remarkjs/remark-rehype/releases)
- [Commits](remarkjs/remark-rehype@11.1.1...11.1.2)

Updates `typescript` from 5.7.3 to 5.8.2
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release-publish.yml)
- [Commits](microsoft/TypeScript@v5.7.3...v5.8.2)

Updates `@playwright/test` from 1.50.1 to 1.51.1
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.50.1...v1.51.1)

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

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

---
updated-dependencies:
- dependency-name: "@google-cloud/storage"
  dependency-version: 7.16.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minors
- dependency-name: "@js-temporal/polyfill"
  dependency-version: 0.5.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minors
- dependency-name: "@prisma/client"
  dependency-version: 6.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minors
- dependency-name: "@shoelace-style/shoelace"
  dependency-version: 2.20.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minors
- dependency-name: n3
  dependency-version: 1.24.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minors
- dependency-name: "@types/n3"
  dependency-version: 1.24.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minors
- dependency-name: prisma
  dependency-version: 6.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minors
- dependency-name: remark-rehype
  dependency-version: 11.1.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minors
- dependency-name: typescript
  dependency-version: 5.8.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minors
- dependency-name: "@playwright/test"
  dependency-version: 1.51.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minors
- dependency-name: "@types/n3"
  dependency-version: 1.24.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minors
- dependency-name: "@types/node"
  dependency-version: 22.14.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minors
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Apr 4, 2025
Copy link
Contributor Author

dependabot bot commented on behalf of github Apr 11, 2025

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Apr 11, 2025
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/webserver/minors-242c78d343 branch April 11, 2025 19:40
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 javascript Pull requests that update Javascript code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants