Changelog for
ruby3.3-rubygem-msgpack-1.7.2-46.15.x86_64.rpm :
* Fri Nov 03 2023 Dan Čermák
- 2023-07-18 1.7.2:
* Fix a potential GC bug when packing data using recursive extensions and buffers containing over 512KkiB of data (See #341).
* Fix a regression where feeding an empty string to an Unpacker would be considered like the end of the buffer. 2023-05-19 1.7.1:
* Fix JRuby 9.4 compatibility.
* Fix compilation on older compilers (gcc 4.x).
* Fix an infinite recursion issue when registering a Symbol type with a `nil` packer. 2023-03-29 1.7.0:
* Fix a possible double-free issue when GC triggers inside `_msgpack_rmem_alloc2`.
* `Unpacker#feed` now always directly read in provided strings instead of copying content in its buffer.
* `Unpacker#feed` is now an alias of `Unpacker#feed_reference`.
* Implement `Factory::Pool#unpacker` and `Factory::Pool#packer` to allow for more precise serialization.
* Require Ruby 2.5+. 2023-03-03 1.6.1:
* Undefine `#clone` and `#dup` on `MessagePack::Buffer`, `MessagePack::Packer` and `MessagePack::Unpacker`. These methods were never intended, and using them could cause leaks or crashes or worse.
* Fix a possible GC crash when GC trigger inside `MessagePack::Buffer.new` (#314).
* Mon Oct 10 2022 Stephan Kulow updated to version 1.6.0 see installed ChangeLog 2022-09-30 1.6.0:
* Fix a potential use-after-free bug in Buffer_free when accessing a packer or unpacker buffer.
* `old-style-definition` compilation warnings.
* Restore zero-copy buffer feed when provided a Ruby string. This was accidentally broken in 1.5.4.
* Provide implementations for `ObjectSpace.memsize`. Message pack objects now properly report their size to Ruby.
* Fix an endianess bug on Windows platform.
* Fri Aug 26 2022 Manuel Schnitzer - updated to version 1.5.6
* No actual code change, just re-release the `java` version properly.
* Thu Aug 04 2022 Stephan Kulow updated to version 1.5.4 see installed ChangeLog 2022-07-25
* Fix a segfault when deserializing empty symbol (`:\"\"`).
* Improve compilation flags to not strip debug symbols.
* Fri Jul 08 2022 Manuel Schnitzer - updated to version 1.5.3
* Fix deduplication of empty strings when using the `freeze: true` option.
* Use `rb_hash_new_capa` when available (Ruby 3.2) for improved performance when parsing large hashes.
* Mon Jun 13 2022 Manuel Schnitzer - updated to version 1.5.2
* Fix bug about unpacking ext type objects with the recursive option
* Thu Apr 28 2022 Stephan Kulow updated to version 1.5.1 see installed ChangeLog 2022-04-07 version 1.5.1:
* Fix bug about packing/unpacking ext type objects with the recursive option 2022-04-06 version 1.5.0:
* Add recursive option on Factory#register_type to operate Packer/Unpacker manually
* Add oversized_integer_extension option on Factory#register_type to pack/unpack bigint using ext types
* Add Factory#pool method and Factory::Pool class to provide pooled Packer and Unpacker instances
* Mon Feb 21 2022 Stephan Kulow updated to version 1.4.5 see installed ChangeLog 2022-02-15 version 1.4.5:
* Fix to create UTF-8 Symbol keys when symbolize_keys: true
* Fix to assume Symbols as US-ASCII or UTF-8
* Optimize Packer/Unpacker initialization
* Optimize extension class lookup
* Rename Packer#clear as Packer#reset (#clear is still available as an alias)
* Tue Jan 25 2022 Stephan Kulow updated to version 1.4.4 see installed ChangeLog 2022-01-22 version 1.4.4:
* Specify the build option --platform=8 for older Java platforms 2022-01-20 version 1.4.3:
* Optimize serialization/deserialization of Symbols
* Support registering ext types for objects of subclasses of primitive types (like Hash)
* Add optimized_symbols_parsing option to Factory#register_type on MRI implementation
* Optimize to deduplicate Hash keys on JRuby
* Support JRuby 9.3 (and drop 9.1)
* Sat Feb 06 2021 Manuel Schnitzer - updated to version 1.4.2
* Add the required Ruby version (>= 2.4) to avoid compilation errors on older Ruby runtimes
* Drop the support of old Ruby versions explicitly (1.8, 1.9, 2.0, 2.1, 2.2, 2.3)