diff --git a/CHANGELOG.md b/CHANGELOG.md index 9219196..7cc8ff8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,34 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [1.17.0](https://github.com/PeculiarVentures/pdf/compare/v1.16.0...v1.17.0) (2025-01-07) + + +### Bug Fixes + +* **cms:** improve signing algorithm handling in OCSP response ([6ddfbaf](https://github.com/PeculiarVentures/pdf/commit/6ddfbaf3cb0d7b9b008bc2040f52fba7a26adcf6)) +* **doc:** improve wording for identity verification and document structure warnings ([52cb7af](https://github.com/PeculiarVentures/pdf/commit/52cb7afdfc69197f6f9e42971d545d2f765bd2af)) +* **doc:** update default xref option to 0 for XRef Stream ([cf115bc](https://github.com/PeculiarVentures/pdf/commit/cf115bc9764562f99f0d2eb7b007952568676cff)) +* **forms:** implement paint call on border and color change events ([9b98eee](https://github.com/PeculiarVentures/pdf/commit/9b98eee3bd90d299ce07cbc74f126455a751ec02)) +* implement Registry class for managing circular dependencies and enhance CMS imports ([c5cd79b](https://github.com/PeculiarVentures/pdf/commit/c5cd79b0364a1b198ae128799d81688410dd40a1)) +* update repo-init action to use NPM token instead of GitHub token ([7267dc2](https://github.com/PeculiarVentures/pdf/commit/7267dc2c0bb977fd2bb174f48ee67848fcff869d)) + + +### Features + +* **doc:** add catalog getter with error handling in PDFDocument ([7a1e043](https://github.com/PeculiarVentures/pdf/commit/7a1e0435814d8136f453514b8cafe835b3c4fecc)) +* **doc:** enable signature flags in AcroForm for PDFPage ([ad910e7](https://github.com/PeculiarVentures/pdf/commit/ad910e757d0b036cf5172e2f5977451df6da0495)) +* **forms:** add name parameter to IFormComponentParameters and improve FormComponent structure ([9822cde](https://github.com/PeculiarVentures/pdf/commit/9822cde2acf80072d074dd935b5ed3f525208caa)) +* **tests:** add password parameter to PdfRenderingHelper load and getPageHash methods ([1acc968](https://github.com/PeculiarVentures/pdf/commit/1acc968473de1569c6ec4f7bf33ab5c73207face)) +* **tests:** add PDF testing utilities and helpers ([8911ac5](https://github.com/PeculiarVentures/pdf/commit/8911ac5e2c87661a122b1a8d11148cea235e8268)) +* **tests:** add PKI handling and PDF file writing utilities ([d088f1c](https://github.com/PeculiarVentures/pdf/commit/d088f1c54710d7d598b0df4ee2ea601db20f9b37)) +* **tests:** enhance PdfRenderingHelper and add resource handling ([f3c41b7](https://github.com/PeculiarVentures/pdf/commit/f3c41b78f3701344e1b2d3c34b3048a427d4bc9d)) +* **ViewWriter:** add toString method to convert buffer to binary string ([c471b75](https://github.com/PeculiarVentures/pdf/commit/c471b759415e049d96bb760bb72f1cb8ee8a6b9e)) + + + + + # [1.16.0](https://github.com/PeculiarVentures/pdf/compare/v1.15.0...v1.16.0) (2024-07-22) diff --git a/lerna.json b/lerna.json index e49c4d1..216daf3 100644 --- a/lerna.json +++ b/lerna.json @@ -3,7 +3,7 @@ "packages": [ "packages/*" ], - "version": "1.16.0", + "version": "1.17.0", "command": { "publish": { "registry": "https://registry.npmjs.org/" diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index faf777e..b228101 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [1.17.0](https://github.com/PeculiarVentures/pdf/compare/v1.16.0...v1.17.0) (2025-01-07) + +**Note:** Version bump only for package @peculiar/pdf-cli + + + + + # [1.16.0](https://github.com/PeculiarVentures/pdf/compare/v1.15.0...v1.16.0) (2024-07-22) **Note:** Version bump only for package @peculiarventures/pdf-cli diff --git a/packages/cli/package.json b/packages/cli/package.json index 4648d29..8372b7c 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "@peculiar/pdf-cli", - "version": "1.16.0", + "version": "1.17.0", "description": "Command-line interface for PDF document manipulation and analysis", "author": "microshine ", "homepage": "https://github.com/PeculiarVentures/pdf/tree/master/packages/pdf-cli#readme", @@ -30,10 +30,10 @@ "url": "https://github.com/PeculiarVentures/pdf/issues" }, "dependencies": { + "@peculiar/pdf-core": "^1.17.0", + "@peculiar/pdf-doc": "^1.17.0", "@peculiar/webcrypto": "^1.5.0", - "@peculiar/pdf-core": "^1.16.0", - "@peculiar/pdf-doc": "^1.16.0", "commander": "^12.1.0", "pkijs": "^3.2.4" } -} \ No newline at end of file +} diff --git a/packages/copy/CHANGELOG.md b/packages/copy/CHANGELOG.md index ce4d22c..6498341 100644 --- a/packages/copy/CHANGELOG.md +++ b/packages/copy/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [1.17.0](https://github.com/PeculiarVentures/pdf/compare/v1.16.0...v1.17.0) (2025-01-07) + +**Note:** Version bump only for package @peculiar/pdf-copy + + + + + # [1.16.0](https://github.com/PeculiarVentures/pdf/compare/v1.15.0...v1.16.0) (2024-07-22) **Note:** Version bump only for package @peculiarventures/pdf-copy diff --git a/packages/copy/package.json b/packages/copy/package.json index ab38bd5..35f3678 100644 --- a/packages/copy/package.json +++ b/packages/copy/package.json @@ -1,6 +1,6 @@ { "name": "@peculiar/pdf-copy", - "version": "1.16.0", + "version": "1.17.0", "description": "This module allows to recreate the PDF document using specified filters.", "keywords": [ "pdf", @@ -36,7 +36,7 @@ "url": "https://github.com/PeculiarVentures/pdf/issues" }, "dependencies": { - "@peculiar/pdf-core": "^1.16.0", + "@peculiar/pdf-core": "^1.17.0", "tslib": "^2.8.1" } -} \ No newline at end of file +} diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index 2576b64..92201e3 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -3,6 +3,23 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [1.17.0](https://github.com/PeculiarVentures/pdf/compare/v1.16.0...v1.17.0) (2025-01-07) + + +### Bug Fixes + +* **doc:** update default xref option to 0 for XRef Stream ([cf115bc](https://github.com/PeculiarVentures/pdf/commit/cf115bc9764562f99f0d2eb7b007952568676cff)) + + +### Features + +* **doc:** add catalog getter with error handling in PDFDocument ([7a1e043](https://github.com/PeculiarVentures/pdf/commit/7a1e0435814d8136f453514b8cafe835b3c4fecc)) +* **ViewWriter:** add toString method to convert buffer to binary string ([c471b75](https://github.com/PeculiarVentures/pdf/commit/c471b759415e049d96bb760bb72f1cb8ee8a6b9e)) + + + + + # [1.16.0](https://github.com/PeculiarVentures/pdf/compare/v1.15.0...v1.16.0) (2024-07-22) **Note:** Version bump only for package @peculiarventures/pdf-core diff --git a/packages/core/package.json b/packages/core/package.json index e55726c..86d3bd2 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@peculiar/pdf-core", - "version": "1.16.0", + "version": "1.17.0", "description": "Core functionality library for PDF document processing and manipulation", "keywords": [ "pdf", @@ -50,4 +50,4 @@ "pvutils": "^1.1.3", "tslib": "^2.8.1" } -} \ No newline at end of file +} diff --git a/packages/doc/CHANGELOG.md b/packages/doc/CHANGELOG.md index eb903b4..bd8ef5c 100644 --- a/packages/doc/CHANGELOG.md +++ b/packages/doc/CHANGELOG.md @@ -3,6 +3,26 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [1.17.0](https://github.com/PeculiarVentures/pdf/compare/v1.16.0...v1.17.0) (2025-01-07) + + +### Bug Fixes + +* **cms:** improve signing algorithm handling in OCSP response ([6ddfbaf](https://github.com/PeculiarVentures/pdf/commit/6ddfbaf3cb0d7b9b008bc2040f52fba7a26adcf6)) +* **doc:** improve wording for identity verification and document structure warnings ([52cb7af](https://github.com/PeculiarVentures/pdf/commit/52cb7afdfc69197f6f9e42971d545d2f765bd2af)) +* **forms:** implement paint call on border and color change events ([9b98eee](https://github.com/PeculiarVentures/pdf/commit/9b98eee3bd90d299ce07cbc74f126455a751ec02)) +* implement Registry class for managing circular dependencies and enhance CMS imports ([c5cd79b](https://github.com/PeculiarVentures/pdf/commit/c5cd79b0364a1b198ae128799d81688410dd40a1)) + + +### Features + +* **doc:** enable signature flags in AcroForm for PDFPage ([ad910e7](https://github.com/PeculiarVentures/pdf/commit/ad910e757d0b036cf5172e2f5977451df6da0495)) +* **forms:** add name parameter to IFormComponentParameters and improve FormComponent structure ([9822cde](https://github.com/PeculiarVentures/pdf/commit/9822cde2acf80072d074dd935b5ed3f525208caa)) + + + + + # [1.16.0](https://github.com/PeculiarVentures/pdf/compare/v1.15.0...v1.16.0) (2024-07-22) diff --git a/packages/doc/package.json b/packages/doc/package.json index f907944..03de760 100644 --- a/packages/doc/package.json +++ b/packages/doc/package.json @@ -1,6 +1,6 @@ { "name": "@peculiar/pdf-doc", - "version": "1.16.0", + "version": "1.17.0", "description": "High-level PDF manipulation and generation module for Node.js and browser", "keywords": [], "author": "microshine ", @@ -34,10 +34,10 @@ "@peculiar/asn1-schema": "^2.3.13", "@peculiar/asn1-tsp": "^2.3.13", "@peculiar/asn1-x509": "^2.3.13", + "@peculiar/pdf-copy": "^1.17.0", + "@peculiar/pdf-core": "^1.17.0", + "@peculiar/pdf-font": "^1.17.0", "@peculiar/x509": "^1.12.3", - "@peculiar/pdf-copy": "^1.16.0", - "@peculiar/pdf-core": "^1.16.0", - "@peculiar/pdf-font": "^1.16.0", "asn1js": "^3.0.5", "bytestreamjs": "2.0.1", "fast-png": "^6.2.0", @@ -47,4 +47,4 @@ "pvutils": "^1.1.3", "tslib": "^2.8.1" } -} \ No newline at end of file +} diff --git a/packages/font/CHANGELOG.md b/packages/font/CHANGELOG.md index 096b8d3..429cf66 100644 --- a/packages/font/CHANGELOG.md +++ b/packages/font/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [1.17.0](https://github.com/PeculiarVentures/pdf/compare/v1.16.0...v1.17.0) (2025-01-07) + +**Note:** Version bump only for package @peculiar/pdf-font + + + + + # [1.16.0](https://github.com/PeculiarVentures/pdf/compare/v1.15.0...v1.16.0) (2024-07-22) **Note:** Version bump only for package @peculiarventures/pdf-font diff --git a/packages/font/package.json b/packages/font/package.json index b6dc696..8d7d389 100644 --- a/packages/font/package.json +++ b/packages/font/package.json @@ -1,6 +1,6 @@ { "name": "@peculiar/pdf-font", - "version": "1.16.0", + "version": "1.17.0", "description": "Font handling library for PDF document generation", "keywords": [ "pdf", @@ -44,4 +44,4 @@ "pvtsutils": "^1.3.6", "tslib": "^2.8.1" } -} \ No newline at end of file +} diff --git a/packages/form-json/CHANGELOG.md b/packages/form-json/CHANGELOG.md index aa2aaac..a2dc485 100644 --- a/packages/form-json/CHANGELOG.md +++ b/packages/form-json/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [1.17.0](https://github.com/PeculiarVentures/pdf/compare/v1.16.0...v1.17.0) (2025-01-07) + +**Note:** Version bump only for package @peculiar/pdf-form-json + + + + + # [1.16.0](https://github.com/PeculiarVentures/pdf/compare/v1.15.0...v1.16.0) (2024-07-22) **Note:** Version bump only for package @peculiarventures/pdf-form-json diff --git a/packages/form-json/package.json b/packages/form-json/package.json index f3472f6..3b3d274 100644 --- a/packages/form-json/package.json +++ b/packages/form-json/package.json @@ -1,6 +1,6 @@ { "name": "@peculiar/pdf-form-json", - "version": "1.16.0", + "version": "1.17.0", "description": "A PDF module enabling working with form elements through JSON.", "keywords": [ "pdf", @@ -34,9 +34,9 @@ "url": "https://github.com/PeculiarVentures/pdf/issues" }, "dependencies": { - "@peculiar/pdf-core": "^1.16.0", - "@peculiar/pdf-doc": "^1.16.0", + "@peculiar/pdf-core": "^1.17.0", + "@peculiar/pdf-doc": "^1.17.0", "pvtsutils": "^1.3.6", "tslib": "^2.8.1" } -} \ No newline at end of file +} diff --git a/packages/repair/CHANGELOG.md b/packages/repair/CHANGELOG.md index 4c2edde..7389f94 100644 --- a/packages/repair/CHANGELOG.md +++ b/packages/repair/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [1.17.0](https://github.com/PeculiarVentures/pdf/compare/v1.16.0...v1.17.0) (2025-01-07) + +**Note:** Version bump only for package @peculiar/pdf-repair + + + + + # [1.16.0](https://github.com/PeculiarVentures/pdf/compare/v1.15.0...v1.16.0) (2024-07-22) **Note:** Version bump only for package @peculiarventures/pdf-repair diff --git a/packages/repair/package.json b/packages/repair/package.json index f1d3a5e..8320a04 100644 --- a/packages/repair/package.json +++ b/packages/repair/package.json @@ -1,6 +1,6 @@ { "name": "@peculiar/pdf-repair", - "version": "1.16.0", + "version": "1.17.0", "description": "A comprehensive PDF repair module for Node.js, providing automated diagnosis and correction of PDF documents.", "keywords": [ "pdf", @@ -33,8 +33,8 @@ "url": "https://github.com/PeculiarVentures/pdf/issues" }, "dependencies": { - "@peculiar/pdf-core": "^1.16.0", - "@peculiar/pdf-doc": "^1.16.0", + "@peculiar/pdf-core": "^1.17.0", + "@peculiar/pdf-doc": "^1.17.0", "tslib": "^2.8.1" } -} \ No newline at end of file +} diff --git a/packages/tests/CHANGELOG.md b/packages/tests/CHANGELOG.md new file mode 100644 index 0000000..ec340e1 --- /dev/null +++ b/packages/tests/CHANGELOG.md @@ -0,0 +1,14 @@ +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +# [1.17.0](https://github.com/PeculiarVentures/pdf/compare/v1.16.0...v1.17.0) (2025-01-07) + + +### Features + +* **tests:** add password parameter to PdfRenderingHelper load and getPageHash methods ([1acc968](https://github.com/PeculiarVentures/pdf/commit/1acc968473de1569c6ec4f7bf33ab5c73207face)) +* **tests:** add PDF testing utilities and helpers ([8911ac5](https://github.com/PeculiarVentures/pdf/commit/8911ac5e2c87661a122b1a8d11148cea235e8268)) +* **tests:** add PKI handling and PDF file writing utilities ([d088f1c](https://github.com/PeculiarVentures/pdf/commit/d088f1c54710d7d598b0df4ee2ea601db20f9b37)) +* **tests:** enhance PdfRenderingHelper and add resource handling ([f3c41b7](https://github.com/PeculiarVentures/pdf/commit/f3c41b78f3701344e1b2d3c34b3048a427d4bc9d)) diff --git a/packages/tests/package.json b/packages/tests/package.json index 01011e6..5102e3a 100644 --- a/packages/tests/package.json +++ b/packages/tests/package.json @@ -1,6 +1,6 @@ { "name": "@peculiar/pdf-tests", - "version": "1.16.0", + "version": "1.17.0", "description": "Test suite for PDF - Utilities and helper tools for testing purposes", "keywords": [], "author": "microshine ", @@ -25,4 +25,4 @@ "bugs": { "url": "https://github.com/PeculiarVentures/pdf/issues" } -} \ No newline at end of file +}