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: Bump the prettier group with 2 updates #2206

Merged
merged 1 commit into from
Sep 2, 2023

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Aug 29, 2023

Bumps the prettier group with 2 updates: prettier and prettier-plugin-organize-imports.

Updates prettier from 3.0.0 to 3.0.3

Release notes

Sourced from prettier's releases.

3.0.3

🔗 Changelog

3.0.2

🔗 Changelog

3.0.1

🔗 Changelog

Changelog

Sourced from prettier's changelog.

3.0.3

diff

Add preferUnplugged: true to package.json (#15169 by @​fisker and @​so1ve)

Prettier v3 uses dynamic imports, user will need to unplug Prettier when Yarn's PnP mode is enabled, add preferUnplugged: true to package.json, so Yarn will install Prettier as unplug by default.

Support shared config that forbids require() (#15233 by @​fisker)

If an external shared config package is used, and the package exports don't have require or default export.

In Prettier 3.0.2 Prettier fails when attempt to require() the package, and throws an error.

Error [ERR_PACKAGE_PATH_NOT_EXPORTED]: No "exports" main defined in <packageName>/package.json

Allow argument of require() to break (#15256 by @​fisker)

// Input
const plugin = require(
  global.STANDALONE
    ? path.join(__dirname, "../standalone.js")
    : path.join(__dirname, "..")
);
// Prettier 3.0.2
const plugin = require(global.STANDALONE
? path.join(__dirname, "../standalone.js")
: path.join(__dirname, ".."));
// Prettier 3.0.3
const plugin = require(
global.STANDALONE
? path.join(__dirname, "../standalone.js")
: path.join(__dirname, "..")
);

Do not print trailing commas in arrow function type parameter lists in ts code blocks (#15286 by @​sosukesuzuki)

<!-- Input -->
```ts
const foo = <T>() => {}
```
</tr></table> 

... (truncated)

Commits

Updates prettier-plugin-organize-imports from 3.2.2 to 3.2.3

Commits
  • 16df387 3.2.3
  • 1c91f0a docs(readme): update link for removal of automatic plugin discovery in pretti...
  • 4734c22 docs(readme): add usage instructions for Prettier 3
  • ed94b3e docs(readme): improve structure and content
  • b15df6a chore: update prettier to version 3
  • d588db2 chore: update dev dependencies
  • d5ac2f4 chore(devDeps): bump typescript to v5
  • See full diff in compare view

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 force-pushed the dependabot/npm_and_yarn/prettier-858bdf9b25 branch 2 times, most recently from 099a0ad to c2bc779 Compare September 2, 2023 18:28
@github-actions
Copy link

github-actions bot commented Sep 2, 2023

@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/prettier-858bdf9b25 branch from c2bc779 to 4667d94 Compare September 2, 2023 18:46
Bumps the prettier group with 2 updates: [prettier](https://github.com/prettier/prettier) and [prettier-plugin-organize-imports](https://github.com/simonhaenisch/prettier-plugin-organize-imports).


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

Updates `prettier-plugin-organize-imports` from 3.2.2 to 3.2.3
- [Release notes](https://github.com/simonhaenisch/prettier-plugin-organize-imports/releases)
- [Commits](simonhaenisch/prettier-plugin-organize-imports@v3.2.2...v3.2.3)

---
updated-dependencies:
- dependency-name: prettier
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: prettier
- dependency-name: prettier-plugin-organize-imports
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: prettier
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/prettier-858bdf9b25 branch from 4667d94 to fda7cec Compare September 2, 2023 19:00
@tobiasdiez tobiasdiez enabled auto-merge (squash) September 2, 2023 19:13
@tobiasdiez tobiasdiez merged commit f8c73a9 into main Sep 2, 2023
5 checks passed
@tobiasdiez tobiasdiez deleted the dependabot/npm_and_yarn/prettier-858bdf9b25 branch September 2, 2023 19:14
Siedlerchr added a commit that referenced this pull request Sep 4, 2023
* upstream/main: (31 commits)
  chore: add progress bar to journal data update script (#2182)
  chore: Bump pinia from 2.1.4 to 2.1.6 (#2153)
  chore: Bump concurrently from 8.2.0 to 8.2.1 (#2200)
  chore: Bump the vue group with 7 updates (#2212)
  chore: Bump @yaireo/tagify and @types/yaireo__tagify (#2195)
  chore: Bump the eslint group with 3 updates (#2218)
  chore: replace last patch-package patch by yarn patch (#2224)
  chore: split deploy workflow (#2223)
  chore: enable organize-imports prettier plugin (#2220)
  chore: extend nuxt dependabot group by zod and ufo (#2221)
  chore: Bump the vitest group with 3 updates (#2210)
  chore: Bump autoprefixer from 10.4.14 to 10.4.15 (#2198)
  chore: Bump the prisma group with 2 updates (#2190)
  chore: Bump the prettier group with 2 updates (#2206)
  chore: Bump redis from 4.6.7 to 4.6.8 (#2191)
  chore: Bump typescript from 5.1.6 to 5.2.2 (#2197)
  chore: Bump the graphql group with 9 updates (#2217)
  chore: Bump the types group with 3 updates (#2213)
  chore: Bump actions/checkout from 3.5.3 to 3.6.0 (#2186)
  chore: fix version regex (#2216)
  ...

# Conflicts:
#	.github/workflows/deploy.yml
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