Derek Bailey
9d2c04d629
FlatBuffers Version 22.11.22
2022-11-22 14:40:01 -08:00
Derek Bailey
203241ed32
FlatBuffers Version 22.10.26 ( #7607 )
2022-10-26 16:02:38 -07:00
Derek Bailey
a54ca1e759
FlatBuffers Version 22.10.25 ( #7604 )
2022-10-26 00:03:49 -07:00
Derek Bailey
c92e78a9f8
FlatBuffers Version 22.9.29 ( #7557 )
2022-09-29 22:12:07 -07:00
Derek Bailey
76ddae006f
FlatBuffers Version 22.9.24 ( #7547 )
2022-09-27 11:55:25 -07:00
Derek Bailey
06c5c7ed0b
FlatBuffers Version 2.0.8 ( #7492 )
2022-08-29 20:43:36 -07:00
ofirm93
7c3e267e1e
[Java] ObjectAPI implementation ( #6521 ) ( #6582 )
...
* [Java] ObjectAPI implementation (#6521 )
* [Java] ObjectAPI implementation (#6521 )
* [Java] ObjectAPI implementation (#6521 )
* [Java] ObjectAPI implementation (#6521 )
* [Java] ObjectAPI implementation (#6521 )
* [Java] ObjectAPI implementation (#6521 )
* [Java] ObjectAPI implementation (#6521 )
* [Java] ObjectAPI implementation (#6521 )
* [Java] ObjectAPI implementation (#6521 )
* [Java] ObjectAPI implementation (#6521 )
* [Java] ObjectAPI implementation (#6521 )
* [Java] ObjectAPI implementation (#6521 )
* [Java] ObjectAPI implementation (#6521 )
* [Java] ObjectAPI implementation (#6521 )
* [Java] ObjectAPI implementation (#6521 )
* [Java] ObjectAPI implementation (#6521 )
* [Java] ObjectAPI implementation (#6521 )
2021-06-03 14:17:40 -07:00
Wouter van Oortmerssen
3412fab8ee
C#/Java generated code version updates
2021-05-10 11:17:31 -07:00
Wouter van Oortmerssen
6df40a2471
pre-tag version bump for 1.12
...
Change-Id: I84a9365e9d8a1afe333b1df85058401ffe0a6b7c
2020-03-12 15:33:39 -07:00
Kulikov Alexey
e365c502ff
Java: Added access object for vector of struct and vector of tables. ( #5233 )
...
* Java: Added access object for vector of struct and vector of tables.
* Java: Workarounds removed when accessing the union vector.
2019-09-23 09:22:43 -07:00
Vladimir Glavnyy
0d2cebccfe
Add FLATBUFFERS_COMPATIBILITY string ( #5381 )
...
* Add FLATBUFFERS_COMPATIBILITY string
- Add a new __reset method NET/JAVA which hides internal state
* Resolve PR notes
* Use operator new() to __init of Struct and Table
* Restrict visibility of C# Table/Struct to internal level
2019-06-17 19:16:21 +02:00
Wouter van Oortmerssen
b652fcc3a7
Break internal Java/C# APIs
...
This is done on purpose, to avoid API version mismatches that
can cause bad decoding results, see:
https://github.com/google/flatbuffers/issues/5368
Change-Id: I2c857438377e080caad0e2d8bcc758c9b19bd6ec
2019-05-31 13:00:55 -07:00
Wouter van Oortmerssen
c978b9ef1f
Enforce matching version in Java and C#.
...
Change-Id: I7f1f12f2f97e5227e0dabc2965ce66a6d41c229c
2019-05-31 12:15:19 -07:00
Vladimir Glavnyy
f9ebfcb9c4
Make Monster's Color unsigned ( #5318 )
...
- update C++ monster_test::Color to unsigned type
- update Go Color:ubyte in the go_test.go
- add workaround for unsigned enum in java test
- sync generate.bat and generate.sh
2019-05-09 10:07:38 -07:00
Kulikov Alexey
4e5152d886
Java: Calculation of vtable and vtable size moved to the __init method. ( #5210 )
...
vtable and vtable size depends only on `Table#bb_pos` but calculated in
`Table#_offset` method on each field lookup.
Doing this with every call of `Table#__offset` is redundant.
These values can be read once with change of `Table#bb_pos` and reused
for any field lookup.
2019-02-25 23:45:29 +01:00
Kamil Rojewski
8f8fb2b367
Fixed vector of unions crash in java ( #5190 )
...
* Fixed vector of unions crash in java
* Regenerated test code
* Fixed windows tests
2019-02-21 19:50:13 +01:00
Wouter van Oortmerssen
21591916af
Fixed missing code from @javax.annotation PR.
...
https://github.com/google/flatbuffers/pull/4986 missed part of the
implementation.
Change-Id: Ie41771eb018a550c289c77ebe9ef5c50d1ad6751
2018-11-02 11:40:21 -07:00
Rikard Lundmark
233976c821
Add @javax.annotation.Generated to generated flatbuffer Java types ( #4986 )
...
* Add @javax.annotation.Generated to generated flatbuffer Java types.
* Updating test goldens.
2018-10-08 15:29:22 -07:00
Andy Martin
c2c3a84aaf
Add C#/Java generator behaviour for 'private' attribute ( #4882 )
...
* Added 'private' attribute, supported when generating C# and Java
* Added use of 'private' attribute in monster_test
2018-08-16 15:25:33 -07:00
Wouter van Oortmerssen
52ca75506a
Switched C# accessors from classes to structs
2016-08-31 17:34:51 -07:00
lakedaemon
e750268f0c
clang formating cpp code generator and add missing generated classes
2016-07-15 16:08:59 +02:00
lakedaemon
cd1493b082
sharing the Flatbuffers warning
2016-05-26 15:26:58 +02:00
Wouter van Oortmerssen
94680f5483
Added support for imports and many other .proto features.
...
Change-Id: I6600021b7ec8c486794349511232c3e604421c5b
Tested: on Linux.
2015-10-13 14:01:55 -07:00
Maxim Zaks
ac10873e26
fixed code generator for array of bools
...
Change-Id: I3cdd801b641bf180222203a37634598350d340e3
2015-08-19 14:39:06 -07:00
Mormegil
25c99273d3
[Issue 252] Add type cast for default enum values in C#
...
When creating a CreateXxx(...) method for a simple table type,
enum-type fields with a non-zero default must have an explicit
cast for the respective argument default value, because in C#,
there is an implicit cast from int to an enum only for 0.
Also, added an example of such type into the example monster_test
type, so that we test this feature.
2015-08-11 18:07:38 +02:00