File tree Expand file tree Collapse file tree 3 files changed +15
-8
lines changed
Expand file tree Collapse file tree 3 files changed +15
-8
lines changed Original file line number Diff line number Diff line change @@ -5,21 +5,28 @@ All notable changes to this project will be documented in this file.
55The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
66and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
77
8+ ### [ 3.0.3] ( https://github.com/astroband/ruby-xdr/compare/v3.0.2...v3.0.3 ) (2022-02-18)
9+ ### Bug Fixes
10+ - make ` XDR::Option ` write empty strings as values ([ #15 ] ( https://github.com/astroband/ruby-xdr/issues/15 ) ) ([ ccab229] ( https://github.com/astroband/ruby-xdr/commit/ccab22928a1104dee525211b51d1d567079d27ba ) )
11+
12+
813## [ 3.0.2] ( https://github.com/astroband/ruby-xdr/compare/v3.0.1...v3.0.2 ) - 2020-10-20
914### Changed
1015- Relax lower bound for ActiveSupport dependency to support usage in Rails 4.2 ([ #12 ] ( https://github.com/astroband/ruby-xdr/pull/12 ) )
1116
12- ### Fixed
17+ ### Bug Fixes
1318- Fix non-bang arm accessors for XDR::Union ([ #13 ] ( https://github.com/astroband/ruby-xdr/pull/13 ) )
1419- Fix .from_xdr encoding param to accept symbols ([ #14 ] ( https://github.com/astroband/ruby-xdr/pull/14 ) )
1520
21+
1622## [ 3.0.1] ( https://github.com/astroband/ruby-xdr/compare/v3.0.0...v3.0.1 ) - 2020-06-10
1723### Added
1824- Add encoding parameter to Union#to_xdr ([ #7 ] ( https://github.com/astroband/ruby-xdr/pull/7 ) ).
1925
20- ### Fixed
26+ ### Bug Fixes
2127- Padding bytes are now properly validated when reading xdr values. According to the XDR spec, padding must be zeros.
2228
29+
2330## [ 1.0.0] ( https://github.com/astroband/ruby-xdr/compare/v0.1.0...v1.0.0 ) - 2015-10-02
2431### Added
2532- the ` to_xdr ` helpers can take a second parameter that will encode the resulting output to hex or base64 when requested.
Original file line number Diff line number Diff line change 11PATH
22 remote: .
33 specs:
4- xdr (3.0.2 )
4+ xdr (3.0.3 )
55 activemodel (>= 4.2 , < 8.0 )
66 activesupport (>= 4.2 , < 8.0 )
77
88GEM
99 remote: https://rubygems.org/
1010 specs:
11- activemodel (7.0.2 )
12- activesupport (= 7.0.2 )
13- activesupport (7.0.2 )
11+ activemodel (7.0.2.2 )
12+ activesupport (= 7.0.2.2 )
13+ activesupport (7.0.2.2 )
1414 concurrent-ruby (~> 1.0 , >= 1.0.2 )
1515 i18n (>= 1.6 , < 2 )
1616 minitest (>= 5.1 )
4848 guard-compat (~> 1.1 )
4949 rspec (>= 2.99.0 , < 4.0 )
5050 hashdiff (1.0.1 )
51- i18n (1.9.1 )
51+ i18n (1.10.0 )
5252 concurrent-ruby (~> 1.0 )
5353 listen (3.7.1 )
5454 rb-fsevent (~> 0.10 , >= 0.10.3 )
Original file line number Diff line number Diff line change 11module XDR
2- VERSION = "3.0.2 "
2+ VERSION = "3.0.3 "
33end
You can’t perform that action at this time.
0 commit comments