<feed xmlns='http://www.w3.org/2005/Atom'>
<title>otp.git/lib/asn1/src, branch KennethL-patch-1</title>
<subtitle>Mirror of Erlang/OTP repository.
</subtitle>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/'/>
<entry>
<title>Merge branch 'hans/asn1/asn1ct_test_fix/ERL-518/OTP-14787' into maint</title>
<updated>2017-11-23T09:35:12+00:00</updated>
<author>
<name>Hans Nilsson</name>
<email>hans@erlang.org</email>
</author>
<published>2017-11-23T09:35:12+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=3bf3ba8c31b13df4fdbd9a83ca3f8b31248a220c'/>
<id>3bf3ba8c31b13df4fdbd9a83ca3f8b31248a220c</id>
<content type='text'>
* hans/asn1/asn1ct_test_fix/ERL-518/OTP-14787:
  asn1: asn1:test now handles no_ok_wrapper and undec_rest
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* hans/asn1/asn1ct_test_fix/ERL-518/OTP-14787:
  asn1: asn1:test now handles no_ok_wrapper and undec_rest
</pre>
</div>
</content>
</entry>
<entry>
<title>asn1: asn1:test now handles no_ok_wrapper and undec_rest</title>
<updated>2017-11-21T20:44:39+00:00</updated>
<author>
<name>Hans Nilsson</name>
<email>hans@erlang.org</email>
</author>
<published>2017-11-21T20:08:56+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=3af1b1a34a577f890029c09eb755c98f48a1af80'/>
<id>3af1b1a34a577f890029c09eb755c98f48a1af80</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>asn1: Further adjustments on generated code</title>
<updated>2017-11-21T19:08:25+00:00</updated>
<author>
<name>Hans Nilsson</name>
<email>hans@erlang.org</email>
</author>
<published>2017-11-21T19:08:25+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=93365f0ed71323e4e5475dd7c68d18ab2a83f7e5'/>
<id>93365f0ed71323e4e5475dd7c68d18ab2a83f7e5</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>asn1: Protect more by try..catch</title>
<updated>2017-11-21T18:36:35+00:00</updated>
<author>
<name>Hans Nilsson</name>
<email>hans@erlang.org</email>
</author>
<published>2017-11-21T15:25:31+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=1a2a36794f1913b5a813c133bdfb9eea74d0a386'/>
<id>1a2a36794f1913b5a813c133bdfb9eea74d0a386</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'maint-20' into maint</title>
<updated>2017-08-24T07:37:16+00:00</updated>
<author>
<name>Raimo Niskanen</name>
<email>raimo@erlang.org</email>
</author>
<published>2017-08-24T07:37:16+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=710f9437498a8a9df62a6c7cecd6eb632561754b'/>
<id>710f9437498a8a9df62a6c7cecd6eb632561754b</id>
<content type='text'>
* maint-20:
  Updated OTP version
  Prepare release
  Accept non-binary options as socket-options
  Bump version
  Fix broken handling of default values in extensions for PER
  compiler: Fix live regs update on allocate in validator
  Take fail labels into account when determining liveness in block ops
  Check for overflow when appending binaries, and error out with system_limit
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* maint-20:
  Updated OTP version
  Prepare release
  Accept non-binary options as socket-options
  Bump version
  Fix broken handling of default values in extensions for PER
  compiler: Fix live regs update on allocate in validator
  Take fail labels into account when determining liveness in block ops
  Check for overflow when appending binaries, and error out with system_limit
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix broken handling of default values in extensions for PER</title>
<updated>2017-08-16T14:28:57+00:00</updated>
<author>
<name>Björn Gustavsson</name>
<email>bjorn@erlang.org</email>
</author>
<published>2017-08-10T12:52:31+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=5d33ec9021ff4fa8e3ffac01bdd0228871636edd'/>
<id>5d33ec9021ff4fa8e3ffac01bdd0228871636edd</id>
<content type='text'>
Default values have never worked in extension for PER.

Note that for default values in the root part of SEQUENCE,
giving a value equal to the DEFAULT value, will result in
the same encoding as if asn1_DEFAULT was given. However,
that behavior is not promised by the documentation. The
documentation says that asn1_DEFAULT should be used for
default values. For DEFAULT in extensions, only implement
what the documentation promises and nothing more.

ERIERL-60
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Default values have never worked in extension for PER.

Note that for default values in the root part of SEQUENCE,
giving a value equal to the DEFAULT value, will result in
the same encoding as if asn1_DEFAULT was given. However,
that behavior is not promised by the documentation. The
documentation says that asn1_DEFAULT should be used for
default values. For DEFAULT in extensions, only implement
what the documentation promises and nothing more.

ERIERL-60
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'maint-20' into maint</title>
<updated>2017-07-27T07:10:16+00:00</updated>
<author>
<name>John Högberg</name>
<email>john@erlang.org</email>
</author>
<published>2017-07-27T07:10:16+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=2f49a6bdc5bc9207162bff837b3f642cdd089722'/>
<id>2f49a6bdc5bc9207162bff837b3f642cdd089722</id>
<content type='text'>
* maint-20:
  Updated OTP version
  Update release notes
  Update version numbers
  Fix doc for the 'quiet' option; it defaults to false
  asn1: Fix missing quotes of external encoding call
  Add a dedicated close function for TCP ports to prevent issues like ERL-430/448
  Close TCP ports properly on send timeout
  erts: Add missing release note
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* maint-20:
  Updated OTP version
  Update release notes
  Update version numbers
  Fix doc for the 'quiet' option; it defaults to false
  asn1: Fix missing quotes of external encoding call
  Add a dedicated close function for TCP ports to prevent issues like ERL-430/448
  Close TCP ports properly on send timeout
  erts: Add missing release note
</pre>
</div>
</content>
</entry>
<entry>
<title>asn1: Fix missing quotes of external encoding call</title>
<updated>2017-07-20T15:26:38+00:00</updated>
<author>
<name>Sverker Eriksson</name>
<email>sverker@erlang.org</email>
</author>
<published>2017-07-20T14:06:27+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=dede6b114f0006c55f41063e73d4b28b29710b95'/>
<id>dede6b114f0006c55f41063e73d4b28b29710b95</id>
<content type='text'>
introduced by 8e4a9864385242b962ce7446f7daa4f58cfecca5.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
introduced by 8e4a9864385242b962ce7446f7daa4f58cfecca5.
</pre>
</div>
</content>
</entry>
<entry>
<title>Corrected behavior of option {n2n, EnumTypeName} when</title>
<updated>2017-07-04T13:03:03+00:00</updated>
<author>
<name>Kenneth Lundin</name>
<email>kenneth.lundin@ericsson.com</email>
</author>
<published>2017-07-04T13:03:03+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=e1327157189f09aa118342d0686a32fb927dca96'/>
<id>e1327157189f09aa118342d0686a32fb927dca96</id>
<content type='text'>
EnumTypeName contains a hypen like fore example Cause-Misc. This caused
syntax errors when compiling the generated Erlang code.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
EnumTypeName contains a hypen like fore example Cause-Misc. This caused
syntax errors when compiling the generated Erlang code.
</pre>
</div>
</content>
</entry>
<entry>
<title>Update copyright year</title>
<updated>2017-05-04T13:42:21+00:00</updated>
<author>
<name>Raimo Niskanen</name>
<email>raimo@erlang.org</email>
</author>
<published>2017-05-04T13:42:21+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=83e20c62057ebc1d8064bf57b01be560cd244e1d'/>
<id>83e20c62057ebc1d8064bf57b01be560cd244e1d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
