aboutsummaryrefslogtreecommitdiffstats
path: root/History.md
diff options
context:
space:
mode:
authorKazuki Yamaguchi <k@rhe.jp>2018-10-25 10:13:03 +0900
committerKazuki Yamaguchi <k@rhe.jp>2020-02-19 08:07:07 +0000
commit8ba680a05568b4ab7d7749f68609a8620fa521f7 (patch)
tree966fb04a5e5837a7deba48ab35fc819420919db7 /History.md
parent85b5e2338208d61835dd75638434c2ff385f66f0 (diff)
downloadruby-openssl-8ba680a05568b4ab7d7749f68609a8620fa521f7.tar.gz
config: deprecate OpenSSL::Config#add_value and #[]=ky/config-deprecate-modify
OpenSSL::Config is currently implemented in Ruby, but we plan to revert back to use OpenSSL API, just as it did before r28632 (in ruby_1_8; r29048 in trunk). It's not clear what was the issue with Windows, but the CONF library should work on Windows too. Modifying a CONF object is not possible in OpenSSL API. Actually, it was possible in previous versions of OpenSSL, but we used their internal functions that are not exposed in shared libraries anymore. Accordingly, OpenSSL::Config#add_value and #[]= have to be removed. As a first step towards the change, let's deprecate those methods.
Diffstat (limited to 'History.md')
-rw-r--r--History.md2
1 files changed, 2 insertions, 0 deletions
diff --git a/History.md b/History.md
index d139503c..929d9196 100644
--- a/History.md
+++ b/History.md
@@ -7,6 +7,8 @@ Compatibility notes
* Remove unsupported MDC2, DSS, DSS1, and SHA algorithms.
* Remove `OpenSSL::PKCS7::SignerInfo#name` alias for `#issuer`.
[[GitHub #266]](https://github.com/ruby/openssl/pull/266)
+* Deprecate `OpenSSL::Config#add_value` and `#[]=` for future removal.
+ [[GitHub #322]](https://github.com/ruby/openssl/pull/322)
Notable changes