Skip to content

Bump the minors group across 1 directory with 8 updates #242

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 Mar 14, 2025

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

Package From To
@prisma/client 6.4.1 6.5.0
@shoelace-style/shoelace 2.20.0 2.20.1
n3 1.23.1 1.24.0
@types/n3 1.21.1 1.24.1
prisma 6.4.1 6.5.0
typescript 5.7.3 5.8.2
@playwright/test 1.50.1 1.51.0
@types/node 22.13.5 22.13.10

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.0

Release notes

Sourced from n3's releases.

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
  • 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)
  • 54cdebd chore(deps-dev): Bump rdf-isomorphic from 1.3.1 to 2.0.0 (#483)
  • 8e512cb chore(deps): Bump readable-stream from 4.6.0 to 4.7.0 in the minor group (#480)
  • 4b54ae4 chore(deps): Bump the minor group with 2 updates (#478)
  • Additional commits viewable in compare view

Updates @types/n3 from 1.21.1 to 1.24.1

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 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.0

Release notes

Sourced from @​playwright/test's releases.

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.

// example.spec.ts
test('some test', async ({ page }) => {
  // Ignore invisible todo items.
  const todoItems = page.getByTestId('todo-item').filter({ visible: true });
  // Check there are exactly 3 visible ones.
  await expect(todoItems).toHaveCount(3);
});

Git information in HTML report

Set option testConfig.captureGitInfo to capture git information into testConfig.metadata.

// playwright.config.ts
import { defineConfig } from '@playwright/test';
</tr></table>

... (truncated)

Commits

Updates @types/n3 from 1.21.1 to 1.24.1

Commits

Updates @types/node from 22.13.5 to 22.13.10

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 8 updates in the /webserver directory:

| Package | From | To |
| --- | --- | --- |
| [@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.0` |
| [@types/n3](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/n3) | `1.21.1` | `1.24.1` |
| [prisma](https://github.com/prisma/prisma/tree/HEAD/packages/cli) | `6.4.1` | `6.5.0` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.7.3` | `5.8.2` |
| [@playwright/test](https://github.com/microsoft/playwright) | `1.50.1` | `1.51.0` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `22.13.5` | `22.13.10` |



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.0
- [Release notes](https://github.com/rdfjs/N3.js/releases)
- [Commits](rdfjs/N3.js@v1.23.1...v1.24.0)

Updates `@types/n3` from 1.21.1 to 1.24.1
- [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 `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.yml)
- [Commits](microsoft/TypeScript@v5.7.3...v5.8.2)

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

Updates `@types/n3` from 1.21.1 to 1.24.1
- [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.13.10
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

---
updated-dependencies:
- dependency-name: "@prisma/client"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minors
- dependency-name: "@shoelace-style/shoelace"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minors
- dependency-name: n3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minors
- dependency-name: "@types/n3"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minors
- dependency-name: prisma
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minors
- dependency-name: typescript
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minors
- dependency-name: "@playwright/test"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minors
- dependency-name: "@types/n3"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minors
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minors
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Mar 14, 2025
Copy link
Contributor Author

dependabot bot commented on behalf of github Mar 28, 2025

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

@dependabot dependabot bot closed this Mar 28, 2025
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/webserver/minors-cb5f129da6 branch March 28, 2025 19:10
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