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 prettier from 3.0.3 to 3.1.1 #1566

Merged
merged 2 commits into from
Jan 6, 2024

Conversation

dependabot[bot]
Copy link
Contributor

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

Bumps prettier from 3.0.3 to 3.1.1.

Release notes

Sourced from prettier's releases.

3.1.1

🔗 Changelog

3.1.0

diff

🔗 Release note

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

Dependabot compatibility score

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 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)

@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Dec 11, 2023
Copy link

changeset-bot bot commented Dec 11, 2023

⚠️ No Changeset found

Latest commit: de0ba2b

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

@github-actions github-actions bot enabled auto-merge (squash) December 11, 2023 15:30
Copy link

codecov bot commented Dec 11, 2023

Codecov Report

Merging #1566 (de0ba2b) into main (9851b53) will not change coverage.
Report is 148 commits behind head on main.
The diff coverage is 100.00%.

Additional details and impacted files

Impacted file tree graph

@@            Coverage Diff            @@
##              main     #1566   +/-   ##
=========================================
  Coverage   100.00%   100.00%           
=========================================
  Files           34        34           
  Lines          734       734           
  Branches       164       164           
=========================================
  Hits           734       734           
Files Coverage Δ
src/determine-options.ts 100.00% <100.00%> (ø)

Continue to review full report in Codecov by Sentry.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update 03ec5a5...de0ba2b. Read the comment docs.

@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/prettier-3.1.1 branch from daab698 to 4b0ec4b Compare December 11, 2023 15:33
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/prettier-3.1.1 branch from 4b0ec4b to 98c1229 Compare December 11, 2023 15:39
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/prettier-3.1.1 branch from 98c1229 to 200f592 Compare December 11, 2023 15:47
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/prettier-3.1.1 branch from 200f592 to 9784a6c Compare December 11, 2023 15:52
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/prettier-3.1.1 branch from 9784a6c to 43b30a0 Compare December 11, 2023 15:58
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/prettier-3.1.1 branch from 43b30a0 to a95180a Compare December 12, 2023 15:37
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/prettier-3.1.1 branch from a95180a to 2dd40f2 Compare December 12, 2023 15:42
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/prettier-3.1.1 branch from 2dd40f2 to 084a6b5 Compare December 13, 2023 15:46
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/prettier-3.1.1 branch from 084a6b5 to f25ce09 Compare December 13, 2023 15:53
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/prettier-3.1.1 branch from f25ce09 to eb27427 Compare December 15, 2023 15:10
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/prettier-3.1.1 branch from eb27427 to d7b5b52 Compare December 18, 2023 15:14
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/prettier-3.1.1 branch from d7b5b52 to 433d808 Compare December 19, 2023 16:02
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/prettier-3.1.1 branch from b617d0b to 760fb5a Compare December 19, 2023 16:15
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/prettier-3.1.1 branch from 760fb5a to 1faa7b3 Compare December 20, 2023 15:26
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/prettier-3.1.1 branch from 1faa7b3 to efb8c65 Compare December 22, 2023 15:34
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/prettier-3.1.1 branch from efb8c65 to 9ed0a7e Compare December 25, 2023 15:10
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/prettier-3.1.1 branch from 9ed0a7e to ba67c33 Compare December 26, 2023 15:36
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/prettier-3.1.1 branch from ba67c33 to 8d5a6cd Compare December 26, 2023 15:43
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/prettier-3.1.1 branch from 8d5a6cd to ae0b9e2 Compare January 1, 2024 15:57
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/prettier-3.1.1 branch from ae0b9e2 to 46ae11b Compare January 1, 2024 16:05
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/prettier-3.1.1 branch from 46ae11b to 8748593 Compare January 1, 2024 16:10
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/prettier-3.1.1 branch from 8748593 to aec9aa0 Compare January 1, 2024 16:17
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/prettier-3.1.1 branch from aec9aa0 to fd4be5b Compare January 2, 2024 15:31
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/prettier-3.1.1 branch from fd4be5b to 80d5f1c Compare January 2, 2024 15:40
Bumps [prettier](https://github.com/prettier/prettier) from 3.0.3 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@3.0.3...3.1.1)

---
updated-dependencies:
- dependency-name: prettier
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/prettier-3.1.1 branch from 80d5f1c to 414f3ff Compare January 2, 2024 15:44
@somewhatabstract somewhatabstract merged commit 94497c9 into main Jan 6, 2024
7 of 8 checks passed
@somewhatabstract somewhatabstract deleted the dependabot/npm_and_yarn/prettier-3.1.1 branch January 6, 2024 22:48
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
None yet
Development

Successfully merging this pull request may close these issues.

1 participant