Re: [PR] Bump prettier from 2.5.1 to 3.1.1 in /console/react [qpid-dispatch]

2024-01-12 Thread via GitHub


dependabot[bot] closed pull request #1676: Bump prettier from 2.5.1 to 3.1.1 in 
/console/react
URL: https://github.com/apache/qpid-dispatch/pull/1676


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@qpid.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@qpid.apache.org
For additional commands, e-mail: dev-h...@qpid.apache.org



Re: [PR] Bump prettier from 2.5.1 to 3.1.1 in /console/react [qpid-dispatch]

2024-01-12 Thread via GitHub


dependabot[bot] commented on PR #1676:
URL: https://github.com/apache/qpid-dispatch/pull/1676#issuecomment-1889687313

   Superseded by #1684.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@qpid.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@qpid.apache.org
For additional commands, e-mail: dev-h...@qpid.apache.org



[PR] Bump prettier from 2.5.1 to 3.1.1 in /console/react [qpid-dispatch]

2023-12-11 Thread via GitHub


dependabot[bot] opened a new pull request, #1676:
URL: https://github.com/apache/qpid-dispatch/pull/1676

   Bumps [prettier](https://github.com/prettier/prettier) from 2.5.1 to 3.1.1.
   
   Release notes
   Sourced from https://github.com/prettier/prettier/releases";>prettier's 
releases.
   
   3.1.1
   🔗 https://github.com/prettier/prettier/blob/main/CHANGELOG.md#311";>Changelog
   3.1.0
   https://github.com/prettier/prettier/compare/3.0.3...3.1.0";>diff
   🔗 https://prettier.io/blog/2023/11/13/3.1.0.html";>Release 
note
   3.0.3
   🔗 https://github.com/prettier/prettier/blob/main/CHANGELOG.md#303";>Changelog
   3.0.2
   🔗 https://github.com/prettier/prettier/blob/main/CHANGELOG.md#302";>Changelog
   3.0.1
   🔗 https://github.com/prettier/prettier/blob/main/CHANGELOG.md#301";>Changelog
   3.0.0
   https://github.com/prettier/prettier/compare/3.0.0-alpha.6...3.0.0";>diff
   🔗 https://prettier.io/blog/2023/07/05/3.0.0.html";>Release 
note
   3.0.0-alpha.6
   What's Changed
   
   Update .d.ts files of plugins to use export default 
... by https://github.com/fisker";>@​fisker in 
https://redirect.github.com/prettier/prettier/pull/14435";>prettier/prettier#14435
   
   Other changes since v2, see https://github.com/prettier/prettier/releases/tag/3.0.0-alpha.1";>3.0.0-alpha.1
 release notes
   Full Changelog: https://github.com/prettier/prettier/compare/3.0.0-alpha.5...3.0.0-alpha.6";>https://github.com/prettier/prettier/compare/3.0.0-alpha.5...3.0.0-alpha.6
   3.0.0-alpha.5
   What's Changed
   
   Add .d.ts files by https://github.com/sosukesuzuki";>@​sosukesuzuki in https://redirect.github.com/prettier/prettier/pull/14212";>prettier/prettier#14212
   Support TypeScript 5 via babel-ts parser by https://github.com/fisker";>@​fisker in https://redirect.github.com/prettier/prettier/pull/14391";>prettier/prettier#14391
   
   Other changes since v2, see https://github.com/prettier/prettier/releases/tag/3.0.0-alpha.1";>3.0.0-alpha.1
 release notes
   Full Changelog: https://github.com/prettier/prettier/compare/3.0.0-alpha.4...3.0.0-alpha.5";>https://github.com/prettier/prettier/compare/3.0.0-alpha.4...3.0.0-alpha.5
   3.0.0-alpha.4
   What's Changed
   
   Remove support for Flow comment types by https://github.com/thorn0";>@​thorn0 in https://redirect.github.com/prettier/prettier/pull/13687";>prettier/prettier#13687
   Make resolveParser work like v2 by https://github.com/fisker";>@​fisker in https://redirect.github.com/prettier/prettier/pull/13732";>prettier/prettier#13732
   Add __debug apis to cjs version by https://github.com/fisker";>@​fisker in https://redirect.github.com/prettier/prettier/pull/13731";>prettier/prettier#13731
   
   Other changes since v2, see https://github.com/prettier/prettier/releases/tag/3.0.0-alpha.1";>3.0.0-alpha.1
 release notes
   Full Changelog: https://github.com/prettier/prettier/compare/3.0.0-alpha.3...3.0.0-alpha.4";>https://github.com/prettier/prettier/compare/3.0.0-alpha.3...3.0.0-alpha.4
   3.0.0-alpha.3
   
   
   ... (truncated)
   
   
   Changelog
   Sourced from https://github.com/prettier/prettier/blob/main/CHANGELOG.md";>prettier's 
changelog.
   
   3.1.1
   https://github.com/prettier/prettier/compare/3.1.0...3.1.1";>diff
   Fix config file search (https://redirect.github.com/prettier/prettier/pull/15363";>#15363 by 
https://github.com/fisker";>@​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));
   // /test.js/.prettierrc
   // Prettier 3.1.1
   await prettier.resolveConfigFile(new URL("./test.js", 
import.meta.url));
   // /.prettierrc
   
   Skip explicitly passed symbolic links with 
--no-error-on-unmatched-pattern (https://redirect.github.com/prettier/prettier/pull/15533";>#15533 by 
https://github.com/sanmai-NL";>@​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 (https://redirect.github.com/prettier/prettier/pull/15662";>#15662 by 
https://github.com/auvred";>@​auvred)
   
   // Input
   aaa
? bb
: ccc
  ? ddd
  : eee
? fff
: ;
   // Prettier 3.1.0
   aaa
   ? bb
   : ccc
   ? ddd
   : eee
   ? fff
   
   
   
   ... (truncated)
   
   
   Commits
   
   https://github.com/prettier/prettier/commit