File: RELEASE_NOTES.md

package info (click to toggle)
ruby-beefcake 1.2.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 196 kB
  • sloc: ruby: 1,655; makefile: 4
file content (55 lines) | stat: -rw-r--r-- 1,870 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# Beefcake Release Notes

# 1.2.0 - 2016-06-21

Release 1.2.0 includes one bug fix.

* Clone strings before `force_encoding`. [#70](https://github.com/protobuf-ruby/beefcake/pull/70)

# 1.1.0 - 2015-05-26

Release 1.1.0 includes improvements and bug fixes.

* Correct message-hash conversion behavior, fixed by Peter "kybu" Vrabel.
* Remove trailing whitespace in generator output without package name.
* Allow a Hash instead of an Array<Hash> when assigning a repeated field that's
  only repeated once.
* Ensure object identities are persisted through message initialization,
  reported by Peter Neubauer.

# 1.0.0 - 2014-09-05

Release 1.0.0 includes changes and improvements.

* Version numbering now properly semantic.
* Ruby 1.8 is no longer supported.
* Field number re-use raises a `DuplicateFieldNumber` error.
* Checking to see if a type is encodable is much faster.
* Fields named `fields` are now supported.
* String read and decoding are benchmarked during testing.
* `string` fields now decode with a `UTF-8` encoding.

# 0.5.0 - 2013-12-20

Release 0.5.0 corrects a few behaviors.

* Drastically revised README, written by Tobias "grobie" Schmidt
* Output fewer newlines in generated files, fixed by Tobias "grobie" Schmidt
* Don't crash when attempting to reencode frozen strings,
  found thanks to Kyle "Aphyr" Kingsbury
* Return `nil` instead of raising a generic Ruby error when trying to
  decode a zero-length buffer, fixed by Tobias "grobie" Schmidt

# 0.4.0 - 2013-10-10

Release 0.4.0 is the first with new maintainers.

* Modernize tests
* Add Travis CI monitoring
* Support varint-encoded length-delimited buffers
* Support generation with recursive definitions
* Support Ruby 2.0
* Support encoded buffers
* Support false but non-nil values
* Support top-level enums, added by Kim Altintop:
  https://github.com/protobuf-ruby/beefcake/pull/23