summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRemi Collet <remi@php.net>2020-04-30 09:40:46 +0200
committerRemi Collet <remi@php.net>2020-04-30 09:40:46 +0200
commit1b98151734dedc4a580eae7f1f267edcb4198aa6 (patch)
tree6c834f2a48dde1a6a5c4d94c11d6a2241c8e5480
parent66d42e98844de694c6f77c299a3dc045ac5a3261 (diff)
downloadphp-git-1b98151734dedc4a580eae7f1f267edcb4198aa6.tar.gz
doc enchant changes
-rw-r--r--NEWS6
-rw-r--r--UPGRADING11
2 files changed, 17 insertions, 0 deletions
diff --git a/NEWS b/NEWS
index a6e2915ab6..94e8e4855f 100644
--- a/NEWS
+++ b/NEWS
@@ -40,6 +40,12 @@ PHP NEWS
. Add property DOMXPath::$registerNodeNamespaces and constructor argument
that allow global flag to configure query() or evaluate() calls.
+- Enchant:
+ . Add LIBENCHANT_VERSION macro
+ . Deprecate enchant_broker_set_dict_path, enchant_broker_get_dict_path
+ enchant_dict_add_to_personal and enchant_dict_is_in_session
+ . Add enchant_dict_add and enchant_dict_is_added functions
+
- FPM:
. Fixed bug #64865 (Search for .user.ini files from script dir up to
CONTEXT_DOCUMENT_ROOT). (Will Bender)
diff --git a/UPGRADING b/UPGRADING
index 40a78fcad5..de376fec44 100644
--- a/UPGRADING
+++ b/UPGRADING
@@ -469,6 +469,11 @@ PHP 8.0 UPGRADE NOTES
. Added DateTime::createFromInterface() and
DateTimeImmutable::createFromInterface().
+- Enchant:
+ . enchant_dict_add()
+ . enchant_dict_is_added()
+ . LIBENCHANT_VERSION macro
+
- dom:
. Introduce DOMParentNode and DOMChildNode with new traversal and manipulation APIs
RFC: https://wiki.php.net/rfc/dom_living_standard_api
@@ -495,6 +500,12 @@ PHP 8.0 UPGRADE NOTES
4. Deprecated Functionality
========================================
+- Enchant:
+ . enchant_broker_set_dict_path and enchant_broker_get_dict_path
+ not available in libenchant < 1.5 nor in libenchant-2
+ . enchant_dict_add_to_personal, use enchant_dict_add instead
+ . enchant_dict_is_in_session, use enchant_dict_is_added instead
+
- Zip:
. Using empty file as ZipArchive is deprecated. Libzip 1.6.0
do not accept empty files as valid zip archives any longer.