subfont 7.2.2 → 7.2.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ### v7.2.3 (2026-03-21)
2
+
3
+ - [Bump assetgraph to ^7.13.0](https://github.com/Munter/subfont/commit/2963cc38663d00bc115dffcac4942a0e0f94db58) ([Andreas Lind](mailto:andreas.lind@workday.com))
4
+
1
5
  ### v7.2.2 (2026-03-21)
2
6
 
3
7
  - [Drive-by: Add test for unicodeRange generation](https://github.com/Munter/subfont/commit/ae58ca03f846d5e95942875bf163f66d4c6cdb1c) ([Andreas Lind](mailto:andreas.lind@workday.com))
@@ -27,6 +27,7 @@ async function downloadOrLocatePreferredBrowserRevision() {
27
27
  }
28
28
  return puppeteer.launch({
29
29
  executablePath: revisionInfo.executablePath,
30
+ headless: 'new',
30
31
  });
31
32
  }
32
33
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "subfont",
3
- "version": "7.2.2",
3
+ "version": "7.2.3",
4
4
  "description": "Speeds up your pages initial paint by automatically subsetting local or Google fonts and loading them optimally",
5
5
  "engines": {
6
6
  "node": ">=10.0.0"
@@ -48,7 +48,7 @@
48
48
  "dependencies": {
49
49
  "@gustavnikolaj/async-main-wrap": "^3.0.1",
50
50
  "@hookun/parse-animation-shorthand": "^0.1.5",
51
- "assetgraph": "^7.8.1",
51
+ "assetgraph": "^7.13.0",
52
52
  "browserslist": "^4.13.0",
53
53
  "css-font-parser": "^2.0.0",
54
54
  "css-font-weight-names": "^0.2.1",
@@ -90,12 +90,15 @@
90
90
  "offline-github-changelog": "^1.6.1",
91
91
  "prettier": "~2.3.0",
92
92
  "proxyquire": "^2.1.1",
93
- "puppeteer": "^19.8.5",
93
+ "puppeteer": "^24.40.0",
94
94
  "sinon": "^9.0.2",
95
95
  "unexpected": "^11.8.1",
96
96
  "unexpected-check": "^2.3.1",
97
97
  "unexpected-resemble": "^5.0.1",
98
98
  "unexpected-set": "^2.0.1",
99
99
  "unexpected-sinon": "^10.11.2"
100
+ },
101
+ "overrides": {
102
+ "canvas": "latest"
100
103
  }
101
104
  }