You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@avro.apache.org by gi...@apache.org on 2022/10/24 07:33:49 UTC

[avro] branch dependabot/maven/lang/java/org.apache.thrift-libthrift-0.17.0 updated (d90912ba3 -> d68185e74)

This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch dependabot/maven/lang/java/org.apache.thrift-libthrift-0.17.0
in repository https://gitbox.apache.org/repos/asf/avro.git


 discard d90912ba3 Bump libthrift from 0.16.0 to 0.17.0 in /lang/java
     add fa9ff6fb6 Bump syn from 1.0.101 to 1.0.102 in /lang/rust (#1902)
     add 2d8148a67 Bump uuid from 1.1.2 to 1.2.1 in /lang/rust (#1903)
     add d45036ff7 Bump serde_json from 1.0.85 to 1.0.86 in /lang/rust (#1904)
     add 92d57060f AVRO-3632: [Rust] Handle defaults in unions according to the spec (#1901)
     add fc71db2a9 AVRO-3633: [Rust] Additional attributes for 'avro_derive' crate (#1905)
     add 3c4f5adcc AVRO-3634: Implement AvroSchemaComponent for bool (#1906)
     add 63844f811 AVRO-3639: [Rust] Derive implementation for Eq where possible
     add 1027938c4 AVRO-3639: Add fleet.toml and .cargo/config.toml to gitignore
     add e23899e64 Bump mocha from 10.0.0 to 10.1.0 in /lang/js (#1909)
     add 56703cdbb Bump jackson-bom from 2.12.7 to 2.12.7.20221012 in /lang/java (#1912)
     add 4e5a58f77 Bump grpc.version from 1.49.2 to 1.50.0 in /lang/java (#1910)
     add c07ab64fa Bump netty-bom from 4.1.82.Final to 4.1.84.Final in /lang/java (#1911)
     add db5b687ab Bump proc-macro2 from 1.0.46 to 1.0.47 in /lang/rust (#1913)
     add 6d90ec4b1 AVRO-3642: [RUST] Fix GenericSingleObjectReader::read_value for non-exhaustive reads (#1914)
     add 3e3be73bd AVRO-3645: [RUST] Fix deserialization of enum with unit type (#1916)
     add 84ea6cb19 Bump ctor from 0.1.23 to 0.1.26 in /lang/rust (#1918)
     add 627b00549 AVRO-3644: handle java.util.Optional as a nullable value (#1915)
     add 5a0fb0ffc Update blog to invite Martin Grigorov (#1865)
     add 0d241cb03 Bump serde_json from 1.0.86 to 1.0.87 in /lang/rust (#1923)
     add 016323828 AVRO-3650: [C++] Fix build on Manjaro (#1920)
     add 4ed213c63 Bump anyhow from 1.0.65 to 1.0.66 in /lang/rust (#1924)
     add c1e57e5bb Bump syn from 1.0.102 to 1.0.103 in /lang/rust (#1925)
     add d4f527a8b Bump serde from 1.0.145 to 1.0.147 in /lang/rust (#1926)
     add 8daf14945 Bump grpc.version from 1.50.0 to 1.50.2 in /lang/java (#1931)
     add 6e1d87e5b Bump mockito-core from 4.8.0 to 4.8.1 in /lang/java (#1929)
     add a99da1cc9 Bump plexus-utils from 3.4.2 to 3.5.0 in /lang/java (#1928)
     add fdc73684d Bump protobuf-java from 3.21.7 to 3.21.8 in /lang/java (#1927)
     add d68185e74 Bump libthrift from 0.16.0 to 0.17.0 in /lang/java

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (d90912ba3)
            \
             N -- N -- N   refs/heads/dependabot/maven/lang/java/org.apache.thrift-libthrift-0.17.0 (d68185e74)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 .../news/new-pmc-martin-grigorov.md}               |  17 +-
 lang/c++/CMakeLists.txt                            |   2 +-
 lang/c++/impl/avrogencpp.cc                        |   2 +-
 .../apache/avro/reflect/ReflectDatumReader.java    |  10 +
 .../apache/avro/reflect/ReflectDatumWriter.java    |   3 +
 .../org/apache/avro/specific/SpecificData.java     |   3 +
 .../java/org/apache/avro/reflect/TestReflect.java  |  13 ++
 .../avro/reflect/TestReflectDatumReader.java       |  83 ++++++++
 lang/java/maven-plugin/pom.xml                     |   2 +-
 lang/java/pom.xml                                  |  10 +-
 lang/js/package-lock.json                          |  15 +-
 lang/js/package.json                               |   2 +-
 lang/rust/.gitignore                               |   2 +
 lang/rust/Cargo.lock                               |  36 ++--
 lang/rust/avro/Cargo.toml                          |  12 +-
 lang/rust/avro/src/de.rs                           |  59 ++++--
 lang/rust/avro/src/error.rs                        |   3 +
 lang/rust/avro/src/reader.rs                       |  40 +++-
 lang/rust/avro/src/schema.rs                       |  33 +++-
 lang/rust/avro/tests/schema.rs                     |  29 +++
 lang/rust/avro_derive/Cargo.toml                   |  10 +-
 lang/rust/avro_derive/src/lib.rs                   |  21 +-
 lang/rust/avro_derive/tests/derive.rs              | 217 +++++++++++++++++++--
 lang/rust/avro_test_helper/Cargo.toml              |   4 +-
 lang/rust/wasm-demo/Cargo.toml                     |   2 +-
 25 files changed, 525 insertions(+), 105 deletions(-)
 copy doc/content/en/{project/_index.md => blog/news/new-pmc-martin-grigorov.md} (57%)