php-gnupg/UPGRADING.md
Jakub Zelenka 9ccd9aadfa
Convert all functions to use objects and drop a resource (#64)
This is a breaking changes but impact should be quite small - only users
that use is_resource will need to update code.
2026-01-07 19:59:02 +01:00

16 lines
484 B
Markdown

# PHP GnuPG Upgrading notes
This document lists backward incompatible change in the extension
## 2.0.0
- minimal PHP version bumped to 7.2
- gnupg resource has been removed and the object is used instead in all functions
## 1.5.0
- no backward incompatible changes
## 1.4.0
- gnupg_decryptverify $plaintext reference can no longer be passed in
call_user_func_array which is conformant to user space code.
See https://github.com/php-gnupg/php-gnupg/issues/4 for more details.