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(deps): bump the all-minor-updates group with 17 updates #85

Closed

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github May 21, 2024

Bumps the all-minor-updates group with 17 updates:

Package From To
@prisma/client 5.13.0 5.14.0
axios 1.6.8 1.7.1
glob 10.3.12 10.3.15
joi 17.13.0 17.13.1
@commitlint/cli 19.2.1 19.3.0
@commitlint/config-conventional 19.1.0 19.2.2
@eslint/js 9.1.1 9.2.0
@redocly/cli 1.12.0 1.12.2
@vitest/coverage-istanbul 1.5.0 1.6.0
@vitest/ui 1.5.0 1.6.0
dotenv-cli 7.4.1 7.4.2
eslint-plugin-vitest 0.5.1 0.5.4
globals 15.0.0 15.1.0
prisma 5.13.0 5.14.0
tsx 4.7.2 4.9.3
typescript-eslint 7.6.0 7.8.0
vitest 1.5.0 1.6.0

Updates @prisma/client from 5.13.0 to 5.14.0

Release notes

Sourced from @​prisma/client's releases.

5.14.0

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

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

Highlights

Share your feedback about Prisma ORM

We want to know how you like working with Prisma ORM in your projects! Please take our 2min survey and let us know what you like or where we can improve 🙏

createManyAndReturn()

We’re happy to announce the availability of a new, top-level Prisma Client query: createManyAndReturn(). It works similarly to createMany() but uses a RETURNING clause in the SQL query to retrieve the records that were just created.

Here’s an example of creating multiple posts and then immediately returning those posts.

const postBodies = req.json()['posts']
const posts = prisma.post.createManyAndReturn({
data: postBodies
});
return posts

Additionally,createManyAndReturn() supports the same options as findMany(), such as the ability to return only specific fields.

const postBodies = req.json()['posts']
const postTitles = prisma.post.createManyAndReturn({
data: postBodies,
select: {
title: true,
},
});
return postTitles

Full documentation for this feature can be found in the Prisma Client API Reference.

Note: Because createManyAndReturn() uses the RETURNING clause, it is only supported by PostgreSQL, CockroachDB, and SQLite databases. At this time, relationLoadStrategy: join is not supported in createManyAndReturn() queries.

MongoDB performance improvements

Previously, Prisma ORM suffered from performance issues when using the in operator or when including related models in queries against a MongoDB database. These queries were translated by the Prisma query engine in such a way that indexes were skipped and collection scans were used, leading to slower queries especially on large datasets.

... (truncated)

Commits
  • e0006b1 chore(deps): update engines to 5.14.0-25.e9771e62de70f79a5e1c604a2d7c8e2a0a87...
  • 271d834 chore(deps): update engines to 5.14.0-24.879beb2a005f47f60608de797a554c8a500e...
  • d2701d4 feat: create no models flag for generate command (#24160)
  • 51ff5e4 chore(deps): update engines to 5.14.0-23.079da82321947525558fa7146f7737149538...
  • ea28e76 chore(deps): update dependency wrangler to v3.55.0 (#24147)
  • 7e66bc6 chore(deps): update engines to 5.14.0-21.6eec1600785bbff7acedfa57bc6826cdac2e...
  • 6fcc818 feat(cli): add prismaSchemaFolder support to prisma generate via `mergeSc...
  • 23aba0b docs: remove references to Prisma Slack (#24128)
  • 52589ae chore: Remove issue link from "Client did not initialize yet" (#24117)
  • c22724e feat(cli): ground work for prismaSchemaFolder, implementing validate, `form...
  • Additional commits viewable in compare view

Updates axios from 1.6.8 to 1.7.1

Release notes

Sourced from axios's releases.

Release v1.7.1

Release notes:

Bug Fixes

  • fetch: fixed ReferenceError issue when TextEncoder is not available in the environment; (#6410) (733f15f)

Contributors to this release

Release v1.7.0

Release notes:

Features

Bug Fixes

  • core/axios: handle un-writable error stack (#6362) (81e0455)

Contributors to this release

Release v1.7.0-beta.2

Release notes:

Bug Fixes

  • fetch: capitalize HTTP method names; (#6395) (ad3174a)
  • fetch: fix & optimize progress capturing for cases when the request data has a nullish value or zero data length (#6400) (95a3e8e)
  • fetch: fix headers getting from a stream response; (#6401) (870e0a7)

Contributors to this release

Release v1.7.0-beta.1

Release notes:

Bug Fixes

  • core/axios: handle un-writable error stack (#6362) (81e0455)
  • fetch: fix cases when ReadableStream or Response.body are not available; (#6377) (d1d359d)
  • fetch: treat fetch-related TypeError as an AxiosError.ERR_NETWORK error; (#6380) (bb5f9a5)

Contributors to this release

... (truncated)

Changelog

Sourced from axios's changelog.

1.7.1 (2024-05-20)

Bug Fixes

  • fetch: fixed ReferenceError issue when TextEncoder is not available in the environment; (#6410) (733f15f)

Contributors to this release

1.7.0 (2024-05-19)

Features

Bug Fixes

  • core/axios: handle un-writable error stack (#6362) (81e0455)

Contributors to this release

1.7.0-beta.2 (2024-05-19)

Bug Fixes

  • fetch: capitalize HTTP method names; (#6395) (ad3174a)
  • fetch: fix & optimize progress capturing for cases when the request data has a nullish value or zero data length (#6400) (95a3e8e)
  • fetch: fix headers getting from a stream response; (#6401) (870e0a7)

Contributors to this release

1.7.0-beta.1 (2024-05-07)

Bug Fixes

  • core/axios: handle un-writable error stack (#6362) (81e0455)
  • fetch: fix cases when ReadableStream or Response.body are not available; (#6377) (d1d359d)
  • fetch: treat fetch-related TypeError as an AxiosError.ERR_NETWORK error; (#6380) (bb5f9a5)

... (truncated)

Commits
  • 67d1373 chore(release): v1.7.1 (#6411)
  • 733f15f fix(fetch): fixed ReferenceError issue when TextEncoder is not available in t...
  • 3041c61 [Release] v1.7.0 (#6408)
  • 18b13cb chore(docs): add fetch adapter docs; (#6407)
  • e62099b fix(fetch): fixed a possible memory leak in the AbortController for the strea...
  • b49aa8e chore(release): v1.7.0-beta.2 (#6403)
  • d57f03a chore(ci): bump create-pull-request version to fix a bug; (#6405)
  • 097b0d1 chore(ci): add tag resolution for npm releases based on package version; (#6404)
  • 870e0a7 fix(fetch): fix headers getting from a stream response; (#6401)
  • 95a3e8e fix(fetch): fix & optimize progress capturing for cases when the request data...
  • Additional commits viewable in compare view

Updates glob from 10.3.12 to 10.3.15

Commits

Updates joi from 17.13.0 to 17.13.1

Commits

Updates @commitlint/cli from 19.2.1 to 19.3.0

Release notes

Sourced from @​commitlint/cli's releases.

v19.3.0

19.3.0 (2024-04-23)

Features

Chore

New Contributors

Full Changelog: conventional-changelog/commitlint@v19.2.2...v19.3.0

v19.2.2

19.2.2 (2024-04-14)

Bug Fixes

Chore

New Contributors

Full Changelog: conventional-changelog/commitlint@v19.2.1...v19.2.2

Changelog

Sourced from @​commitlint/cli's changelog.

19.3.0 (2024-04-23)

Note: Version bump only for package @​commitlint/cli

19.2.2 (2024-04-14)

Note: Version bump only for package @​commitlint/cli

Commits

Updates @commitlint/config-conventional from 19.1.0 to 19.2.2

Release notes

Sourced from @​commitlint/config-conventional's releases.

v19.2.2

19.2.2 (2024-04-14)

Bug Fixes

Chore

New Contributors

Full Changelog: conventional-changelog/commitlint@v19.2.1...v19.2.2

v19.2.1

19.2.1 (2024-03-19)

Bug Fixes

New Contributors

Full Changelog: conventional-changelog/commitlint@v19.2.0...v19.2.1

v19.2.0

19.2.0 (2024-03-15)

Features

New Contributors

Full Changelog: conventional-changelog/commitlint@v19.1.0...v19.2.0

Changelog

Sourced from @​commitlint/config-conventional's changelog.

19.2.2 (2024-04-14)

Note: Version bump only for package @​commitlint/config-conventional

Commits

Updates @eslint/js from 9.1.1 to 9.2.0

Release notes

Sourced from @​eslint/js's releases.

v9.2.0

Features

  • 8485d76 feat: no-case-declarations add suggestions (#18388) (Josh Goldberg ✨)
  • a498f35 feat: update Unicode letter detection in capitalized-comments rule (#18375) (Francesco Trotta)

Bug Fixes

  • eeec413 fix: do not throw when defining a global named defineSetter (#18364) (唯然)

Documentation

  • 0f5df50 docs: Update README (GitHub Actions Bot)
  • 1579ce0 docs: update wording regarding indirect eval (#18394) (Kirk Waiblinger)
  • f12a02c docs: update to eslint v9 in custom-rule-tutorial (#18383) (唯然)

Chores

  • b346605 chore: upgrade @​eslint/js@​9.2.0 (#18413) (Milos Djermanovic)
  • c4c18e0 chore: package.json update for @​eslint/js release (Jenkins)
  • 284722c chore: package.json update for eslint-config-eslint release (Jenkins)
  • 347d44f chore: remove eslintrc export from eslint-config-eslint (#18400) (Milos Djermanovic)
  • f316e20 ci: run tests in Node.js 22 (#18393) (Francesco Trotta)
Changelog

Sourced from @​eslint/js's changelog.

v9.2.0 - May 3, 2024

  • b346605 chore: upgrade @​eslint/js@​9.2.0 (#18413) (Milos Djermanovic)
  • c4c18e0 chore: package.json update for @​eslint/js release (Jenkins)
  • 284722c chore: package.json update for eslint-config-eslint release (Jenkins)
  • 0f5df50 docs: Update README (GitHub Actions Bot)
  • 347d44f chore: remove eslintrc export from eslint-config-eslint (#18400) (Milos Djermanovic)
  • 8485d76 feat: no-case-declarations add suggestions (#18388) (Josh Goldberg ✨)
  • a498f35 feat: update Unicode letter detection in capitalized-comments rule (#18375) (Francesco Trotta)
  • 1579ce0 docs: update wording regarding indirect eval (#18394) (Kirk Waiblinger)
  • f316e20 ci: run tests in Node.js 22 (#18393) (Francesco Trotta)
  • eeec413 fix: do not throw when defining a global named defineSetter (#18364) (唯然)
  • f12a02c docs: update to eslint v9 in custom-rule-tutorial (#18383) (唯然)
Commits

Updates @redocly/cli from 1.12.0 to 1.12.2

Release notes

Sourced from @​redocly/cli's releases.

@​redocly/cli@​1.12.2

Patch Changes

  • Updated @​redocly/openapi-core to v1.12.2.

@​redocly/cli@​1.12.1

Patch Changes

  • Updated @​redocly/openapi-core to v1.12.1.
Changelog

Sourced from @​redocly/cli's changelog.

1.12.2 (2024-05-09)

Patch Changes

  • Updated @​redocly/openapi-core to v1.12.2.

1.12.1 (2024-05-09)

Patch Changes

  • Updated @​redocly/openapi-core to v1.12.1.
Commits
  • f0471c4 chore: 🔖 release new versions (#1556)
  • 71e4910 fix: check if the config file exists (#1555)
  • 6681831 chore: 🔖 release new versions (#1553)
  • 1535818 chore: update @​redocly/config version to 0.5.0 (#1554)
  • a96ce09 fix: prevent loadConfig from failing in browser env and do not sent auth requ...
  • e2b59a0 1534-review-guide-for-replacing-servers (#1542)
  • 875dfa8 docs: replace relative links leading outside of the directory (#1515)
  • See full diff in compare view

Updates @vitest/coverage-istanbul from 1.5.0 to 1.6.0

Release notes

Sourced from @​vitest/coverage-istanbul's releases.

v1.6.0

   🚀 Features

   🐞 Bug Fixes

   🏎 Performance

    View changes on GitHub

v1.5.3

   🐞 Bug Fixes

    View changes on GitHub

v1.5.2

   🐞 Bug Fixes

    View changes on GitHub

v1.5.1

   🚀 Features

... (truncated)

Commits

Updates @vitest/ui from 1.5.0 to 1.6.0

Release notes

Sourced from @​vitest/ui's releases.

v1.6.0

   🚀 Features

   🐞 Bug Fixes

   🏎 Performance

    View changes on GitHub

v1.5.3

   🐞 Bug Fixes

    View changes on GitHub

v1.5.2

   🐞 Bug Fixes

    View changes on GitHub

v1.5.1

   🚀 Features

... (truncated)

Commits

Updates dotenv-cli from 7.4.1 to 7.4.2

Commits

Updates eslint-plugin-vitest from 0.5.1 to 0.5.4

Release notes

Sourced from eslint-plugin-vitest's releases.

v0.5.4

Features

  • support old Eslint configuration
  • update dependencies

v0.5.3

Bug Fixes

v0.5.2

Features

Commits

Updates globals from 15.0.0 to 15.1.0

Release notes

Sourced from globals's releases.

v15.1.0

  • Update (#246) fa21dea

sindresorhus/globals@v15.0.0...v15.1.0

Commits

Updates prisma from 5.13.0 to 5.14.0

Release notes

Sourced from prisma's releases.

5.14.0

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

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

Highlights

Share your feedback about Prisma ORM

We want to know how you like working with Prisma ORM in your projects! Please take our 2min survey and let us know what you like or where we can improve 🙏

createManyAndReturn()

We’re happy to announce the availability of a new, top-level Prisma Client query: createManyAndReturn(). It works similarly to createMany() but uses a...

Description has been truncated

updated-dependencies:
- dependency-name: "@prisma/client"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-minor-updates
- dependency-name: axios
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-minor-updates
- dependency-name: glob
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-minor-updates
- dependency-name: joi
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-minor-updates
- dependency-name: "@commitlint/cli"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-minor-updates
- dependency-name: "@commitlint/config-conventional"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-minor-updates
- dependency-name: "@eslint/js"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-minor-updates
- dependency-name: "@redocly/cli"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-minor-updates
- dependency-name: "@vitest/coverage-istanbul"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-minor-updates
- dependency-name: "@vitest/ui"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-minor-updates
- dependency-name: dotenv-cli
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-minor-updates
- dependency-name: eslint-plugin-vitest
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-minor-updates
- dependency-name: globals
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-minor-updates
- dependency-name: prisma
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-minor-updates
- dependency-name: tsx
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-minor-updates
- dependency-name: typescript-eslint
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-minor-updates
- dependency-name: vitest
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-minor-updates
...

Signed-off-by: dependabot[bot] <[email protected]>
Copy link
Contributor Author

dependabot bot commented on behalf of github May 22, 2024

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

@dependabot dependabot bot closed this May 22, 2024
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/all-minor-updates-f104d06d78 branch May 22, 2024 22:59
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
Status: Done
Development

Successfully merging this pull request may close these issues.

0 participants