We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ca1901 commit 2502f75Copy full SHA for 2502f75
3 files changed
CHANGELOG.md
@@ -2,6 +2,10 @@
2
3
This project adheres to [Semantic Versioning](https://semver.org/).
4
5
+## 8.5.11
6
+
7
+- Fixed nested brackets parsing performance.
8
9
## 8.5.10
10
11
- Fixed XSS via unescaped `</style>` in non-bundler cases (by @TharVid).
lib/processor.js
@@ -7,7 +7,7 @@ let Root = require('./root')
class Processor {
constructor(plugins = []) {
- this.version = '8.5.10'
+ this.version = '8.5.11'
this.plugins = this.normalize(plugins)
12
}
13
package.json
@@ -1,6 +1,6 @@
1
{
"name": "postcss",
- "version": "8.5.10",
+ "version": "8.5.11",
"description": "Tool for transforming styles with JS plugins",
"keywords": [
"css",
0 commit comments