Skip to content

Commit 0100f6a

Browse files
authored
FlatBuffers Version 23.5.26 (#7976)
1 parent e0a87e3 commit 0100f6a

File tree

181 files changed

+241
-236
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

181 files changed

+241
-236
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ All major or breaking changes will be documented in this file, as well as any
44
new features that should be highlighted. Minor fixes or improvements are not
55
necessarily listed.
66

7+
## [23.5.26 (May 26 2023)](https://github.com/google/flatbuffers/releases/tag/v23.5.26)
8+
9+
* Mostly bug fixing for 64-bit support
10+
* Adds support for specifying underling type of unions in C++ and TS/JS (#7954)
11+
712
## [23.5.9 (May 9 2023)](https://github.com/google/flatbuffers/releases/tag/v23.5.9)
813

914
* 64-bit support for C++ (#7935)

CMake/Version.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
set(VERSION_MAJOR 23)
22
set(VERSION_MINOR 5)
3-
set(VERSION_PATCH 9)
3+
set(VERSION_PATCH 26)
44
set(VERSION_COMMIT 0)
55

66
if(EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/.git")

FlatBuffers.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'FlatBuffers'
3-
s.version = '23.5.9'
3+
s.version = '23.5.26'
44
s.summary = 'FlatBuffers: Memory Efficient Serialization Library'
55

66
s.description = "FlatBuffers is a cross platform serialization library architected for

android/app/src/main/java/generated/com/fbs/app/Animal.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ class Animal : Table() {
5757
return if(o != 0) bb.getShort(o + bb_pos).toUShort() else 0u
5858
}
5959
companion object {
60-
fun validateVersion() = Constants.FLATBUFFERS_23_5_9()
60+
fun validateVersion() = Constants.FLATBUFFERS_23_5_26()
6161
fun getRootAsAnimal(_bb: ByteBuffer): Animal = getRootAsAnimal(_bb, Animal())
6262
fun getRootAsAnimal(_bb: ByteBuffer, obj: Animal): Animal {
6363
_bb.order(ByteOrder.LITTLE_ENDIAN)

dart/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: flat_buffers
2-
version: 23.5.9
2+
version: 23.5.26
33
description: FlatBuffers reading and writing library for Dart. Based on original work by Konstantin Scheglov and Paul Berry of the Dart SDK team.
44
homepage: https://github.com/google/flatbuffers
55
documentation: https://google.github.io/flatbuffers/index.html

goldens/csharp/Galaxy.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ public struct Galaxy : IFlatbufferObject
1010
{
1111
private Table __p;
1212
public ByteBuffer ByteBuffer { get { return __p.bb; } }
13-
public static void ValidateVersion() { FlatBufferConstants.FLATBUFFERS_23_5_9(); }
13+
public static void ValidateVersion() { FlatBufferConstants.FLATBUFFERS_23_5_26(); }
1414
public static Galaxy GetRootAsGalaxy(ByteBuffer _bb) { return GetRootAsGalaxy(_bb, new Galaxy()); }
1515
public static Galaxy GetRootAsGalaxy(ByteBuffer _bb, Galaxy obj) { return (obj.__assign(_bb.GetInt(_bb.Position) + _bb.Position, _bb)); }
1616
public void __init(int _i, ByteBuffer _bb) { __p = new Table(_i, _bb); }

goldens/csharp/Universe.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ public struct Universe : IFlatbufferObject
1010
{
1111
private Table __p;
1212
public ByteBuffer ByteBuffer { get { return __p.bb; } }
13-
public static void ValidateVersion() { FlatBufferConstants.FLATBUFFERS_23_5_9(); }
13+
public static void ValidateVersion() { FlatBufferConstants.FLATBUFFERS_23_5_26(); }
1414
public static Universe GetRootAsUniverse(ByteBuffer _bb) { return GetRootAsUniverse(_bb, new Universe()); }
1515
public static Universe GetRootAsUniverse(ByteBuffer _bb, Universe obj) { return (obj.__assign(_bb.GetInt(_bb.Position) + _bb.Position, _bb)); }
1616
public static bool VerifyUniverse(ByteBuffer _bb) {Google.FlatBuffers.Verifier verifier = new Google.FlatBuffers.Verifier(_bb); return verifier.VerifyBuffer("", false, UniverseVerify.Verify); }

goldens/java/Galaxy.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
@SuppressWarnings("unused")
2121
public final class Galaxy extends Table {
22-
public static void ValidateVersion() { Constants.FLATBUFFERS_23_5_9(); }
22+
public static void ValidateVersion() { Constants.FLATBUFFERS_23_5_26(); }
2323
public static Galaxy getRootAsGalaxy(ByteBuffer _bb) { return getRootAsGalaxy(_bb, new Galaxy()); }
2424
public static Galaxy getRootAsGalaxy(ByteBuffer _bb, Galaxy obj) { _bb.order(ByteOrder.LITTLE_ENDIAN); return (obj.__assign(_bb.getInt(_bb.position()) + _bb.position(), _bb)); }
2525
public void __init(int _i, ByteBuffer _bb) { __reset(_i, _bb); }

goldens/java/Universe.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
@SuppressWarnings("unused")
2121
public final class Universe extends Table {
22-
public static void ValidateVersion() { Constants.FLATBUFFERS_23_5_9(); }
22+
public static void ValidateVersion() { Constants.FLATBUFFERS_23_5_26(); }
2323
public static Universe getRootAsUniverse(ByteBuffer _bb) { return getRootAsUniverse(_bb, new Universe()); }
2424
public static Universe getRootAsUniverse(ByteBuffer _bb, Universe obj) { _bb.order(ByteOrder.LITTLE_ENDIAN); return (obj.__assign(_bb.getInt(_bb.position()) + _bb.position(), _bb)); }
2525
public void __init(int _i, ByteBuffer _bb) { __reset(_i, _bb); }

goldens/kotlin/Galaxy.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ class Galaxy : Table() {
3232
return if(o != 0) bb.getLong(o + bb_pos) else 0L
3333
}
3434
companion object {
35-
fun validateVersion() = Constants.FLATBUFFERS_23_5_9()
35+
fun validateVersion() = Constants.FLATBUFFERS_23_5_26()
3636
fun getRootAsGalaxy(_bb: ByteBuffer): Galaxy = getRootAsGalaxy(_bb, Galaxy())
3737
fun getRootAsGalaxy(_bb: ByteBuffer, obj: Galaxy): Galaxy {
3838
_bb.order(ByteOrder.LITTLE_ENDIAN)

0 commit comments

Comments
 (0)