Build(deps-dev): bump prettier from 2.8.1 to 2.8.2 #854

Merged
argoyle merged 1 commits from dependabot-npm_and_yarn-prettier-2.8.2 into master 2023-01-08 19:42:49 +00:00
argoyle commented 2023-01-08 04:40:14 +00:00 (Migrated from gitlab.com)

Bumps prettier from 2.8.1 to 2.8.2.

Release notes

Sourced from prettier's releases.

2.8.2

🔗 Changelog

Changelog

Sourced from prettier's changelog.

2.8.2

diff

Don't lowercase link references (#13155 by @​DerekNonGeneric & @​fisker)

<!-- Input -->
We now don't strictly follow the release notes format suggested by [Keep a Changelog].

<!-- Prettier 2.8.1 --> We now don't strictly follow the release notes format suggested by Keep a Changelog.

<!-- ^^^^^^^^^^^^^^^^^^ lowercased -->

<!-- Prettier 2.8.2 --> <Same as input>

Preserve self-closing tags (#13691 by @​dcyriller)

{{! Input }}
<div />
<div></div>
<custom-component />
<custom-component></custom-component>
<i />
<i></i>
<Component />
<Component></Component>

{{! Prettier 2.8.1 }} <div></div> <div></div> <custom-component></custom-component> <custom-component></custom-component> <i></i> <i></i> <Component /> <Component />

{{! Prettier 2.8.2 }} </tr></table>

... (truncated)

Commits
  • ac88438 Release 2.8.2
  • aaf9190 Fix comments after directive (#14081)
  • 9e09a78 Stop inserting space in LESS property access (#14103)
  • 0c5d4f3 Fix removing commas from function arguments in maps (#14089)
  • b77d912 ember / glimmer: Preserve self-closing tags (#13691)
  • cf36209 Handlebars: Add tests for {{! prettier-ignore}} (#13693)
  • f8e1ad8 Add parens to head of ExpressionStatement instead of whole statement (#14077)
  • 8034bad Build(deps): Bump json5 from 2.2.0 to 2.2.3 in /scripts/release (#14104)
  • 31d4010 Build(deps): Bump json5 from 2.2.1 to 2.2.3 in /website (#14101)
  • 41cee06 Do not change case of property name if inside a variable declaration in LESS ...
  • Additional commits viewable in compare view


Dependabot commands
You can trigger Dependabot actions by commenting on this MR
  • $dependabot rebase will rebase this MR
  • $dependabot recreate will recreate this MR rewriting all the manual changes and resolving conflicts
Bumps [prettier](https://github.com/prettier/prettier) from 2.8.1 to 2.8.2. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/prettier/prettier/releases">prettier's releases</a>.</em></p> <blockquote> <h2>2.8.2</h2> <p>🔗 <a href="https://github.com/prettier/prettier/blob/main/CHANGELOG.md#282">Changelog</a></p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/prettier/prettier/blob/main/CHANGELOG.md">prettier's changelog</a>.</em></p> <blockquote> <h1>2.8.2</h1> <p><a href="https://github.com/prettier/prettier/compare/2.8.1...2.8.2">diff</a></p> <h4>Don't lowercase link references (<a href="https://github.com/prettier/prettier/pull/13155">#13155</a> by <a href="https://github.com/DerekNonGeneric"><code>@​DerekNonGeneric</code></a> &amp; <a href="https://github.com/fisker"><code>@​fisker</code></a>)</h4> <!-- raw HTML omitted --> <pre lang="markdown"><code>&lt;!-- Input --&gt; We now don't strictly follow the release notes format suggested by [Keep a Changelog]. <p>&lt;!-- Prettier 2.8.1 --&gt; We now don't strictly follow the release notes format suggested by <a href="https://example.com/">Keep a Changelog</a>.</p> <p>&lt;!-- ^^^^^^^^^^^^^^^^^^ lowercased --&gt;</p> <p>&lt;!-- Prettier 2.8.2 --&gt; &lt;Same as input&gt; </code></pre></p> <h4>Preserve self-closing tags (<a href="https://github.com/prettier/prettier/pull/13691">#13691</a> by <a href="https://github.com/dcyriller"><code>@​dcyriller</code></a>)</h4> <!-- raw HTML omitted --> <pre lang="hbs"><code>{{! Input }} &lt;div /&gt; &lt;div&gt;&lt;/div&gt; &lt;custom-component /&gt; &lt;custom-component&gt;&lt;/custom-component&gt; &lt;i /&gt; &lt;i&gt;&lt;/i&gt; &lt;Component /&gt; &lt;Component&gt;&lt;/Component&gt; <p>{{! Prettier 2.8.1 }} &lt;div&gt;&lt;/div&gt; &lt;div&gt;&lt;/div&gt; &lt;custom-component&gt;&lt;/custom-component&gt; &lt;custom-component&gt;&lt;/custom-component&gt; &lt;i&gt;&lt;/i&gt; &lt;i&gt;&lt;/i&gt; &lt;Component /&gt; &lt;Component /&gt;</p> <p>{{! Prettier 2.8.2 }} &lt;/tr&gt;&lt;/table&gt; </code></pre></p> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/prettier/prettier/commit/ac88438d654be6e2285e1cab8a6aa3d9a84ac875"><code>ac88438</code></a> Release 2.8.2</li> <li><a href="https://github.com/prettier/prettier/commit/aaf919014fbdb3c05590f818428de4dcc6899c9c"><code>aaf9190</code></a> Fix comments after directive (<a href="https://github.com/prettier/prettier/issues/14081">#14081</a>)</li> <li><a href="https://github.com/prettier/prettier/commit/9e09a78cf50e47535688b3f9ca4f24f440cfe012"><code>9e09a78</code></a> Stop inserting space in LESS property access (<a href="https://github.com/prettier/prettier/issues/14103">#14103</a>)</li> <li><a href="https://github.com/prettier/prettier/commit/0c5d4f34587817d1da09fc04a03e49fb5c048a76"><code>0c5d4f3</code></a> Fix removing commas from function arguments in maps (<a href="https://github.com/prettier/prettier/issues/14089">#14089</a>)</li> <li><a href="https://github.com/prettier/prettier/commit/b77d912c0c1a5df85e3e9b5b192fc92523e411ee"><code>b77d912</code></a> ember / glimmer: Preserve self-closing tags (<a href="https://github.com/prettier/prettier/issues/13691">#13691</a>)</li> <li><a href="https://github.com/prettier/prettier/commit/cf36209a271629ec682c41a3489a3c0da901e77d"><code>cf36209</code></a> Handlebars: Add tests for <code>{{! prettier-ignore}}</code> (<a href="https://github.com/prettier/prettier/issues/13693">#13693</a>)</li> <li><a href="https://github.com/prettier/prettier/commit/f8e1ad806c4cbf798b24119198d1a1f4ecbdf3b8"><code>f8e1ad8</code></a> Add parens to head of <code>ExpressionStatement</code> instead of whole statement (<a href="https://github.com/prettier/prettier/issues/14077">#14077</a>)</li> <li><a href="https://github.com/prettier/prettier/commit/8034bada9653d010f826d1797afe4a79bbf8ce6d"><code>8034bad</code></a> Build(deps): Bump json5 from 2.2.0 to 2.2.3 in /scripts/release (<a href="https://github.com/prettier/prettier/issues/14104">#14104</a>)</li> <li><a href="https://github.com/prettier/prettier/commit/31d40104f48e9920a4485a6633b67e6a9bd79548"><code>31d4010</code></a> Build(deps): Bump json5 from 2.2.1 to 2.2.3 in /website (<a href="https://github.com/prettier/prettier/issues/14101">#14101</a>)</li> <li><a href="https://github.com/prettier/prettier/commit/41cee0636ed8c10f97e0b7fc5e2ccf9d096b4439"><code>41cee06</code></a> Do not change case of property name if inside a variable declaration in LESS ...</li> <li>Additional commits viewable in <a href="https://github.com/prettier/prettier/compare/2.8.1...2.8.2">compare view</a></li> </ul> </details> <br /> --- <details> <summary>Dependabot commands</summary> <br /> You can trigger Dependabot actions by commenting on this MR - `$dependabot rebase` will rebase this MR - `$dependabot recreate` will recreate this MR rewriting all the manual changes and resolving conflicts </details>
argoyle (Migrated from gitlab.com) merged commit into master 2023-01-08 19:42:49 +00:00
Sign in to join this conversation.