pdfmake 0.3.0-beta.15 → 0.3.0-beta.17
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 +12 -1
- package/README.md +2 -2
- package/build/pdfmake.js +63358 -62914
- 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 -5
- package/fonts/Roboto/Roboto-Italic.ttf +0 -0
- package/fonts/Roboto/Roboto-Medium.ttf +0 -0
- package/fonts/Roboto/Roboto-MediumItalic.ttf +0 -0
- package/fonts/Roboto/Roboto-Regular.ttf +0 -0
- package/js/URLResolver.js +8 -2
- package/js/base.js +1 -1
- package/js/browser-extensions/URLBrowserResolver.js +10 -5
- package/js/browser-extensions/index.js +1 -1
- package/js/index.js +1 -1
- package/package.json +19 -19
- package/src/URLResolver.js +10 -3
- package/src/base.js +1 -1
- package/src/browser-extensions/URLBrowserResolver.js +10 -5
- package/src/browser-extensions/index.js +1 -1
- package/src/index.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.3.0-beta.17 - 2025-04-29
|
|
4
|
+
|
|
5
|
+
- Fixed DoS via repeatedly redirect URL in file embedding
|
|
6
|
+
|
|
7
|
+
## 0.3.0-beta.16 - 2025-04-26
|
|
8
|
+
|
|
9
|
+
- Update pdfkit to 0.17.0
|
|
10
|
+
- Update Roboto font (version 3.011)
|
|
11
|
+
- Fixed URL resolving for same URL in browser
|
|
12
|
+
- Fixed sharing URL resolver for not available URLs
|
|
13
|
+
|
|
3
14
|
## 0.3.0-beta.15 - 2025-01-01
|
|
4
15
|
|
|
5
16
|
- Reverted to the original `pdfkit` package, moving away from `@foliojs-fork`
|
|
@@ -8,7 +19,7 @@
|
|
|
8
19
|
|
|
9
20
|
## 0.3.0-beta.14 - 2024-12-23
|
|
10
21
|
|
|
11
|
-
-
|
|
22
|
+
- Fixed big size pdfmake bundle for browser
|
|
12
23
|
|
|
13
24
|
## 0.3.0-beta.13 - 2024-12-15
|
|
14
25
|
|
package/README.md
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
# pdfmake [![Node.js CI][githubactions_img]][githubactions_url] [![GitHub][github_img]][github_url] [![npm][npm_img]][npm_url] [![Bower][bower_img]][bower_url] [![Packagist][packagist_img]][packagist_url] [![CDNJS][cdnjs_img]][cndjs_url]
|
|
2
2
|
|
|
3
|
-
[githubactions_img]: https://github.com/bpampuch/pdfmake/workflows/
|
|
3
|
+
[githubactions_img]: https://github.com/bpampuch/pdfmake/actions/workflows/node.js.yml/badge.svg?branch=master
|
|
4
4
|
[githubactions_url]: https://github.com/bpampuch/pdfmake/actions
|
|
5
5
|
|
|
6
|
-
[github_img]: https://img.shields.io/github/release/bpampuch/pdfmake.svg
|
|
6
|
+
[github_img]: https://img.shields.io/github/release/bpampuch/pdfmake.svg?colorB=0E7FBF
|
|
7
7
|
[github_url]: https://github.com/bpampuch/pdfmake/releases/latest
|
|
8
8
|
|
|
9
9
|
[npm_img]: https://img.shields.io/npm/v/pdfmake.svg?colorB=0E7FBF
|