Releases: lsnepomuceno/laravel-a1-pdf-sign
Releases · lsnepomuceno/laravel-a1-pdf-sign
v1.0.11 - Fix sys temp dir path
What's Changed
- fix: adds support for system temp dir by @lsnepomuceno in #131
- chore(deps): bump setasign/fpdi from 2.5.0 to 2.6.0 by @dependabot in #134
- chore(deps): bump symfony/process from 6.4.2 to 6.4.3 by @dependabot in #133
Full Changelog: 1.0.10...1.0.11
v1.0.10 - Adds system temp dir support
What's Changed
- feat: adds support for system temp dir by @lsnepomuceno in #130
Full Changelog: 1.0.9...1.0.10
v1.0.8 - Accept special characters in certificate password.
What's Changed
- chore(deps-dev): bump nunomaduro/collision from 7.0.2 to 7.1.0 by @dependabot in #94
- chore(deps): bump guzzlehttp/psr7 from 2.4.3 to 2.5.0 by @dependabot in #98
- chore(deps): bump symfony/process from 6.2.5 to 6.2.10 by @dependabot in #99
- Fix: Obtain certificate info when "," contained inside Quotation marks. by @celli33 in #108
- chore(deps): bump symfony/process from 6.2.10 to 6.3.0 by @dependabot in #104
- chore(deps): bump tecnickcom/tc-lib-pdf from 8.0.16 to 8.0.22 by @dependabot in #103
- chore(deps): bump setasign/fpdi from 2.3.7 to 2.5.0 by @dependabot in #121
- chore(deps): bump tecnickcom/tc-lib-pdf from 8.0.22 to 8.0.26 by @dependabot in #118
- chore(deps): bump symfony/process from 6.3.0 to 6.3.4 by @dependabot in #117
- Accept special characters in certificate password. by @flavioafa in #129
- chore(deps): bump symfony/process from 6.3.4 to 6.4.2 by @dependabot in #128
- chore(deps): bump tecnickcom/tc-lib-pdf from 8.0.26 to 8.0.55 by @dependabot in #127
- chore(deps): bump tecnickcom/tcpdf from 6.6.2 to 6.6.5 by @dependabot in #122
New Contributors
- @celli33 made their first contribution in #108
- @flavioafa made their first contribution in #129
Full Changelog: 1.0.8...1.0.9
v1.0.8 - Fix: image insertion on last page when page -1 is defined
What's Changed
- fix: image insertion on last page when page -1 is defined by @lsnepomuceno in #93
Full Changelog: 1.0.7...1.0.8
v1.0.7 - Fix: setImage method
What's Changed
- Refactor/fix implement signature image process by @lsnepomuceno in #85
Full Changelog: 1.0.6...1.0.7
v1.0.6 - Support for Laravel 10 and PHP 8.2
What's Changed
- feature/adds-support-for-laravel-10-php-82 by @lsnepomuceno and @emtudo in #81
Full Changelog: 1.0.5...1.0.6
v1.0.5
What's Changed
- chore(deps): bump guzzlehttp/psr7 from 2.1.0 to 2.4.1 by @dependabot in #53
- chore(deps-dev): bump nunomaduro/collision from 6.1.0 to 6.3.1 by @dependabot in #54
- chore(deps): bump tecnickcom/tc-lib-pdf from 8.0.6 to 8.0.10 by @dependabot in #55
- chore(deps-dev): bump phpmd/phpmd from 2.11.1 to 2.13.0 by @dependabot in #56
- chore(deps-dev): bump orchestra/testbench from 7.1.0 to 7.9.0 by @dependabot in #57
- chore(deps): bump intervention/image from 2.7.1 to 2.7.2 by @dependabot in #58
- chore(deps-dev): bump orchestra/testbench from 7.9.0 to 7.11.0 by @dependabot in #60
- chore(deps-dev): bump orchestra/testbench from 7.11.0 to 7.15.0 by @dependabot in #62
- chore(deps): bump symfony/process from 6.1.3 to 6.2.0 by @dependabot in #61
- chore(deps-dev): bump nunomaduro/collision from 6.3.1 to 6.3.2 by @dependabot in #66
- chore(deps): bump tecnickcom/tcpdf from 6.4.4 to 6.6.2 by @dependabot in #65
- chore(deps-dev): bump orchestra/testbench from 7.15.0 to 7.17.0 by @dependabot in #64
- chore(deps): bump tecnickcom/tc-lib-pdf from 8.0.10 to 8.0.16 by @dependabot in #63
- V1.x dev by @lsnepomuceno in #73
Full Changelog: 1.0.4...1.0.5
v1.0.4 Release
Stable version of PDF file signing package.
Please read the release notes before performing the upgrade.
What's Changed
- Version 1.x by @lsnepomuceno in #52
Full Changelog: 0.0.17.1...1.0.4
v1.0.3-alpha
💥 Breaking Changes
- The namespace of the classes is no longer LSNepomuceno\LaravelA1PdfSign, now the classes are located in LSNepomuceno\LaravelA1PdfSign\Sign;
- The namespace of the exceptions is no longer LSNepomuceno\LaravelA1PdfSign\Exception, now the exceptions are located in LSNepomuceno\LaravelA1PdfSign\Exceptions;
- This version has as minimum requirements: Laravel 9 and PHP 8.1;
- It is NOT POSSIBLE to use this version with PHP 8.0;
- NOT FULLY compatible with Lumen, only use Laravel for new projects as described in official documentation;
- Removed Fluent return types, now we have return types with explicit entities. The impacted methods were:
- LSNepomuceno\LaravelA1PdfSign\Sign\ManageCert@getCert();
- LSNepomuceno\LaravelA1PdfSign\Sign\ValidatePdfSignature@from();
- Helpers encryptCertData() and validatePdfSignature();
Added
- Validation and signature of PDF documents through commands validate:pdf-sign and sign:pdf;
- Full integration with Laravel through ServiceProvider;
- Improved test coverage;
Future Modifications
- Swoole may be adopted;
- Encryption capabilities WILL BE DECOUPLED from the ManageCert class in upcoming updates;
Implement seal image on every pages
Added
- Implement seal image on every pages
- PR #40 @ c7e54da91a by @lsnepomuceno;
- PR #42 @ f4be5e6419 by @joaovdiasb;