pdfmake 0.2.5 → 0.2.7
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 +11 -0
- package/LICENSE +1 -1
- package/build/pdfmake.js +2669 -8314
- package/build/pdfmake.js.map +1 -1
- package/build/pdfmake.min.js +2 -2
- package/build/pdfmake.min.js.map +1 -1
- package/build/vfs_fonts.js +4 -4
- package/package.json +1 -1
- package/src/browser-extensions/URLBrowserResolver.js +10 -5
- package/src/browser-extensions/pdfMake.js +36 -12
- package/src/printer.js +5 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.2.7 - 2022-12-17
|
|
4
|
+
|
|
5
|
+
- Fixed theoretical vulnerability CVE-2022-46161 (**It was never part of version released as npm package or cdnjs or bower or packagist!**)
|
|
6
|
+
|
|
7
|
+
## 0.2.6 - 2022-10-09
|
|
8
|
+
|
|
9
|
+
- Updated Roboto font (version 3.005)
|
|
10
|
+
- Fixed calculating auto page height
|
|
11
|
+
- Fixed TrueType Collection loading from URL
|
|
12
|
+
- Fixed refetching fonts from URL
|
|
13
|
+
|
|
3
14
|
## 0.2.5 - 2022-04-01
|
|
4
15
|
|
|
5
16
|
- Support passing headers to request for loading font files and images via URL adresses
|
package/LICENSE
CHANGED