From d7897054c0f6d4141a21d77bfab4c24bba53ffeb Mon Sep 17 00:00:00 2001 From: "Alexander M. Turek" Date: Fri, 28 Jul 2023 17:42:12 +0200 Subject: [PATCH] Add odbc_connection_string_*() polyfills to CHANGELOG.md and README --- CHANGELOG.md | 3 +++ README.md | 3 +++ 2 files changed, 6 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2e28fe63..c4f38945 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # 1.29.0 + * Polyfill `odbc_connection_string_is_quoted()` + * Polyfill `odbc_connection_string_should_quote()` + * Polyfill `odbc_connection_string_quote()` * Polyfill `mb_str_pad()` * Polyfill `#[\Override]` attribute * Use full case folding when using `MB_CASE_FOLD` diff --git a/README.md b/README.md index bd266500..d58a98bb 100644 --- a/README.md +++ b/README.md @@ -69,6 +69,9 @@ Polyfills are provided for: - the `Random\Engine` interface introduced in PHP 8.2; - the `Random\CryptoSafeEngine` interface introduced in PHP 8.2; - the `Random\Engine\Secure` class introduced in PHP 8.2 (check [arokettu/random-polyfill](https://packagist.org/packages/arokettu/random-polyfill) for more engines); +- the `odbc_connection_string_is_quoted` function introduced in PHP 8.2 +- the `odbc_connection_string_should_quote` function introduced in PHP 8.2 +- the `odbc_connection_string_quote` function introduced in PHP 8.2 - the `json_validate` function introduced in PHP 8.3; - the `Override` attribute introduced in PHP 8.3; - the `mb_str_pad` function introduced in PHP 8.3;