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

deps(example): bump the dependencies group across 1 directory with 6 updates #2504

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 9, 2024

Bumps the dependencies group with 6 updates in the /examples/nestjs-graphql directory:

Package From To
@nestjs/apollo 12.2.1 12.2.2
@nestjs/core 10.4.12 10.4.15
@nestjs/graphql 12.2.1 12.2.2
@nestjs/platform-express 10.4.12 10.4.15
@nestjs/cli 10.4.8 10.4.9
prettier 3.4.1 3.4.2

Updates @nestjs/apollo from 12.2.1 to 12.2.2

Release notes

Sourced from @​nestjs/apollo's releases.

v12.2.2

12.2.2 (2024-12-04)

Enhancements

  • graphql
    • #3346 refactor(graphql/lib): definitions generator defaultTypeMapping type reinforcement (@​Neosoulink)

Dependencies

Committers: 2

Commits
  • d2b9e6e v12.2.2
  • 91771ab Merge pull request #3400 from nestjs/renovate/fastify-4.x
  • 5bfc804 test: update pubsub method
  • f818942 chore(deps): update dependency fastify to v4.29.0
  • b592156 Merge pull request #3370 from nestjs/renovate/major-apollo-graphql-packages
  • fef8159 chore(deps): update dependency graphql-subscriptions to v3
  • f273dee Merge pull request #3346 from Neosoulink/feat/generator-type-mapping
  • 70775a7 Merge pull request #3392 from nestjs/renovate/graphql-tools-monorepo
  • bcf803f Merge pull request #3399 from nestjs/renovate/prettier-3.x
  • 015d54d chore(deps): update dependency prettier to v3.4.2
  • Additional commits viewable in compare view

Updates @nestjs/core from 10.4.12 to 10.4.15

Release notes

Sourced from @​nestjs/core's releases.

v10.4.15 (2024-12-09)

Dependencies

v10.4.13 (2024-12-03)

Bug fixes

  • common
    • #14256 chore(common): Add type declaration for RawBody decorator with pipes (@​sapenlei)

Dependencies

Committers: 3

Commits

Updates @nestjs/graphql from 12.2.1 to 12.2.2

Release notes

Sourced from @​nestjs/graphql's releases.

v12.2.2

12.2.2 (2024-12-04)

Enhancements

  • graphql
    • #3346 refactor(graphql/lib): definitions generator defaultTypeMapping type reinforcement (@​Neosoulink)

Dependencies

Committers: 2

Commits
  • d2b9e6e v12.2.2
  • 91771ab Merge pull request #3400 from nestjs/renovate/fastify-4.x
  • 5bfc804 test: update pubsub method
  • f818942 chore(deps): update dependency fastify to v4.29.0
  • b592156 Merge pull request #3370 from nestjs/renovate/major-apollo-graphql-packages
  • fef8159 chore(deps): update dependency graphql-subscriptions to v3
  • f273dee Merge pull request #3346 from Neosoulink/feat/generator-type-mapping
  • 70775a7 Merge pull request #3392 from nestjs/renovate/graphql-tools-monorepo
  • bcf803f Merge pull request #3399 from nestjs/renovate/prettier-3.x
  • 015d54d chore(deps): update dependency prettier to v3.4.2
  • Additional commits viewable in compare view

Updates @nestjs/platform-express from 10.4.12 to 10.4.15

Release notes

Sourced from @​nestjs/platform-express's releases.

v10.4.15 (2024-12-09)

Dependencies

v10.4.13 (2024-12-03)

Bug fixes

  • common
    • #14256 chore(common): Add type declaration for RawBody decorator with pipes (@​sapenlei)

Dependencies

Committers: 3

Commits

Updates @nestjs/cli from 10.4.8 to 10.4.9

Release notes

Sourced from @​nestjs/cli's releases.

Release 10.4.9

  • Merge pull request #2838 from yifanwww/fix/webpack-ignore-lazy-imports (3d0fe0b5)
  • fix: add missing class-transformer/storage in lazy import list (a1cc6cfe)
  • Merge pull request #2815 from nestjs/renovate/typescript-5.x (4af113ec)
Commits
  • 81e15c3 chore(): release v10.4.9
  • 3d0fe0b Merge pull request #2838 from yifanwww/fix/webpack-ignore-lazy-imports
  • a1cc6cf fix: add missing class-transformer/storage in lazy import list
  • 4af113e Merge pull request #2815 from nestjs/renovate/typescript-5.x
  • 2e929c3 fix(deps): update dependency typescript to v5.7.2
  • 67503d3 Merge pull request #2830 from nestjs/renovate/webpack-5.x
  • 6110b8e chore(deps): update dependency @​swc/core to v1.10.1 (#2837)
  • ce66172 fix(deps): update dependency webpack to v5.97.1
  • bec6134 chore(deps): update dependency @​swc/core to v1.10.0 (#2832)
  • b10c00e chore(deps): update dependency prettier to v3.4.2 (#2831)
  • Additional commits viewable in compare view

Updates prettier from 3.4.1 to 3.4.2

Release notes

Sourced from prettier's releases.

3.4.2

🔗 Changelog

Changelog

Sourced from prettier's changelog.

3.4.2

diff

Treat U+30A0 & U+30FB in Katakana Block as CJK (#16796 by @​tats-u)

Prettier doesn't treat U+30A0 & U+30FB as Japanese. U+30FB is commonly used in Japanese to represent the delimitation of first and last names of non-Japanese people or “and”. The following “C言語・C++・Go・Rust” means “C language & C++ & Go & Rust” in Japanese.

<!-- Input (--prose-wrap=never) -->
C言
語
・
C++
・
Go
・
Rust
<!-- Prettier 3.4.1 -->
C言語・ C++ ・ Go ・ Rust
<!-- Prettier 3.4.2 -->
C言語・C++・Go・Rust

U+30A0 can be used as the replacement of the - in non-Japanese names (e.g. “Saint-Saëns” (Charles Camille Saint-Saëns) can be represented as “サン゠サーンス” in Japanese), but substituted by ASCII hyphen (U+002D) or U+FF1D (full width hyphen) in many cases (e.g. “サン=サーンス” or “サン=サーンス”).

Fix comments print on class methods with decorators (#16891 by @​fisker)

// Input
class A {
  @decorator
  /** 
   * The method description
   *
  */
  async method(foo: Foo, bar: Bar) {
    console.log(foo);
  }
}
// Prettier 3.4.1
class A {
@​decorator
async /**
</tr></table>

... (truncated)

Commits

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

@dependabot dependabot bot requested a review from a team as a code owner December 9, 2024 15:51
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Dec 9, 2024
@dependabot dependabot bot requested review from blaine-arcjet and e-moran December 9, 2024 15:51
Copy link

trunk-io bot commented Dec 9, 2024

😎 Merged successfully - details.

Copy link

socket-security bot commented Dec 9, 2024

…updates

Bumps the dependencies group with 6 updates in the /examples/nestjs-graphql directory:

| Package | From | To |
| --- | --- | --- |
| [@nestjs/apollo](https://github.com/nestjs/graphql) | `12.2.1` | `12.2.2` |
| [@nestjs/core](https://github.com/nestjs/nest/tree/HEAD/packages/core) | `10.4.12` | `10.4.15` |
| [@nestjs/graphql](https://github.com/nestjs/graphql) | `12.2.1` | `12.2.2` |
| [@nestjs/platform-express](https://github.com/nestjs/nest/tree/HEAD/packages/platform-express) | `10.4.12` | `10.4.15` |
| [@nestjs/cli](https://github.com/nestjs/nest-cli) | `10.4.8` | `10.4.9` |
| [prettier](https://github.com/prettier/prettier) | `3.4.1` | `3.4.2` |



Updates `@nestjs/apollo` from 12.2.1 to 12.2.2
- [Release notes](https://github.com/nestjs/graphql/releases)
- [Commits](nestjs/graphql@v12.2.1...v12.2.2)

Updates `@nestjs/core` from 10.4.12 to 10.4.15
- [Release notes](https://github.com/nestjs/nest/releases)
- [Commits](https://github.com/nestjs/nest/commits/v10.4.15/packages/core)

Updates `@nestjs/graphql` from 12.2.1 to 12.2.2
- [Release notes](https://github.com/nestjs/graphql/releases)
- [Commits](nestjs/graphql@v12.2.1...v12.2.2)

Updates `@nestjs/platform-express` from 10.4.12 to 10.4.15
- [Release notes](https://github.com/nestjs/nest/releases)
- [Commits](https://github.com/nestjs/nest/commits/v10.4.15/packages/platform-express)

Updates `@nestjs/cli` from 10.4.8 to 10.4.9
- [Release notes](https://github.com/nestjs/nest-cli/releases)
- [Changelog](https://github.com/nestjs/nest-cli/blob/master/.release-it.json)
- [Commits](nestjs/nest-cli@10.4.8...10.4.9)

Updates `prettier` from 3.4.1 to 3.4.2
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/prettier@3.4.1...3.4.2)

---
updated-dependencies:
- dependency-name: "@nestjs/apollo"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: "@nestjs/core"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: "@nestjs/graphql"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: "@nestjs/platform-express"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: "@nestjs/cli"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: prettier
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/examples/nestjs-graphql/dependencies-d6e5a31ce7 branch from 8aae4fa to 21e84f1 Compare December 9, 2024 16:46
@trunk-io trunk-io bot merged commit 05ab79d into main Dec 9, 2024
29 checks passed
@trunk-io trunk-io bot deleted the dependabot/npm_and_yarn/examples/nestjs-graphql/dependencies-d6e5a31ce7 branch December 9, 2024 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.

2 participants