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 2021/01/14 12:09:25 UTC

[avro] branch dependabot/nuget/lang/csharp/Microsoft.NET.Test.Sdk-16.8.3 updated (aea701f -> 2176b5a)

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

github-bot pushed a change to branch dependabot/nuget/lang/csharp/Microsoft.NET.Test.Sdk-16.8.3
in repository https://gitbox.apache.org/repos/asf/avro.git.


 discard aea701f  Bump Microsoft.NET.Test.Sdk from 16.4.0 to 16.8.3 in /lang/csharp
     add 89c03cf  Bump snappy-java from 1.1.8.1 to 1.1.8.2 in /lang/java (#1026)
     add 0fbc98b  AVRO-3008: Threading.is_alive Spelling for Py3.9 (#1042)
     add ca6d72d  AVRO-3006: Documentation for Pypi Packages (#1041)
     add 4467c66  AVRO-3009 Test in GitHub Actions (#1043)
     add 6c527e5  AVRO-3009: Update Status Badges in Readme
     add e8db541  AVRO-2998: Schema validation for hashes with symbol keys (#1036)
     add 96312e4  AVRO-2999: Optimize Ruby union encoding (#1037)
     add bd31cc4  AVRO-3000: Avoid unnecessary schema compatibility checks (#1038)
     add 21e3934  AVRO-2983: Set Span length of ArrayPool Rent buffer (#1013)
     add 2176b5a  Bump Microsoft.NET.Test.Sdk from 16.4.0 to 16.8.3 in /lang/csharp

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   (aea701f)
            \
             N -- N -- N   refs/heads/dependabot/nuget/lang/csharp/Microsoft.NET.Test.Sdk-16.8.3 (2176b5a)

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:
 lang/ruby/build.sh => .github/workflows/rat.yml    |  69 +++++-----
 .../workflows/test-lang-c++.yml                    |  43 ++++---
 .github/workflows/test-lang-c.yml                  | 109 ++++++++++++++++
 .github/workflows/test-lang-csharp.yml             |  79 ++++++++++++
 .github/workflows/test-lang-java.yml               |  99 ++++++++++++++
 .github/workflows/test-lang-js.yml                 | 108 ++++++++++++++++
 .github/workflows/test-lang-perl.yml               | 133 +++++++++++++++++++
 .github/workflows/test-lang-php.yml                | 142 +++++++++++++++++++++
 .github/workflows/test-lang-py.yml                 | 133 +++++++++++++++++++
 .github/workflows/test-lang-ruby.yml               | 135 ++++++++++++++++++++
 .travis.yml                                        |  43 -------
 .travis/before_install.sh                          |  41 ------
 .travis/script.sh                                  |  34 -----
 README.md                                          |  25 +++-
 .../main/IO/BinaryDecoder.notnetstandard2.0.cs     |   2 +-
 lang/csharp/src/apache/test/Avro.test.csproj       |   1 +
 lang/csharp/src/apache/test/IO/BinaryCodecTests.cs |  22 +++-
 lang/java/pom.xml                                  |   2 +-
 lang/php/build.sh                                  |   1 +
 lang/py/avro/README.md                             |  18 +++
 lang/py/avro/test/test_bench.py                    |   9 +-
 lang/py/avro/test/test_tether_task_runner.py       |   2 +-
 lang/py/build.sh                                   |   4 +-
 lang/py/setup.cfg                                  |   6 +-
 lang/py3/README.md                                 |  22 ++++
 lang/py3/README.txt                                |  13 --
 lang/py3/setup.cfg                                 |   3 +-
 lang/ruby/build.sh                                 |   8 +-
 lang/ruby/lib/avro/io.rb                           |  11 +-
 lang/ruby/lib/avro/schema.rb                       |   4 +-
 lang/ruby/lib/avro/schema_compatibility.rb         |  10 +-
 lang/ruby/lib/avro/schema_validator.rb             |  48 ++++---
 lang/ruby/test/test_schema_compatibility.rb        |   2 +
 lang/ruby/test/test_schema_validator.rb            |   8 +-
 34 files changed, 1149 insertions(+), 240 deletions(-)
 copy lang/ruby/build.sh => .github/workflows/rat.yml (53%)
 mode change 100755 => 100644
 copy .editorconfig => .github/workflows/test-lang-c++.yml (61%)
 create mode 100644 .github/workflows/test-lang-c.yml
 create mode 100644 .github/workflows/test-lang-csharp.yml
 create mode 100644 .github/workflows/test-lang-java.yml
 create mode 100644 .github/workflows/test-lang-js.yml
 create mode 100644 .github/workflows/test-lang-perl.yml
 create mode 100644 .github/workflows/test-lang-php.yml
 create mode 100644 .github/workflows/test-lang-py.yml
 create mode 100644 .github/workflows/test-lang-ruby.yml
 delete mode 100644 .travis.yml
 delete mode 100755 .travis/before_install.sh
 delete mode 100755 .travis/script.sh
 create mode 100644 lang/py/avro/README.md
 create mode 100644 lang/py3/README.md
 delete mode 100644 lang/py3/README.txt