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

build(deps-dev): bump prettier and @types/prettier #7369

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 11, 2023

Bumps prettier and @types/prettier. These dependencies needed to be updated together.
Updates prettier from 2.8.8 to 3.1.1

Release notes

Sourced from prettier's releases.

3.1.1

🔗 Changelog

3.1.0

diff

🔗 Release note

3.0.3

🔗 Changelog

3.0.2

🔗 Changelog

3.0.1

🔗 Changelog

3.0.0

diff

🔗 Release note

3.0.0-alpha.6

What's Changed

Other changes since v2, see 3.0.0-alpha.1 release notes

Full Changelog: prettier/prettier@3.0.0-alpha.5...3.0.0-alpha.6

3.0.0-alpha.5

What's Changed

Other changes since v2, see 3.0.0-alpha.1 release notes

Full Changelog: prettier/prettier@3.0.0-alpha.4...3.0.0-alpha.5

3.0.0-alpha.4

What's Changed

Other changes since v2, see 3.0.0-alpha.1 release notes

Full Changelog: prettier/prettier@3.0.0-alpha.3...3.0.0-alpha.4

3.0.0-alpha.3

... (truncated)

Changelog

Sourced from prettier's changelog.

3.1.1

diff

Fix config file search (#15363 by @​fisker)

Previously, we start search for config files from the filePath as a directory, if it happened to be a directory and contains config file, it will be used by mistake.

├─ .prettierrc
└─ test.js         (A directory)
  └─ .prettierrc
// Prettier 3.1.0
await prettier.resolveConfigFile(new URL("./test.js", import.meta.url));
// <CWD>/test.js/.prettierrc
// Prettier 3.1.1
await prettier.resolveConfigFile(new URL("./test.js", import.meta.url));
// <CWD>/.prettierrc

Skip explicitly passed symbolic links with --no-error-on-unmatched-pattern (#15533 by @​sanmai-NL)

Since Prettier v3, we stopped following symbolic links, however in some use cases, the symbolic link patterns can't be filtered out, and there is no way to prevent Prettier from throwing errors.

In Prettier 3.1.1, you can use --no-error-on-unmatched-pattern to simply skip symbolic links.

Consistently use tabs in ternaries when useTabs is true (#15662 by @​auvred)

// Input
aaaaaaaaaaaaaaa
	? bbbbbbbbbbbbbbbbbb
	: ccccccccccccccc
	  ? ddddddddddddddd
	  : eeeeeeeeeeeeeee
	    ? fffffffffffffff
	    : gggggggggggggggg;
// Prettier 3.1.0
aaaaaaaaaaaaaaa
? bbbbbbbbbbbbbbbbbb
: ccccccccccccccc
? ddddddddddddddd
: eeeeeeeeeeeeeee
? fffffffffffffff
</tr></table>

... (truncated)

Commits
  • b86701d Release 3.1.1
  • c97480c Use attributes instead of deprecated assertions (#15758)
  • 0d1ffb3 Consistently use tabs in ternaries when useTabs is true (#15662)
  • 5f7aedc fix example to fit the actual experimentalTernaries behaviour (#15747)
  • 1e30f66 Remove claim, untrue since over 5 years ago, that cursorOffset is incompatibl...
  • 39e4e7b Add cursorOffset to Playground (#15751)
  • 8e816ad Allow skipping symlink patterns, to avoid raising a fault (#15533)
  • 2ca5d75 Fix expect call in dts test (#15766)
  • 15c7428 chore(deps): update dependency flow-parser to v0.223.3 (#15760)
  • d3b3d4f chore(deps): update dependency hermes-parser to v0.18.0 (#15761)
  • Additional commits viewable in compare view

Updates @types/prettier from 2.7.3 to 3.0.0

Commits

You can trigger a rebase of this PR 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 this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Note
Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/prettier-and-types/prettier-3.1.1 branch from f54a399 to f974b37 Compare December 11, 2023 04:33
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/prettier-and-types/prettier-3.1.1 branch from f974b37 to f665385 Compare December 11, 2023 04:38
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/prettier-and-types/prettier-3.1.1 branch from f665385 to 2539df7 Compare December 12, 2023 04:19
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/prettier-and-types/prettier-3.1.1 branch from 2539df7 to 623fee5 Compare December 12, 2023 04:21
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/prettier-and-types/prettier-3.1.1 branch from 623fee5 to d3fdf9d Compare December 12, 2023 04:28
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/prettier-and-types/prettier-3.1.1 branch from d3fdf9d to 62005fb Compare December 13, 2023 04:51
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/prettier-and-types/prettier-3.1.1 branch from 62005fb to 4980dba Compare December 13, 2023 04:52
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/prettier-and-types/prettier-3.1.1 branch from 4980dba to a07f7b7 Compare December 13, 2023 04:56
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/prettier-and-types/prettier-3.1.1 branch from a07f7b7 to 320391e Compare December 13, 2023 05:07
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/prettier-and-types/prettier-3.1.1 branch from 320391e to 15c1fd1 Compare December 14, 2023 04:40
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/prettier-and-types/prettier-3.1.1 branch from 15c1fd1 to d1d3844 Compare December 14, 2023 04:45
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/prettier-and-types/prettier-3.1.1 branch from d1d3844 to 1d29ef6 Compare December 15, 2023 04:38
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/prettier-and-types/prettier-3.1.1 branch from 1d29ef6 to 025eaa7 Compare December 18, 2023 04:45
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/prettier-and-types/prettier-3.1.1 branch from 025eaa7 to 7ba71ee Compare December 18, 2023 04:53
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/prettier-and-types/prettier-3.1.1 branch from 1af5849 to 59becf6 Compare January 5, 2024 05:08
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/prettier-and-types/prettier-3.1.1 branch from 59becf6 to b77c66c Compare January 8, 2024 04:42
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/prettier-and-types/prettier-3.1.1 branch from b77c66c to 7a0d9c8 Compare January 8, 2024 04:44
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/prettier-and-types/prettier-3.1.1 branch from 7a0d9c8 to f96b607 Compare January 8, 2024 04:53
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/prettier-and-types/prettier-3.1.1 branch from f96b607 to 8df94b9 Compare January 8, 2024 04:55
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/prettier-and-types/prettier-3.1.1 branch from 8df94b9 to b807788 Compare January 9, 2024 04:50
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/prettier-and-types/prettier-3.1.1 branch from b807788 to f02a6c0 Compare January 9, 2024 04:53
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/prettier-and-types/prettier-3.1.1 branch from f02a6c0 to cbb4aad Compare January 9, 2024 04:56
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/prettier-and-types/prettier-3.1.1 branch from cbb4aad to 26c421b Compare January 9, 2024 05:02
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/prettier-and-types/prettier-3.1.1 branch from 26c421b to 33eb05c Compare January 9, 2024 05:03
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/prettier-and-types/prettier-3.1.1 branch from 33eb05c to 3072e2d Compare January 10, 2024 04:09
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/prettier-and-types/prettier-3.1.1 branch from 3072e2d to 30ea621 Compare January 10, 2024 04:10
Bumps [prettier](https://github.com/prettier/prettier) and [@types/prettier](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/prettier). These dependencies needed to be updated together.

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

Updates `@types/prettier` from 2.7.3 to 3.0.0
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/prettier)

---
updated-dependencies:
- dependency-name: prettier
  dependency-type: direct:development
  update-type: version-update:semver-major
- dependency-name: "@types/prettier"
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/prettier-and-types/prettier-3.1.1 branch from 30ea621 to 3b7fd32 Compare January 10, 2024 04:16
Copy link
Contributor Author

dependabot bot commented on behalf of github Jan 15, 2024

Superseded by #7459.

@dependabot dependabot bot closed this Jan 15, 2024
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/prettier-and-types/prettier-3.1.1 branch January 15, 2024 04:45
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant