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

Bump the production-dependencies group across 1 directory with 5 updates #9

Merged

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 10, 2025

Bumps the production-dependencies group with 4 updates in the / directory: @aws-sdk/client-s3, @hocuspocus/extension-database, @hocuspocus/extension-logger and @prisma/client.

Updates @aws-sdk/client-s3 from 3.735.0 to 3.744.0

Release notes

Sourced from @​aws-sdk/client-s3's releases.

v3.744.0

3.744.0(2025-02-07)

Chores
New Features
  • clients: update client endpoints as of 2025-02-07 (abfb6eab)
  • client-ecr: Adds support to handle the new basic scanning daily quota. (07297d32)
  • client-transcribe: This release adds support for the Clinical Note Template Customization feature for the AWS HealthScribe APIs within Amazon Transcribe. (91fce740)
  • client-transcribe-streaming: This release adds support for the Clinical Note Template Customization feature for the AWS HealthScribe Streaming APIs within Amazon Transcribe. (d338b705)
  • client-pi: Adds documentation for dimension groups and dimensions to analyze locks for Database Insights. (94f7ccb9)
  • client-eks: Introduce versionStatus field to take place of status field in EKS DescribeClusterVersions API (5b421306)
  • client-mediaconvert: This release adds support for Animated GIF output, forced chroma sample positioning metadata, and Extensible Wave Container format (5f0e21d8)

For list of updated packages, view updated-packages.md in assets-3.744.0.zip

v3.743.0

3.743.0(2025-02-06)

Chores
  • util-endpoints: update aws partitions.json (f4a25aef)
  • endpoints: update endpoints model (93ab6884)
  • models: update API models (82b00d0e)
New Features
  • client-cloudformation: We added 5 new stack refactoring APIs: CreateStackRefactor, ExecuteStackRefactor, ListStackRefactors, DescribeStackRefactor, ListStackRefactorActions. (0eb8c573)
  • client-s3: Updated list of the valid AWS Region values for the LocationConstraint parameter for general purpose buckets. (794f4b5c)
  • client-cost-optimization-hub: This release enables AWS Cost Optimization Hub to show cost optimization recommendations for Amazon Auto Scaling Groups, including those with single and mixed instance types. (57c15254)
  • client-connectcases: This release adds the ability to conditionally require fields on a template. Check public documentation for more information. (83f73550)

For list of updated packages, view updated-packages.md in assets-3.743.0.zip

v3.742.1

3.742.1(2025-02-05)

Documentation Changes
  • client-rds: Documentation updates to clarify the description for the parameter AllocatedStorage for the DB cluster data type, the description for the parameter DeleteAutomatedBackups for the DeleteDBCluster API operation, and removing an outdated note for the CreateDBParameterGroup API operation. (ba6ad0a6)

... (truncated)

Changelog

Sourced from @​aws-sdk/client-s3's changelog.

3.744.0 (2025-02-07)

Note: Version bump only for package @​aws-sdk/client-s3

3.743.0 (2025-02-06)

Features

  • client-s3: Updated list of the valid AWS Region values for the LocationConstraint parameter for general purpose buckets. (794f4b5)

3.741.0 (2025-02-03)

Note: Version bump only for package @​aws-sdk/client-s3

3.740.0 (2025-01-31)

Note: Version bump only for package @​aws-sdk/client-s3

3.738.0 (2025-01-29)

Features

  • client-s3: Change the type of MpuObjectSize in CompleteMultipartUploadRequest from int to long. (c7c525a)
Commits
  • e8bd309 Publish v3.744.0
  • 114bd9a chore(codegen): sync deprecated tag order (#6871)
  • be25eb6 Publish v3.743.0
  • 794f4b5 feat(client-s3): Updated list of the valid AWS Region values for the Location...
  • 2b3d1df Publish v3.741.0
  • 602116a Publish v3.740.0
  • 1b99b4f Publish v3.738.0
  • c7c525a feat(client-s3): Change the type of MpuObjectSize in CompleteMultipartUploadR...
  • See full diff in compare view

Updates @hocuspocus/extension-database from 2.15.0 to 2.15.2

Maintainer changes

This version was pushed to npm by tiptap-bot, a new releaser for @​hocuspocus/extension-database since your current version.


Updates @hocuspocus/extension-logger from 2.15.0 to 2.15.2

Maintainer changes

This version was pushed to npm by tiptap-bot, a new releaser for @​hocuspocus/extension-logger since your current version.


Updates @hocuspocus/server from 2.15.0 to 2.15.2

Maintainer changes

This version was pushed to npm by tiptap-bot, a new releaser for @​hocuspocus/server since your current version.


Updates @prisma/client from 6.2.1 to 6.3.1

Release notes

Sourced from @​prisma/client's releases.

6.3.1

This patch releases introduces improvements to the prisma init output when invoked to with the --db option.

Run npx prisma@latest init --db to get an instant Prisma Postgres database.

6.3.0

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

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

Highlights

A brand new Prisma Studio

In this release we've included several great improvements to Prisma Studio's developer experience. You can learn all about the changes we've made in our release blog post, but here's a short list:

Prisma Studio is back in the Console

Fans of Prisma Data Browser rejoice! The new Prisma Studio is now in the Prisma Console and is available for all PostgreSQL and MySQL databases.

A new model viewer

Previously, switching from model to model in Prisma Studio would require backing all the way out to the model view, then digging in again. With our new UI, it's easy to switch from model to model while keeping your place.

image

A new editing experience

If you're trying to edit a given field in a model, Prisma Studio made it quite easy. However, if you're trying to edit every field in a given row, it could get quite annoying to keep scrolling left to right. Our new edit sidebar resolves that with the ability to edit all fields for a given row at once.

image

Clean up at the click of a button

When editing a number of models, it can get difficult to get back to a clean slate. In the new Prisma Studio, we've added a "Close all" button that puts you back to a fresh start.

image

Add limit to updateMany() and deleteMany()

Previously, limit has not existed as a valid option in top level updateMany() and deleteMany() queries. In 6.3.0 limit is now available in these queries, bringing their features more in line with other query types.

You can use limit like the following:

await prisma.user.deleteMany({
  where: { column: 'value' },
  limit: 100,
});
</tr></table> 

... (truncated)

Commits
  • 531cb87 fix(error handling): ensure also unknown errors during interactive transactio...
  • 9cf9ccc refactor(client engine): client engine cleanups (#26159)
  • e526f4a chore(deps): update engines to 6.3.0-17.acc0b9dd43eb689cbd20c9470515d719db10d...
  • 00b79e5 fix(build): make typescript optional peer dependency to not accidentally bund...
  • 3c290c9 chore(compiler): ORM-517 integrate query compiler wasm into ClientEngine (#26...
  • 35aa821 feat(compiler): ORM-467 implement client side transaction manager (#26109)
  • d1a12be chore(deps): update devdependencies patch (non-major) (#26141)
  • e5acfdc feat(client): support in-memory joins in client executor (#26129)
  • 62a1a23 feat: query compiler vertical slice (#25910)
  • 6d19fd9 chore(deps): update engines to 6.3.0-16.eb5bc5493ac383a8fe3c3e7fabfc93e4d44ca...
  • Additional commits viewable in compare view

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 production-dependencies group with 4 updates in the / directory: [@aws-sdk/client-s3](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-s3), [@hocuspocus/extension-database](https://hocuspocus.dev), [@hocuspocus/extension-logger](https://hocuspocus.dev) and [@prisma/client](https://github.com/prisma/prisma/tree/HEAD/packages/client).


Updates `@aws-sdk/client-s3` from 3.735.0 to 3.744.0
- [Release notes](https://github.com/aws/aws-sdk-js-v3/releases)
- [Changelog](https://github.com/aws/aws-sdk-js-v3/blob/main/clients/client-s3/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.744.0/clients/client-s3)

Updates `@hocuspocus/extension-database` from 2.15.0 to 2.15.2

Updates `@hocuspocus/extension-logger` from 2.15.0 to 2.15.2

Updates `@hocuspocus/server` from 2.15.0 to 2.15.2

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

---
updated-dependencies:
- dependency-name: "@aws-sdk/client-s3"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@hocuspocus/extension-database"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@hocuspocus/extension-logger"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@hocuspocus/server"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@prisma/client"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
...

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 Feb 10, 2025
@JannikStreek JannikStreek merged commit e447ac0 into main Feb 14, 2025
3 checks passed
@JannikStreek JannikStreek deleted the dependabot/npm_and_yarn/production-dependencies-7a142ba09d branch February 14, 2025 09:04
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.

1 participant