Fix problem with plugin options on Python 2.7.2 and older.
[apps/low-level-can-service.git] / CHANGELOG.txt
1 nanopb-0.3.3 (2015-04-xx)
2  Fix missing files in Linux binary package (issue 146)
3  Fix generator bug when oneof is first field in a message. (issue 142)
4  Fix generator error when long_names:false is combined with Oneofs. (issue 147)
5  Fix oneof submessage initialization bug. (issue 149)
6  Don't crash when callback is inside oneof field. (issue 148)
7  Always define enum long names so that cross-file references work. (issue 118)
8  Add msgid generator option. (issue 151)
9  Improve comment support in .options files. (issue 145)
10  Updates for the CMake rule file, add cmake example.
11  Better error messages for syntax errors in .options file
12
13 nanopb-0.3.2 (2015-01-24)
14  Fix memory leaks with PB_ENABLE_MALLOC with some submessage hierarchies (issue 138)
15  Implement support for oneofs (C unions). (issues 131, 141)
16  Add int_size option for generator (issue 139)
17  Add compilation option to disable struct packing. (issue 136)
18  Change PB_RETURN_ERROR() macro to avoid compiler warnings (issue 140)
19  Fix build problems with protoc 3.0.0
20  Add support for POINTER type in extensions
21  Initialize also extension fields to defaults in pb_decode().
22  Detect too large varint values when decoding.
23
24 nanopb-0.3.1 (2014-09-11)
25  Fix security issue due to size_t overflows. (issue 132)
26  Fix memory leak with duplicated fields and PB_ENABLE_MALLOC
27  Fix crash if pb_release() is called twice.
28  Fix cyclic message support (issue 130)
29  Fix error in generated initializers for repeated pointer fields.
30  Improve tests (issues 113, 126)
31
32 nanopb-0.3.0 (2014-08-26)
33  NOTE: See docs/migration.html or online at
34  http://koti.kapsi.fi/~jpa/nanopb/docs/migration.html
35  for changes in this version. Most importantly, you need to add
36  pb_common.c to the list of files to compile.
37
38  Separated field iterator logic to pb_common.c (issue 128)
39  Change the _count fields to use pb_size_t datatype (issue 82)
40  Added PB_ prefix to macro names (issue 106)
41  Added #if version guard to generated files (issue 129)
42  Added migration document
43
44 nanopb-0.2.9 (2014-08-09)
45  NOTE: If you are using the -e option with the generator, you have
46  to prepend . to the argument to get the same behaviour as before.
47
48  Do not automatically add a dot with generator -e option. (issue 122)
49  Fix problem with .options file and extension fields. (issue 125)
50  Don't use SIZE_MAX macro, as it is not in C89. (issue 120)
51  Generate #defines for initializing message structures. (issue 79)
52  Add skip_message option to generator. (issue 121)
53  Add PB_PACKED_STRUCT support for Keil MDK-ARM toolchain (issue 119)
54  Give better messages about the .options file path. (issue 124)
55  Improved tests
56
57 nanopb-0.2.8 (2014-05-20)
58  Fix security issue with PB_ENABLE_MALLOC. (issue 117)
59  Add option to not add timestamps to .pb.h and .pb.c preambles. (issue 115)
60  Documentation updates
61  Improved tests
62
63 nanopb-0.2.7 (2014-04-07)
64  Fix bug with default values for extension fields (issue 111)
65  Fix some MISRA-C warnings (issue 91)
66  Implemented optional malloc() support (issue 80)
67  Changed pointer-type bytes field datatype
68  Add a "found" field to pb_extension_t (issue 112)
69  Add convenience function pb_get_encoded_size() (issue 16)
70
71 nanopb-0.2.6 (2014-02-15)
72  Fix generator error with bytes callback fields (issue 99)
73  Fix warnings about large integer constants (issue 102)
74  Add comments to where STATIC_ASSERT is used (issue 96)
75  Add warning about unknown field names on .options (issue 105)
76  Move descriptor.proto to google/protobuf subdirectory (issue 104)
77  Improved tests
78
79 nanopb-0.2.5 (2014-01-01)
80  Fix a bug with encoding negative values in int32 fields (issue 97)
81  Create binary packages of the generator + dependencies (issue 47)
82  Add support for pointer-type fields to the encoder (part of issue 80)
83  Fixed path in FindNanopb.cmake (issue 94)
84  Improved tests
85
86 nanopb-0.2.4 (2013-11-07)
87  Remove the deprecated NANOPB_INTERNALS functions from public API.
88  Document the security model.
89  Check array and bytes max sizes when encoding (issue 90)
90  Add #defines for maximum encoded message size (issue 89)
91  Add #define tags for extension fields (issue 93)
92  Fix MISRA C violations (issue 91)
93  Clean up pb_field_t definition with typedefs.
94
95 nanopb-0.2.3 (2013-09-18)
96  Improve compatibility by removing ternary operator from initializations (issue 88)
97  Fix build error on Visual C++ (issue 84, patch by Markus Schwarzenberg)
98  Don't stop on unsupported extension fields (issue 83)
99  Add an example pb_syshdr.h file for non-C99 compilers
100  Reorganize tests and examples into subfolders (issue 63)
101  Switch from Makefiles to scons for building the tests
102  Make the tests buildable on Windows
103
104 nanopb-0.2.2 (2013-08-18)
105  Add support for extension fields (issue 17)
106  Fix unknown fields in empty message (issue 78)
107  Include the field tags in the generated .pb.h file.
108  Add pb_decode_delimited and pb_encode_delimited wrapper functions (issue 74)
109  Add a section in top of pb.h for changing compilation settings (issue 76)
110  Documentation improvements (issues 12, 77 and others)
111  Improved tests
112
113 nanopb-0.2.1 (2013-04-14)
114  NOTE: The default callback function signature has changed.
115        If you don't want to update your code, define PB_OLD_CALLBACK_STYLE.
116  
117  Change the callback function to use void** (issue 69)
118  Add support for defining the nanopb options in a separate file (issue 12)
119  Add support for packed structs in IAR and MSVC (in addition to GCC) (issue 66)
120  Implement error message support for the encoder side (issue 7)
121  Handle unterminated strings when encoding (issue 68)
122  Fix bug with empty strings in repeated string callbacks (issue 73)
123  Fix regression in 0.2.0 with optional callback fields (issue 70)
124  Fix bugs with empty message types (issues 64, 65)
125  Fix some compiler warnings on clang (issue 67)
126  Some portability improvements (issues 60, 62)
127  Various new generator options
128  Improved tests
129
130 nanopb-0.2.0 (2013-03-02)
131  NOTE: This release requires you to regenerate all .pb.c
132        files. Files generated by older versions will not
133        compile anymore.
134
135  Reformat generated .pb.c files using macros (issue 58)
136  Rename PB_HTYPE_ARRAY -> PB_HTYPE_REPEATED
137  Separate PB_HTYPE to PB_ATYPE and PB_HTYPE
138  Move STATIC_ASSERTs to .pb.c file
139  Added CMake file (by Pavel Ilin)
140  Add option to give file extension to generator (by Michael Haberler)
141  Documentation updates
142
143 nanopb-0.1.9 (2013-02-13)
144  Fixed error message bugs (issues 52, 56)
145  Sanitize #ifndef filename (issue 50)
146  Performance improvements
147  Add compile-time option PB_BUFFER_ONLY
148  Add Java package name to nanopb.proto
149  Check for sizeof(double) == 8 (issue 54)
150  Added generator option to ignore some fields. (issue 51)
151  Added generator option to make message structs packed. (issue 49)
152  Add more test cases.
153
154 nanopb-0.1.8 (2012-12-13)
155  Fix bugs in the enum short names introduced in 0.1.7 (issues 42, 43)
156  Fix STATIC_ASSERT macro when using multiple .proto files. (issue 41)
157  Fix missing initialization of istream.errmsg
158  Make tests/Makefile work for non-gcc compilers (issue 40)
159
160 nanopb-0.1.7 (2012-11-11)
161  Remove "skip" mode from pb_istream_t callbacks. Example implementation had a bug. (issue 37)
162  Add option to use shorter names for enum values (issue 38)
163  Improve options support in generator (issues 12, 30)
164  Add nanopb version number to generated files (issue 36)
165  Add extern "C" to generated headers (issue 35)
166  Add names for structs to allow forward declaration (issue 39)
167  Add buffer size check in example (issue 34)
168  Fix build warnings on MS compilers (issue 33)
169
170 nanopb-0.1.6 (2012-09-02)
171  Reorganize the field decoder interface (issue 2)
172  Improve performance in submessage decoding (issue 28)
173  Implement error messages in the decoder side (issue 7)
174  Extended testcases (alltypes test is now complete).
175  Fix some compiler warnings (issues 25, 26, 27, 32).
176
177 nanopb-0.1.5 (2012-08-04)
178  Fix bug in decoder with packed arrays (issue 23).
179  Extended testcases.
180  Fix some compiler warnings.
181
182 nanopb-0.1.4 (2012-07-05)
183  Add compile-time options for easy-to-use >255 field support.
184  Improve the detection of missing required fields.
185  Added example on how to handle union messages.
186  Fix generator error with .proto without messages.
187  Fix problems that stopped the code from compiling with some compilers.
188  Fix some compiler warnings.
189
190 nanopb-0.1.3 (2012-06-12)
191  Refactor the field encoder interface.
192  Improve generator error messages (issue 5)
193  Add descriptor.proto into the #include exclusion list
194  Fix some compiler warnings.
195
196 nanopb-0.1.2 (2012-02-15)
197  Make the generator to generate include for other .proto files (issue 4).
198  Fixed generator not working on Windows (issue 3)
199
200 nanopb-0.1.1 (2012-01-14)
201  Fixed bug in encoder with 'bytes' fields (issue 1).
202  Fixed a bug in the generator that caused a compiler error on sfixed32 and sfixed64 fields.
203  Extended testcases.
204
205 nanopb-0.1.0 (2012-01-06)
206  First stable release.