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 2023/08/16 05:19:06 UTC

[avro] branch dependabot/cargo/lang/rust/master/color-backtrace-0.6.0 updated (5c341de97 -> 6bb181616)

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

github-bot pushed a change to branch dependabot/cargo/lang/rust/master/color-backtrace-0.6.0
in repository https://gitbox.apache.org/repos/asf/avro.git


 discard 5c341de97 Bump color-backtrace from 0.5.1 to 0.6.0 in /lang/rust
     add 56a0e55d7 AVRO-3830: [Rust] Handle namespace properly if a name starts with dot (#2437)
     add 598911d80 AVRO-3814: Fix schema resolution for records in union types (#2441)
     add e26943fd1 Bump serde from 1.0.180 to 1.0.183 in /lang/rust (#2424)
     add 52d933999 AVRO-2771: Refactor custom codable check (#1720)
     add b1517d32e AVRO-3486: Set namespace with protocol fullName (#1637)
     add 68f746078 Bump thiserror from 1.0.44 to 1.0.46 in /lang/rust (#2442)
     add 603a7e780 Bump anyhow from 1.0.72 to 1.0.74 in /lang/rust (#2443)
     add 6bb181616 Bump color-backtrace from 0.5.1 to 0.6.0 in /lang/rust

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   (5c341de97)
            \
             N -- N -- N   refs/heads/dependabot/cargo/lang/rust/master/color-backtrace-0.6.0 (6bb181616)

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:
 .../src/main/java/org/apache/avro/Protocol.java    |  43 +-
 .../test/java/org/apache/avro/TestProtocol.java    |  25 +-
 lang/java/compiler/pom.xml                         |   1 +
 .../avro/compiler/specific/SpecificCompiler.java   |   6 +-
 lang/java/compiler/src/test/idl/input/bar.avpr     |   3 +-
 lang/java/compiler/src/test/idl/output/import.avpr |  10 +-
 .../compiler/src/test/idl/output/nestedimport.avpr |  11 +-
 .../apache/avro/specific/TestGeneratedCode.java    |  26 +
 .../regression_error_field_in_record.avsc          |  22 +
 lang/rust/Cargo.lock                               |  20 +-
 lang/rust/avro/Cargo.toml                          |   6 +-
 lang/rust/avro/src/de.rs                           |   1 +
 lang/rust/avro/src/schema.rs                       | 224 ++++++-
 lang/rust/avro/src/ser.rs                          |   6 +-
 lang/rust/avro/src/types.rs                        |   4 +-
 lang/rust/avro/tests/avro-3786.rs                  | 727 +++++++++++++++++++++
 lang/rust/avro_derive/Cargo.toml                   |   2 +-
 lang/rust/avro_test_helper/Cargo.toml              |   2 +-
 lang/rust/wasm-demo/Cargo.toml                     |   2 +-
 19 files changed, 1083 insertions(+), 58 deletions(-)
 create mode 100644 lang/java/compiler/src/test/resources/regression_error_field_in_record.avsc