From 7d8a8956de4a099f0d1916caf8fd35e9a8fbb517 Mon Sep 17 00:00:00 2001 From: emboss Date: Wed, 28 Mar 2012 23:28:17 +0000 Subject: [PATCH] * NEWS: add note about unified behavior of encoding nil values in instances of OpenSSL::ASN1::ASN1Data. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@35161 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 5 +++++ NEWS | 7 +++++++ 2 files changed, 12 insertions(+) diff --git a/ChangeLog b/ChangeLog index 30acb0d3e1a1f2..d209bdbd74a70c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Thu Mar 29 08:25:35 2012 Martin Bosslet + + * NEWS: add note about unified behavior of encoding nil values in + instances of OpenSSL::ASN1::ASN1Data. + Thu Mar 29 07:45:36 2012 Martin Bosslet * ext/openssl/ossl_asn1.c: raise TypeError when trying to encode nil diff --git a/NEWS b/NEWS index c8d8e747454abc..2c9b08b568b1dd 100644 --- a/NEWS +++ b/NEWS @@ -83,6 +83,13 @@ with all sufficient information, see the ChangeLog file. * zlib * Added support for the new deflate strategies Zlib::RLE and Zlib::FIXED. +* openssl + * Consistently raise an error when trying to encode nil values. All instances + of OpenSSL::ASN1::Primitive now raise TypeError when calling to_der on an + instance whose value is nil. All instances of OpenSSL::ASN1::Constructive + raise NoMethodError in the same case. Constructing such values is still + permitted. + === Language changes === Compatibility issues (excluding feature bug fixes)