Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 8, 2025

Bumps the development-dependencies group with 3 updates in the / directory: mocha, oclif and prettier.

Updates mocha from 11.7.4 to 11.7.5

Release notes

Sourced from mocha's releases.

v11.7.5

11.7.5 (2025-11-04)

🩹 Fixes

  • swallow more require errors from *ts files (#5498) (d89dbaf)

🧹 Chores

Changelog

Sourced from mocha's changelog.

11.7.5 (2025-11-04)

🩹 Fixes

  • swallow more require errors from *ts files (#5498) (d89dbaf)

🧹 Chores

Commits

Updates oclif from 4.22.38 to 4.22.54

Release notes

Sourced from oclif's releases.

4.22.54

Bug Fixes

  • deps: bump @​aws-sdk/client-s3 from 3.940.0 to 3.946.0 (cdd14a4)

4.22.53

Bug Fixes

  • deps: bump @​aws-sdk/client-cloudfront from 3.940.0 to 3.946.0 (b38f8ab)

4.22.52

Bug Fixes

  • deps: bump @​aws-sdk/client-s3 from 3.937.0 to 3.940.0 (0a8b89f)

4.22.51

Bug Fixes

  • deps: bump @​aws-sdk/client-cloudfront from 3.937.0 to 3.940.0 (0c016f1)

4.22.50

Bug Fixes

  • deps: bump @​aws-sdk/client-cloudfront from 3.927.0 to 3.937.0 (89e76a7)

4.22.49

Bug Fixes

  • deps: bump @​aws-sdk/client-s3 from 3.932.0 to 3.937.0 (00fbbcf)

4.22.48

Bug Fixes

  • deps: bump @​oclif/plugin-not-found from 3.2.71 to 3.2.73 (6f9d6a3)

4.22.47

Bug Fixes

  • deps: bump @​oclif/plugin-help from 6.2.34 to 6.2.36 (40234c1)

4.22.46

Bug Fixes

  • deps: bump @​aws-sdk/client-s3 from 3.927.0 to 3.932.0 (00c5913)

4.22.45

Bug Fixes

  • deps: bump @​oclif/plugin-warn-if-update-available (35554de)

... (truncated)

Changelog

Sourced from oclif's changelog.

4.22.54 (2025-12-07)

Bug Fixes

  • deps: bump @​aws-sdk/client-s3 from 3.940.0 to 3.946.0 (cdd14a4)

4.22.53 (2025-12-07)

Bug Fixes

  • deps: bump @​aws-sdk/client-cloudfront from 3.940.0 to 3.946.0 (b38f8ab)

4.22.52 (2025-11-30)

Bug Fixes

  • deps: bump @​aws-sdk/client-s3 from 3.937.0 to 3.940.0 (0a8b89f)

4.22.51 (2025-11-30)

Bug Fixes

  • deps: bump @​aws-sdk/client-cloudfront from 3.937.0 to 3.940.0 (0c016f1)

4.22.50 (2025-11-23)

Bug Fixes

  • deps: bump @​aws-sdk/client-cloudfront from 3.927.0 to 3.937.0 (89e76a7)

4.22.49 (2025-11-23)

Bug Fixes

  • deps: bump @​aws-sdk/client-s3 from 3.932.0 to 3.937.0 (00fbbcf)

4.22.48 (2025-11-23)

Bug Fixes

  • deps: bump @​oclif/plugin-not-found from 3.2.71 to 3.2.73 (6f9d6a3)

4.22.47 (2025-11-17)

Bug Fixes

  • deps: bump @​oclif/plugin-help from 6.2.34 to 6.2.36 (40234c1)

4.22.46 (2025-11-16)

... (truncated)

Commits
  • e37712f chore(release): 4.22.54 [skip ci]
  • 436ca21 Merge pull request #1926 from oclif/dependabot-npm_and_yarn-aws-sdk-client-s3...
  • f5c2b82 Merge pull request #1927 from oclif/dependabot-npm_and_yarn-eslint-config-ocl...
  • cdd14a4 fix(deps): bump @​aws-sdk/client-s3 from 3.940.0 to 3.946.0
  • d360e01 chore(release): 4.22.53 [skip ci]
  • b65e554 Merge pull request #1928 from oclif/dependabot-npm_and_yarn-aws-sdk-client-cl...
  • b38f8ab fix(deps): bump @​aws-sdk/client-cloudfront from 3.940.0 to 3.946.0
  • a56ee46 chore(dev-deps): bump eslint-config-oclif from 6.0.119 to 6.0.122
  • 2eb4a5a Merge pull request #1920 from oclif/dependabot-npm_and_yarn-prettier-3.7.2
  • bf753b5 Merge pull request #1921 from oclif/dependabot-npm_and_yarn-types-lodash-4.17.21
  • Additional commits viewable in compare view

Updates prettier from 3.6.2 to 3.7.4

Release notes

Sourced from prettier's releases.

3.7.4

What's Changed

🔗 Changelog

3.7.3

What's Changed

🔗 Changelog

3.7.2

What's Changed

🔗 Changelog

3.7.1

🔗 Changelog

3.7.0

diff

🔗 Release note

Changelog

Sourced from prettier's changelog.

3.7.4

diff

LWC: Avoid quote around interpolations (#18383 by @​kovsu)

<!-- Input -->
<div foo={bar}>   </div>
<!-- Prettier 3.7.3 (--embedded-language-formatting off) -->
<div foo="{bar}"></div>
<!-- Prettier 3.7.4 (--embedded-language-formatting off) -->
<div foo={bar}></div>

TypeScript: Fix comment inside union type gets duplicated (#18393 by @​fisker)

// Input
type Foo = (/** comment */ a | b) | c;
// Prettier 3.7.3
type Foo = /** comment / (/* comment */ a | b) | c;
// Prettier 3.7.4
type Foo = /** comment */ (a | b) | c;

TypeScript: Fix unstable comment print in union type comments (#18395 by @​fisker)

// Input
type X = (A | B) & (
  // comment
  A | B
);
// Prettier 3.7.3 (first format)
type X = (A | B) &
(// comment
A | B);
// Prettier 3.7.3 (second format)
type X = (
| A
</tr></table>

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for prettier since your current version.


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

… 1 directory with 3 updates

Bumps the development-dependencies group with 3 updates in the / directory: [mocha](https://github.com/mochajs/mocha), [oclif](https://github.com/oclif/oclif) and [prettier](https://github.com/prettier/prettier).


Updates `mocha` from 11.7.4 to 11.7.5
- [Release notes](https://github.com/mochajs/mocha/releases)
- [Changelog](https://github.com/mochajs/mocha/blob/v11.7.5/CHANGELOG.md)
- [Commits](mochajs/mocha@v11.7.4...v11.7.5)

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

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

---
updated-dependencies:
- dependency-name: mocha
  dependency-version: 11.7.5
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: oclif
  dependency-version: 4.22.54
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: prettier
  dependency-version: 3.7.4
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Dec 8, 2025

Labels

The following labels could not be found: automated, dependencies. Please create them before Dependabot can add them to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

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.

1 participant