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

Update all non-major dependencies #259

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jun 20, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@floatie/widget-nuxt 2.1.1 -> 2.2.0 age adoption passing confidence dependencies minor
@formkit/nuxt 1.6.5 -> 1.6.9 age adoption passing confidence dependencies patch
@formkit/themes (source) 1.6.5 -> 1.6.9 age adoption passing confidence dependencies patch
@iconify-json/ph 1.1.13 -> 1.2.2 age adoption passing confidence dependencies minor
@playwright/test (source) 1.44.1 -> 1.50.0 age adoption passing confidence devDependencies minor
@prisma/client (source) 6.0.0 -> 6.2.1 age adoption passing confidence dependencies minor
@tanstack/vue-query (source) 5.45.0 -> 5.64.2 age adoption passing confidence dependencies minor
@types/node (source) 22.10.1 -> 22.10.10 age adoption passing confidence devDependencies patch
@vueuse/components (source) 10.11.0 -> 10.11.1 age adoption passing confidence dependencies patch
@vueuse/core (source) 10.11.0 -> 10.11.1 age adoption passing confidence devDependencies patch
@vueuse/nuxt (source) 10.11.0 -> 10.11.1 age adoption passing confidence devDependencies patch
@vueuse/router (source) 10.11.0 -> 10.11.1 age adoption passing confidence dependencies patch
dotenv-cli 7.4.2 -> 7.4.4 age adoption passing confidence devDependencies patch
nanoid 5.0.7 -> 5.0.9 age adoption passing confidence dependencies patch
node (source) 22.12.0 -> 22.13.1 age adoption passing confidence minor
nuxt (source) 3.12.2 -> 3.15.2 age adoption passing confidence devDependencies minor
pnpm (source) 9.4.0 -> 9.15.4 age adoption passing confidence packageManager minor
prisma (source) 6.0.0 -> 6.2.1 age adoption passing confidence devDependencies minor
typescript (source) 5.4.5 -> 5.7.3 age adoption passing confidence dependencies minor

Release Notes

floatie-io/widgets (@​floatie/widget-nuxt)

v2.1.7

Compare Source

v2.1.3

Compare Source

v2.1.2

Compare Source

formkit/formkit (@​formkit/nuxt)

v1.6.9

Compare Source

v1.6.8

Compare Source

🐛 Bug Fixes

  • Now imports FormKitSchema automatically from @formkit/vue when autoImport is true in Nuxt (#​1286)
  • Fixes a bug that caused falsey values to not reset properly (#​1509)

v1.6.7

Compare Source

🐛 Bug Fixes

  • Fixes compatibility with Vue 3.5.6 (#​1501)
  • Indicates compatibility with new v4 nuxt (#​1418)
  • Fixes casing for the type prop of datetime-local input (#​1486)
  • Keeps placeholder for null or undefined as well (#​1474)

💪 New features

  • New validation rules date_before_or_equal, date_after_or_equal, date_before_node, date_after_node

v1.6.6

Compare Source

🐛 Bug fixes
  • Fixes a bug that caused cleanup issues in Vue 3.5+ (#​1496).
formkit/formkit (@​formkit/themes)

v1.6.9

Compare Source

v1.6.8

Compare Source

🐛 Bug Fixes
  • Now imports FormKitSchema automatically from @formkit/vue when autoImport is true in Nuxt (#​1286)
  • Fixes a bug that caused falsey values to not reset properly (#​1509)

v1.6.7

Compare Source

🐛 Bug Fixes
  • Fixes compatibility with Vue 3.5.6 (#​1501)
  • Indicates compatibility with new v4 nuxt (#​1418)
  • Fixes casing for the type prop of datetime-local input (#​1486)
  • Keeps placeholder for null or undefined as well (#​1474)
💪 New features
  • New validation rules date_before_or_equal, date_after_or_equal, date_before_node, date_after_node

v1.6.6

Compare Source

🐛 Bug fixes
  • Fixes a bug that caused cleanup issues in Vue 3.5+ (#​1496).
microsoft/playwright (@​playwright/test)

v1.50.0

Compare Source

Test runner

  • New option timeout allows specifying a maximum run time for an individual test step. A timed-out step will fail the execution of the test.

    test('some test', async ({ page }) => {
      await test.step('a step', async () => {
        // This step can time out separately from the test
      }, { timeout: 1000 });
    });
  • New method test.step.skip() to disable execution of a test step.

    test('some test', async ({ page }) => {
      await test.step('before running step', async () => {
        // Normal step
      });
    
      await test.step.skip('not yet ready', async () => {
        // This step is skipped
      });
    
      await test.step('after running step', async () => {
        // This step still runs even though the previous one was skipped
      });
    });
  • Expanded expect(locator).toMatchAriaSnapshot() to allow storing of aria snapshots in separate YAML files.

  • Added method expect(locator).toHaveAccessibleErrorMessage() to assert the Locator points to an element with a given aria errormessage.

  • Option testConfig.updateSnapshots added the configuration enum changed. changed updates only the snapshots that have changed, whereas all now updates all snapshots, regardless of whether there are any differences.

  • New option testConfig.updateSourceMethod defines the way source code is updated when testConfig.updateSnapshots is configured. Added overwrite and 3-way modes that write the changes into source code, on top of existing patch mode that creates a patch file.

    npx playwright test --update-snapshots=changed --update-source-method=3way
  • Option testConfig.webServer added a gracefulShutdown field for specifying a process kill signal other than the default SIGKILL.

  • Exposed testStep.attachments from the reporter API to allow retrieval of all attachments created by that step.

UI updates

  • Updated default HTML reporter to improve display of attachments.
  • New button for picking elements to produce aria snapshots.
  • Additional details (such as keys pressed) are now displayed alongside action API calls in traces.
  • Display of canvas content in traces is error-prone. Display is now disabled by default, and can be enabled via the Display canvas content UI setting.
  • Call and Network panels now display additional time information.

Breaking

Browser Versions

  • Chromium 133.0.6943.16
  • Mozilla Firefox 134.0
  • WebKit 18.2

This version was also tested against the following stable channels:

  • Google Chrome 132
  • Microsoft Edge 132

v1.49.1

Compare Source

Highlights

https://github.com/microsoft/playwright/issues/33802 - [Bug]: Codegen's Clear button doesn't work if not recordinghttps://github.com/microsoft/playwright/issues/338066 - [Bug]: playwright hangs while waiting for pending navigationhttps://github.com/microsoft/playwright/issues/3378787 - [Bug]: VSC extension isn't capturing all entered tehttps://github.com/microsoft/playwright/issues/33788788 - [Regression]: Double clicking the steps in trace viewer doesn't filter actihttps://github.com/microsoft/playwright/issues/337723772 - [Bug]: aria_snapshot generates invalid yaml when combined with an aria-label attrhttps://github.com/microsoft/playwright/issues/3379133791 - [Bug]: text input with number value raises "container is not iterable" with to_match_aria_snahttps://github.com/microsoft/playwright/issues/33644/33644 - [Bug]: getByRole can't find element with the accessible name from label element when aria-labelledby is nothttps://github.com/microsoft/playwright/issues/33660s/33660 - [Regression]: Unable to open Playwright UI in Dark Mode

Browser Versions
  • Chromium 131.0.6778.33
  • Mozilla Firefox 132.0
  • WebKit 18.2

This version was also tested against the following stable channels:

  • Google Chrome 130
  • Microsoft Edge 130

v1.49.0

Compare Source

v1.48.2

Compare Source

v1.48.1

Compare Source

Highlights

https://github.com/microsoft/playwright/issues/33023 - [Bug]: command line flag --headed has no effect in ui modehttps://github.com/microsoft/playwright/issues/331077 - [REGRESSION]: page.waitForRequest does not get resolved since 1.48.https://github.com/microsoft/playwright/issues/3308585 - [Bug]: WebSocket route does not handle full URLs in Playwrighttps://github.com/microsoft/playwright/issues/33052052 - [Regression]: Inspector not showing recorded sthttps://github.com/microsoft/playwright/issues/331323132 - [Bug]: Wrong Ubuntu release name in Dockerfile.nhttps://github.com/microsoft/playwright/pull/3299632996 - [BUG] Trace attachments have small unusable height

Browser Versions

  • Chromium 130.0.6723.19
  • Mozilla Firefox 130.0
  • WebKit 18.0

This version was also tested against the following stable channels:

  • Google Chrome 129
  • Microsoft Edge 129

v1.48.0

Compare Source

v1.47.2

Compare Source

Highlights

https://github.com/microsoft/playwright/pull/32699- [REGRESSION]: fix(codegen): use content_frame property in python/.NEThttps://github.com/microsoft/playwright/issues/327066- [REGRESSION]: page.pause() does not pause test timeout after 1.4https://github.com/microsoft/playwright/pull/3266161 - fix(trace-viewer): time delta between local and remote actions

Browser Versions

  • Chromium 129.0.6668.29
  • Mozilla Firefox 130.0
  • WebKit 18.0

This version was also tested against the following stable channels:

  • Google Chrome 128
  • Microsoft Edge 128

v1.47.1

Compare Source

v1.47.0

Compare Source

v1.46.1

Compare Source

v1.46.0

Compare Source

v1.45.3

Compare Source

v1.45.2

Compare Source

v1.45.1

Compare Source

v1.45.0

Compare Source

prisma/prisma (@​prisma/client)

v6.2.1

Compare Source

Today we are releasing the 6.2.1 patch release to address an issue with some of the omitApi preview feature checks having been accidentally omitted when making the feature GA. Now it is fully functional without the preview feature flag.

Changes

v6.2.0

Compare Source

Today we're releasing Prisma ORM version 6.2.0 🎉

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

We have a number of new features in this version, including support for json and enum fields in SQLite, a new updateManyAndReturn function, support for ULID values, as well as the promotion of the omit feature from Preview to Generally Availability.

Highlights

Excluding fields via omit is now production-ready

Our number one requested feature is out of Preview and Generally Available. In 6.2.0, you no longer need to add omitApi to your list of Preview features:

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

As a refresher: omit allows you to exclude certain fields from being returned in the results of your Prisma Client queries.

You can either do this locally, on a per-query level:

const result = await prisma.user.findMany({
  omit: {
    password: true,
  },
});

Or globally, to ensure a field is excluded from all queries of a certain model:

const prisma = new PrismaClient({
  omit: {
    user: {
      password: true
    }
  }
})

// The password field is excluded in all queries, including this one
const user = await prisma.user.findUnique({ where: { id: 1 } })

For more information on omit, be sure to check our documentation.

json and enum fields in SQLite

Previous to this version, you could not define json and enum fields in your Prisma schema when using SQLite. The respective GitHub issues have been among the most popular ones in our repo, so with our new approach to open-source governance, we finally got to work and implemented these.

Working with JSON and Enum fields works similarly to other database providers, here’s an example:

datasource db {
  provider = "sqlite"
  url      = "file:./dev.db"
}

model User {
  id   Int    @​id @​default(autoincrement())
  name String
  role Role  
  data Json
}

enum Role {
  Customer
  Admin 
}
Support for auto-generated ULID values

Similar to cuid2 support released in ORM version 6.0.0, we are now adding support for Universally Unique Lexicographically Sortable Identifiers (or short: ULIDs 😄) in version 6.2.0. A ULID value is a 26-character alphanumeric string, e.g. 01GZ0GZ3XARH8ZP44A7TQ2W4ZD.

With this new feature, you can now create records with auto-generated ULID values for String fields:

model User {
  id String @​id @​default(ulid())  
}
New batch function: updateManyAndReturn

updateMany allows you to update many records in your database, but it only returns the count of the affected rows, not the resulting rows themselves. With updateManyAndReturn you are now able to achieve this:

const users = await prisma.user.updateManyAndReturn({
  where: {
    email: {
      contains: 'prisma.io',
    }
  },
  data: {
    role: 'ADMIN'
  }
})

This call to updateManyAndReturn will now return the actual records that have been updated in the query:

[{
  id: 22,
  name: 'Alice',
  email: '[email protected]',
  profileViews: 0,
  role: 'ADMIN',
  coinflips: []
}, {
  id: 23,
  name: 'Bob',
  email: '[email protected]',
  profileViews: 0,
  role: 'ADMIN',
  coinflips: []
}]

Please note that like createManyAndReturn, updateManyAndReturn is only supported in PostgreSQL, CockroachDB, and SQLite.

Fixed runtime error in Node.js v23

While not officially supported, we understand that a lot of you like to be on the latest Node.js version — so we fixed an error that only occurred on Node.js 23. Happy coding ✌️

Prisma is hiring 🤝

Join us at Prisma to work on the most popular TypeScript ORM and other exciting products like the first serverless database built on unikernels!

We currently have two open roles in our Engineering team:

If these don’t fit, you can still check out our jobs page and send a general application.

v6.1.0

Compare Source

Today we're releasing Prisma ORM version 6.1.0

In this version our tracing Preview feature is being graduated to GA!

Highlights
Tracing goes GA

The tracing Preview feature is now stable. You now no longer have to include tracing in your set of enabled preview features.

generator client {
   provider        = "prisma-client-js"
-  previewFeatures = ["tracing"]
}

We have also changed some of the spans generated by Prisma Client. Previously, a trace would report the following spans:

prisma:client:operation
prisma:client:serialize
prisma:engine
prisma:engine:connection
prisma:engine:db_query
prisma:engine:serialize

Now, the following are reported:

prisma:client:operation
prisma:client:serialize
prisma:engine:query
prisma:engine:connection
prisma:engine:db_query
prisma:engine:serialize
prisma:engine:response_json_serialization

Additionally, we have made a few changes to our dependencies:

  • @opentelemetry/api is now a peer dependency instead of a regular dependency
  • registerInstrumentations in @opentelemetry/instrumentation is now re-exported by @prisma/instrumentation

After upgrading to Prisma ORM 6.1.0 you will need to add @opentelemetry/api to your dependencies if you haven't already:

npm install @​opentelemetry/api

You will also no longer need to have @opentelemetry/instrumentation if you only use registerInstrumentations. In this case you can import registerInstrumentations from @prisma/instrumentation

- import { PrismaInstrumentation } from '@​prisma/instrumentation'
+ import { PrismaInstrumentation, registerInstrumentations } from '@​prisma/instrumentation'
Bug fixes
Tracing related

As we're moving our tracing preview to GA, a number of issues have been resolved. Here are a few highlights:

Other issues

We also have a number of other issues that were resolved outside of our tracing feature.

Fixes and improvements
Prisma
Prisma Client

v6.0.1

Compare Source

TanStack/query (@​tanstack/vue-query)

v5.64.2

Compare Source

Version 5.64.2 - 1/19/25, 8:45 AM

Changes

Fix
  • react-query: add missing subscribed option to UseInfiniteQueryOptions (#​8546) (3e3fba9) by Seyed Mohammad Asadi
Chore
  • deps: replace rimraf with premove (#​8532) (f04dd19) by Lachlan Collins

Packages

v5.64.1

Compare Source

Version 5.64.1 - 1/13/25, 1:23 PM

Changes

Fix

Packages

v5.64.0

Compare Source

Version 5.64.0 - 1/11/25, 6:59 PM

Changes
Feat
Docs
Packages

v5.62.16

Compare Source

Version 5.62.16 - 1/6/25, 7:15 PM (Manual Release)

Changes

Fix
  • QueriesObserver: include default options on duplicate query, queryHash check (#​8432) (e664d22) by nick-avi-say
  • vue-query: ensure queryKey match the current value of ref used inside (#​8443) (3104854) by @​Mini-ghost
  • react-query: eslint-plugin-query now working with vanilla js (#​8322) (f6757a6) by Ifeanyi Aladi
  • eslint-plugin-query: export Plugin interface (#​8392) (9a0ca9b) by Tomáš Vojtášek
Test
  • add a test to ensure new meta gets accepted by fetchQuery (d08d115) by Dominik Dorfmeister

Packages


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/all-minor-patch branch 9 times, most recently from 859531b to 52913cc Compare June 27, 2024 15:24
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 7 times, most recently from 8cc0ff0 to 9509a41 Compare July 5, 2024 22:08
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from 80b9a4a to 1b421e8 Compare July 11, 2024 06:12
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 9 times, most recently from 1af7ecd to 9a36863 Compare July 22, 2024 19:08
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 5e81ecf to 533fe6c Compare December 11, 2024 10:06
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from 378f3c2 to 738b06b Compare December 20, 2024 21:31
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from dcbb065 to 11b30fd Compare December 28, 2024 22:24
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 7 times, most recently from ada0ce4 to a9063ca Compare January 11, 2025 21:57
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from 379f621 to 67f6d4e Compare January 19, 2025 09:49
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from b8e1b77 to df6eecc Compare January 23, 2025 09:32
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from df6eecc to c003486 Compare January 23, 2025 18:12
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants