Skip to content

Commit f939652

Browse files
holblinJean-Philippe Zolesio
andauthored
Release 4.4.3 (#408)
* Update code to allow better static analysis * Make new util function and reduce regex exploit by using indexOf instead of regex * Fix regex dos * Update dependencies * Update changelog * Bump the version number to 4.4.3 * Fix parcel compilation error * Update yarn.lock --------- Co-authored-by: Jean-Philippe Zolesio <[email protected]>
1 parent cb6dbc9 commit f939652

File tree

8 files changed

+1326
-1159
lines changed

8 files changed

+1326
-1159
lines changed

History.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
4.4.3 / 2025-05-15
2+
==================
3+
4+
* Refactoring of the code to allow security static analysis from GitHub
5+
* Fix Polynomial regular expression used on uncontrolled data
6+
* Improve performance (very low improvement)
7+
* Switch some regex to string search (indexOf based)
8+
* Add new utils function with their corresponding unit-tests
9+
* Add nicer format of template areas #283 by @jogibear9988
10+
* Fix typescript error on ConstructorParameters (parcel) #444
11+
112
4.4.2 / 2025-02-12
213
==================
314

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@adobe/css-tools",
3-
"version": "4.4.2",
3+
"version": "4.4.3",
44
"description": "CSS parser / stringifier",
55
"source": "src/index.ts",
66
"main": "./dist/index.cjs",
@@ -17,17 +17,17 @@
1717
"Readme.md"
1818
],
1919
"devDependencies": {
20-
"@parcel/packager-ts": "2.13.3",
21-
"@parcel/transformer-typescript-types": "2.13.3",
20+
"@parcel/packager-ts": "2.15.0",
21+
"@parcel/transformer-typescript-types": "2.15.0",
2222
"@types/benchmark": "^2.1.1",
2323
"@types/bytes": "^3.1.5",
2424
"@types/jest": "^29.5.3",
25-
"@types/node": "^22.13.1",
25+
"@types/node": "^22.15.18",
2626
"benchmark": "^2.1.4",
2727
"bytes": "^3.1.0",
2828
"gts": "^6.0.2",
2929
"jest": "^29.6.2",
30-
"parcel": "^2.13.3",
30+
"parcel": "^2.15.0",
3131
"ts-jest": "^29.1.1",
3232
"typescript": "^5.7.3"
3333
},

0 commit comments

Comments
 (0)