Skip to content

Commit

Permalink
Update CHANGELOG.md
Browse files Browse the repository at this point in the history
  • Loading branch information
kshchepanovskyi committed Apr 8, 2015
1 parent 4ceeb34 commit 07e6ed2
Showing 1 changed file with 21 additions and 21 deletions.
42 changes: 21 additions & 21 deletions CHANGELOG.md
Expand Up @@ -4,14 +4,14 @@ protostuff-1.3.3 2015-03-23
Improvements
------------

* https://github.com/protostuff/protostuff/pull/105: Add option for generating field maps with original field names `[generated code]`
* [#105](https://github.com/protostuff/protostuff/pull/105): Add option for generating field maps with original field names `[generated code]`

Fixes
-----

* https://github.com/protostuff/protostuff/issues/98: Fix for messages with sparse/big `@Tag` values `[runtime schemas]`
* https://github.com/protostuff/protostuff/issues/108: Fix for default values in `java_bean_model` `[generated code]`
* https://github.com/protostuff/protostuff/issues/107: Getter of optional enum should return `null` if not set `[generated code]`
* [#98](https://github.com/protostuff/protostuff/issues/98): Fix for messages with sparse/big `@Tag` values `[runtime schemas]`
* [#108](https://github.com/protostuff/protostuff/issues/108): Fix for default values in `java_bean_model` `[generated code]`
* [#107](https://github.com/protostuff/protostuff/issues/107): Getter of optional enum should return `null` if not set `[generated code]`

Compatibility notes
-------------------
Expand All @@ -25,18 +25,18 @@ protostuff-1.3.2 2015-03-01
Improvements
------------

* https://github.com/protostuff/protostuff/issues/81: add validation for @Tag annotation value, throw an IllegalArgumentException when value is out of range [protostuff-runtime]
* https://github.com/protostuff/protostuff/issues/83: add maven "Bill of Materials" module
* https://github.com/protostuff/protostuff/pull/94: add method `getProtoType` for `Field` [code generator]
* https://github.com/protostuff/protostuff/issues/92: generate `equals()` and `hashCode()` for generated messages [code generator]
* [#81](https://github.com/protostuff/protostuff/issues/81): add validation for @Tag annotation value, throw an IllegalArgumentException when value is out of range [protostuff-runtime]
* [#83](https://github.com/protostuff/protostuff/issues/83): add maven "Bill of Materials" module
* [#94](https://github.com/protostuff/protostuff/pull/94): add method `getProtoType` for `Field` [code generator]
* [#92](https://github.com/protostuff/protostuff/issues/92): generate `equals()` and `hashCode()` for generated messages [code generator]

protostuff-1.3.1 2015-02-12
===========================

Improvements
------------

https://github.com/protostuff/protostuff/issues/86: Configure system properties for maven plugin in the POM
[#86](https://github.com/protostuff/protostuff/issues/86): Configure system properties for maven plugin in the POM

Now it is possible to specify proto-compiler options directly in `pom.xml`

Expand All @@ -59,8 +59,8 @@ Now it is possible to specify proto-compiler options directly in `pom.xml`
Fixes
-----

https://github.com/protostuff/protostuff/issues/84: Value of `@Generated` annotation is not valid string [code generator]
https://github.com/protostuff/protostuff/pull/90:
[#84](https://github.com/protostuff/protostuff/issues/84): Value of `@Generated` annotation is not valid string [code generator]
[#90](https://github.com/protostuff/protostuff/pull/90):
* fixed issue with relative template file location (`<output>` maven plugin option) in multi-module projects
* fixed `PluginProtoCompiler` behavior when `ppc.check_filename_placeholder` is enabled, https://code.google.com/p/protostuff/issues/detail?id=166

Expand All @@ -70,14 +70,14 @@ protostuff-1.3.0 2015-01-13
Improvements
------------

* https://github.com/protostuff/protostuff/pull/74: Switch to com.fasterxml.jackson v2.4.4
* https://github.com/protostuff/protostuff/issues/79: Add @Generated annotation to generated classes
* [#74](https://github.com/protostuff/protostuff/pull/74): Switch to com.fasterxml.jackson v2.4.4
* [#79](https://github.com/protostuff/protostuff/issues/79): Add `@Generated` annotation to generated classes


Fixes
-----

* https://github.com/protostuff/protostuff/issues/58: Do not wrap lists into `Collections.unmodifiableList(source)` (code generated by `java_bean` template)
* [#58](https://github.com/protostuff/protostuff/issues/58): Do not wrap lists into `Collections.unmodifiableList(source)` (code generated by `java_bean` template)


protostuff-1.2.0 2014-12-15
Expand All @@ -86,21 +86,21 @@ protostuff-1.2.0 2014-12-15
Improvements
------------

* https://github.com/protostuff/protostuff/issues/25: Added `@Tag` support for enums in `protostuff-runtime`
* https://github.com/protostuff/protostuff/issues/32: Added support for messages without fields (empty messages)
* https://github.com/protostuff/protostuff/pull/35: Added support for RPC service code generation. [Example](https://github.com/kshchepanovskyi/protostuff-rpc-example).
* https://github.com/protostuff/protostuff/pull/38: Added ability to import proto in multi-module project. [Example](https://github.com/kshchepanovskyi/protostuff-multimodule-example).
* [#25](https://github.com/protostuff/protostuff/issues/25): Added `@Tag` support for enums in `protostuff-runtime`
* [#32](https://github.com/protostuff/protostuff/issues/32): Added support for messages without fields (empty messages)
* [#35](https://github.com/protostuff/protostuff/pull/35): Added support for RPC service code generation. [Example](https://github.com/kshchepanovskyi/protostuff-rpc-example).
* [#38](https://github.com/protostuff/protostuff/pull/38): Added ability to import proto in multi-module project. [Example](https://github.com/kshchepanovskyi/protostuff-multimodule-example).

Fixes
-----

* https://github.com/protostuff/protostuff/issues/34: Fixed issue with CESU-8 charset and Java 8.
* [#34](https://github.com/protostuff/protostuff/issues/34): Fixed issue with CESU-8 charset and Java 8.

Compatibility
-------------

* https://github.com/protostuff/protostuff/issues/29: The minimum requirement for Java has now been raised to Java SE 7.
* https://github.com/protostuff/protostuff/issues/36: Move `protostuff-me` to separate project.
* [#29](https://github.com/protostuff/protostuff/issues/29): The minimum requirement for Java has now been raised to Java SE 7.
* [#36](https://github.com/protostuff/protostuff/issues/36): Move `protostuff-me` to separate project.

protostuff-1.1.0 2014-10-06
===========================
Expand Down

0 comments on commit 07e6ed2

Please sign in to comment.