[PR #8] [MERGED] chore(deps-dev): bump postcss from 7.0.35 to 8.2.6 #10

Closed
opened 2025-12-01 17:05:37 +01:00 by arthur · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/ArthurDanjou/website-old/pull/8
Author: @dependabot[bot]
Created: 2/22/2021
Status: Merged
Merged: 2/25/2021
Merged by: @ArthurDanjou

Base: masterHead: dependabot/npm_and_yarn/postcss-8.2.6


📝 Commits (2)

  • b041730 chore(deps-dev): bump postcss from 7.0.35 to 8.2.6
  • 3180eae Merge branch 'master' into dependabot/npm_and_yarn/postcss-8.2.6

📊 Changes

2 files changed (+3 additions, -3 deletions)

View changed files

📝 package.json (+1 -1)
📝 yarn.lock (+2 -2)

📄 Description

Bumps postcss from 7.0.35 to 8.2.6.

Release notes

Sourced from postcss's releases.

8.2.6

  • Fixed Maximum call stack size exceeded in Node#toJSON.
  • Fixed docs (by @inokawa).

8.2.5

  • Fixed escaped characters handling in list.split (by @nex3).

8.2.4

8.2.3

  • Fixed JSON.stringify(Node[]) support (by @mischnic).

8.2.2

  • Fixed CSS-in-JS support (by @43081j).
  • Fixed plugin types (by @ludofischer).
  • Fixed Result#warn() types.

8.2.1

  • Fixed Node#toJSON() and postcss.fromJSON() (by @mischnic).

8.2 “Prince Orobas”

PostCSS 8.2 added a new API to serialize and deserialize CSS AST to JSON.

import { parse, fromJSON } from 'postcss'

let root = parse('a{}', { from: 'input.css' }) let json = root.toJSON() // save to file, send by network, etc let root2 = fromJSON(json)

Thanks to @mischnic for his work.

8.1.14

  • Fixed parser performance regression.

8.1.13

  • Fixed broken AST after moving nodes in visitor API.

8.1.12

  • Fixed Autoprefixer regression.

8.1.11

  • Added PostCSS update suggestion on unknown event in plugin.

... (truncated)

Changelog

Sourced from postcss's changelog.

8.2.6

  • Fixed Maximum call stack size exceeded in Node#toJSON.
  • Fixed docs (by inokawa).

8.2.5

  • Fixed escaped characters handling in list.split (by Natalie Weizenbaum).

8.2.4

  • Added plugin name to postcss.plugin() warning (by Tom Williams).
  • Fixed docs (by Bill Columbia).

8.2.3

  • Fixed JSON.stringify(Node[]) support (by Niklas Mischkulnig).

8.2.2

  • Fixed CSS-in-JS support (by James Garbutt).
  • Fixed plugin types (by Ludovico Fischer).
  • Fixed Result#warn() types.

8.2.1

  • Fixed Node#toJSON() and postcss.fromJSON() (by Niklas Mischkulnig).

8.2 “Prince Orobas”

  • Added Node#toJSON() and postcss.fromJSON() (by Niklas Mischkulnig).

8.1.14

  • Fixed parser performance regression.

8.1.13

  • Fixed broken AST after moving nodes in visitor API.

8.1.12

  • Fixed Autoprefixer regression.

8.1.11

  • Added PostCSS update suggestion on unknown event in plugin.

8.1.10

  • Fixed LazyResult type export (by Evan You).
  • Fixed LazyResult type compatibility with Promise (by Anton Kastritskiy).

8.1.9

  • Reduced dependencies number (by Bogdan Chadkin).

8.1.8

  • Fixed LazyResult type compatibility with Promise (by Ludovico Fischer).
  • Fixed HTTPS links in documentation.

8.1.7

  • Fixed import support in TypeScript (by Remco Haszing).

... (truncated)

Commits

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

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/ArthurDanjou/website-old/pull/8 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 2/22/2021 **Status:** ✅ Merged **Merged:** 2/25/2021 **Merged by:** [@ArthurDanjou](https://github.com/ArthurDanjou) **Base:** `master` ← **Head:** `dependabot/npm_and_yarn/postcss-8.2.6` --- ### 📝 Commits (2) - [`b041730`](https://github.com/ArthurDanjou/website-old/commit/b041730af56725db232d6e422051fdd87ae88f7b) chore(deps-dev): bump postcss from 7.0.35 to 8.2.6 - [`3180eae`](https://github.com/ArthurDanjou/website-old/commit/3180eae81a0345cc9225177b4992b20f2ba0bebf) Merge branch 'master' into dependabot/npm_and_yarn/postcss-8.2.6 ### 📊 Changes **2 files changed** (+3 additions, -3 deletions) <details> <summary>View changed files</summary> 📝 `package.json` (+1 -1) 📝 `yarn.lock` (+2 -2) </details> ### 📄 Description Bumps [postcss](https://github.com/postcss/postcss) from 7.0.35 to 8.2.6. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/postcss/postcss/releases">postcss's releases</a>.</em></p> <blockquote> <h2>8.2.6</h2> <ul> <li>Fixed <code>Maximum call stack size exceeded</code> in <code>Node#toJSON</code>.</li> <li>Fixed docs (by <a href="https://github.com/inokawa"><code>@inokawa</code></a>).</li> </ul> <h2>8.2.5</h2> <ul> <li>Fixed escaped characters handling in <code>list.split</code> (by <a href="https://github.com/nex3"><code>@nex3</code></a>).</li> </ul> <h2>8.2.4</h2> <ul> <li>Added plugin name to <code>postcss.plugin()</code> warning (by <a href="https://github.com/Alphy11"><code>@Alphy11</code></a>).</li> <li>Fixed docs (by <a href="https://github.com/billcolumbia"><code>@billcolumbia</code></a>).</li> </ul> <h2>8.2.3</h2> <ul> <li>Fixed <code>JSON.stringify(Node[])</code> support (by <a href="https://github.com/mischnic"><code>@mischnic</code></a>).</li> </ul> <h2>8.2.2</h2> <ul> <li>Fixed CSS-in-JS support (by <a href="https://github.com/43081j"><code>@43081j</code></a>).</li> <li>Fixed plugin types (by <a href="https://github.com/ludofischer"><code>@ludofischer</code></a>).</li> <li>Fixed <code>Result#warn()</code> types.</li> </ul> <h2>8.2.1</h2> <ul> <li>Fixed <code>Node#toJSON()</code> and <code>postcss.fromJSON()</code> (by <a href="https://github.com/mischnic"><code>@mischnic</code></a>).</li> </ul> <h2>8.2 “Prince Orobas”</h2> <!-- raw HTML omitted --> <p>PostCSS 8.2 added a new API to serialize and deserialize CSS AST to JSON.</p> <pre lang="js"><code>import { parse, fromJSON } from 'postcss' <p>let root = parse('a{}', { from: 'input.css' }) let json = root.toJSON() // save to file, send by network, etc let root2 = fromJSON(json) </code></pre></p> <p>Thanks to <a href="https://github.com/mischnic"><code>@mischnic</code></a> for <a href="https://github-redirect.dependabot.com/postcss/postcss/pull/1484">his work</a>.</p> <h2>8.1.14</h2> <ul> <li>Fixed parser performance regression.</li> </ul> <h2>8.1.13</h2> <ul> <li>Fixed broken AST after moving nodes in visitor API.</li> </ul> <h2>8.1.12</h2> <ul> <li>Fixed Autoprefixer regression.</li> </ul> <h2>8.1.11</h2> <ul> <li>Added PostCSS update suggestion on unknown event in plugin.</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/postcss/postcss/blob/main/CHANGELOG.md">postcss's changelog</a>.</em></p> <blockquote> <h2>8.2.6</h2> <ul> <li>Fixed <code>Maximum call stack size exceeded</code> in <code>Node#toJSON</code>.</li> <li>Fixed docs (by inokawa).</li> </ul> <h2>8.2.5</h2> <ul> <li>Fixed escaped characters handling in <code>list.split</code> (by Natalie Weizenbaum).</li> </ul> <h2>8.2.4</h2> <ul> <li>Added plugin name to <code>postcss.plugin()</code> warning (by Tom Williams).</li> <li>Fixed docs (by Bill Columbia).</li> </ul> <h2>8.2.3</h2> <ul> <li>Fixed <code>JSON.stringify(Node[])</code> support (by Niklas Mischkulnig).</li> </ul> <h2>8.2.2</h2> <ul> <li>Fixed CSS-in-JS support (by James Garbutt).</li> <li>Fixed plugin types (by Ludovico Fischer).</li> <li>Fixed <code>Result#warn()</code> types.</li> </ul> <h2>8.2.1</h2> <ul> <li>Fixed <code>Node#toJSON()</code> and <code>postcss.fromJSON()</code> (by Niklas Mischkulnig).</li> </ul> <h2>8.2 “Prince Orobas”</h2> <ul> <li>Added <code>Node#toJSON()</code> and <code>postcss.fromJSON()</code> (by Niklas Mischkulnig).</li> </ul> <h2>8.1.14</h2> <ul> <li>Fixed parser performance regression.</li> </ul> <h2>8.1.13</h2> <ul> <li>Fixed broken AST after moving nodes in visitor API.</li> </ul> <h2>8.1.12</h2> <ul> <li>Fixed Autoprefixer regression.</li> </ul> <h2>8.1.11</h2> <ul> <li>Added PostCSS update suggestion on unknown event in plugin.</li> </ul> <h2>8.1.10</h2> <ul> <li>Fixed <code>LazyResult</code> type export (by Evan You).</li> <li>Fixed <code>LazyResult</code> type compatibility with <code>Promise</code> (by Anton Kastritskiy).</li> </ul> <h2>8.1.9</h2> <ul> <li>Reduced dependencies number (by Bogdan Chadkin).</li> </ul> <h2>8.1.8</h2> <ul> <li>Fixed <code>LazyResult</code> type compatibility with <code>Promise</code> (by Ludovico Fischer).</li> <li>Fixed HTTPS links in documentation.</li> </ul> <h2>8.1.7</h2> <ul> <li>Fixed <code>import</code> support in TypeScript (by Remco Haszing).</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/postcss/postcss/commit/9fe29cc786267d35df9b97ec5fef4df6857e0f7d"><code>9fe29cc</code></a> Release 8.2.6 version</li> <li><a href="https://github.com/postcss/postcss/commit/d00b35d73d920d125318cb2f3b9529c7f4b5b4f3"><code>d00b35d</code></a> Update dependebcies</li> <li><a href="https://github.com/postcss/postcss/commit/5797a438599ddfd320a7ff22eee089e07db5dfea"><code>5797a43</code></a> Fix Node#toJSON and proxyCache</li> <li><a href="https://github.com/postcss/postcss/commit/faac7d0599148be3423b11ab7c3599866e079e34"><code>faac7d0</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/postcss/postcss/issues/1525">#1525</a> from inokawa/patch-1</li> <li><a href="https://github.com/postcss/postcss/commit/35865b80badf8b244a2081ee300a785e8a96abb1"><code>35865b8</code></a> Fix typo in doc</li> <li><a href="https://github.com/postcss/postcss/commit/416b3b905de4bf27ad7e68fbc1d750c063e6e0f2"><code>416b3b9</code></a> Fix changelog note</li> <li><a href="https://github.com/postcss/postcss/commit/52a80ae81c26c02cd33f3fb394b079f37643a714"><code>52a80ae</code></a> Release 8.2.5 version</li> <li><a href="https://github.com/postcss/postcss/commit/bca83e374ac22df514e2e4ed1e28de382d3dba6e"><code>bca83e3</code></a> Update dependencies</li> <li><a href="https://github.com/postcss/postcss/commit/7cba5043397725671a9a025e9aa588146fa338d0"><code>7cba504</code></a> Clean up code</li> <li><a href="https://github.com/postcss/postcss/commit/7234b1a1eb702f31f2807dbff3b7f7906a77b69c"><code>7234b1a</code></a> Use latest version of action to install Node.js</li> <li>Additional commits viewable in <a href="https://github.com/postcss/postcss/compare/7.0.35...8.2.6">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=postcss&package-manager=npm_and_yarn&previous-version=7.0.35&new-version=8.2.6)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) 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-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> 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 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) </details> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
arthur added the pull-request label 2025-12-01 17:05:37 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: arthur/website-old#10