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

[pulsar-client-cpp] branch merlimat-patch-1 updated (c1941c7 -> fea1c2d)

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

mmerli pushed a change to branch merlimat-patch-1
in repository https://gitbox.apache.org/repos/asf/pulsar-client-cpp.git


 discard c1941c7  Add codeql code scanning configuration
     add 3538d15  Added license and notice files (#9)
     add 40c7406  Fixed RPM / Deb / APK packages and enabled CI build (#11)
     add 9eb9011  Add TLS transport config (#12)
     add 0b1eabd  Build release artifacts (#15)
     add 27caf45  Run unit tests in CI (#14)
     add 5ed0929  Enable format check in PR validation (#17)
     add bdffcef  Install GoogleTest with homebrew in macOS (#20)
     add dc2d71e  Added script to download release artifacts (#18)
     add 778fcba  Build images with deps versions (#19)
     add 72c6921  Add codeql code scanning configuration
     add fea1c2d  Fixed workflow definition

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   (c1941c7)
            \
             N -- N -- N   refs/heads/merlimat-patch-1 (fea1c2d)

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:
 .github/workflows/ci-build-binary-artifacts.yaml   | 246 ++++++++++++++++++
 .github/workflows/ci-pr-validation.yaml            | 283 ++++++++++++++++++++
 .github/workflows/codeql-analysis.yml              |  60 ++---
 .gitignore                                         |  10 +
 CONTRIBUTING.md                                    |  26 ++
 pkg/licenses/LICENSE.txt => LICENSE                |  68 ++++-
 NOTICE                                             |   5 +
 README.md                                          |  10 +-
 SECURITY.md                                        |  17 ++
 .../copy-deps-versionfile.sh                       |   9 +-
 ...{clang_format_exclusions.txt => dep-version.py} |   7 +-
 build-support/download-release-artifacts.py        |  68 +++++
 .../generate-source-archive.sh                     |  11 +-
 .../sign-files.sh                                  |  12 +-
 .../build-apk.sh => build-support/stage-release.sh |  31 ++-
 .../start-test-service-inside-container.sh         | 101 ++++++++
 ...lang_format_exclusions.txt => dependencies.yaml |  10 +-
 docker-build-centos7.sh                            |   8 +-
 include/pulsar/ClientConfiguration.h               |  24 ++
 lib/ClientConfiguration.cc                         |  18 ++
 lib/ClientConfigurationImpl.h                      |   2 +
 lib/ClientConnection.cc                            |  26 +-
 lib/HTTPLookupService.cc                           |   7 +
 lib/HTTPLookupService.h                            |   2 +
 lib/c/c_ClientConfiguration.cc                     |  18 ++
 lib/checksum/crc32c_arm.h                          |  10 +-
 pkg/apk/.gitignore                                 |   5 +-
 pkg/apk/APKBUILD                                   |  11 +-
 pkg/apk/Dockerfile                                 | 112 ++++++++
 pkg/apk/build-apk.sh                               |  28 +-
 pkg/apk/{docker-build-apk.sh => create-images.sh}  |  15 +-
 ...cker-build-apk.sh => docker-build-apk-arm64.sh} |  12 +-
 ...ker-build-apk.sh => docker-build-apk-x86_64.sh} |  12 +-
 pkg/deb/.gitignore                                 |   1 +
 pkg/deb/Dockerfile                                 | 120 +++++----
 pkg/deb/build-deb.sh                               |  27 +-
 .../docker-build-apk.sh => deb/create-images.sh}   |  15 +-
 .../docker-build-deb-arm64.sh}                     |  11 +-
 .../docker-build-deb-x86_64.sh}                    |  11 +-
 pkg/deb/docker-build-deb.sh                        |  34 ---
 pkg/rpm/.gitignore                                 |   3 +-
 pkg/rpm/Dockerfile                                 | 113 ++++----
 pkg/rpm/SPECS/pulsar-client.spec                   |  21 +-
 pkg/rpm/build-rpm.sh                               |  10 +-
 .../docker-build-apk.sh => rpm/create-images.sh}   |  15 +-
 .../docker-build-rpm-arm64.sh}                     |  11 +-
 .../docker-build-rpm-x86_64.sh}                    |  11 +-
 pkg/rpm/docker-build-rpm.sh                        |  34 ---
 pulsar-test-service-start.sh                       | 101 +-------
 pulsar-test-service-stop.sh                        |  12 +-
 run-unit-tests.sh                                  |  54 +---
 test-conf/broker-cert.pem                          | 117 +++++++++
 test-conf/broker-key.pem                           |  27 ++
 test-conf/cacert.pem                               | 127 +++++++++
 test-conf/client-cert.pem                          |  90 +++++++
 test-conf/client-key.pem                           |  27 ++
 test-conf/client-ssl.conf                          |   4 +-
 test-conf/cpp_credentials_file.json                |   4 +
 test-conf/private-key.client-ecdsa.pem             |  13 +
 test-conf/private-key.client-mismatch-rsa.pem      |  29 +++
 test-conf/private-key.client-rsa.pem               |  27 ++
 test-conf/public-key.client-ecdsa.pem              |   7 +
 test-conf/public-key.client-mismatch-rsa.pem       |   9 +
 test-conf/public-key.client-rsa.pem                |   9 +
 test-conf/standalone-ssl.conf                      |   8 +-
 tests/AuthBasicTest.cc                             | 115 ++++++++
 tests/AuthPluginTest.cc                            |  10 +-
 tests/AuthTokenTest.cc                             |   2 +-
 tests/BasicEndToEndTest.cc                         |  18 +-
 tests/CMakeLists.txt                               |   6 +-
 tests/ProtobufNativeSchemaTest.cc                  |  42 ++-
 tests/authentication.conf                          | 288 ---------------------
 tests/client.conf                                  |  27 --
 73 files changed, 2039 insertions(+), 855 deletions(-)
 create mode 100644 .github/workflows/ci-build-binary-artifacts.yaml
 create mode 100644 .github/workflows/ci-pr-validation.yaml
 create mode 100644 CONTRIBUTING.md
 copy pkg/licenses/LICENSE.txt => LICENSE (80%)
 create mode 100644 NOTICE
 create mode 100644 SECURITY.md
 copy pulsar-test-service-stop.sh => build-support/copy-deps-versionfile.sh (82%)
 copy build-support/{clang_format_exclusions.txt => dep-version.py} (87%)
 mode change 100644 => 100755
 create mode 100755 build-support/download-release-artifacts.py
 copy pkg/apk/docker-build-apk.sh => build-support/generate-source-archive.sh (83%)
 copy pulsar-test-service-stop.sh => build-support/sign-files.sh (82%)
 copy pkg/apk/build-apk.sh => build-support/stage-release.sh (63%)
 create mode 100755 build-support/start-test-service-inside-container.sh
 copy build-support/clang_format_exclusions.txt => dependencies.yaml (87%)
 create mode 100644 pkg/apk/Dockerfile
 copy pkg/apk/{docker-build-apk.sh => create-images.sh} (71%)
 copy pkg/apk/{docker-build-apk.sh => docker-build-apk-arm64.sh} (79%)
 copy pkg/apk/{docker-build-apk.sh => docker-build-apk-x86_64.sh} (79%)
 copy pkg/{apk/docker-build-apk.sh => deb/create-images.sh} (71%)
 copy pkg/{apk/docker-build-apk.sh => deb/docker-build-deb-arm64.sh} (79%)
 copy pkg/{apk/docker-build-apk.sh => deb/docker-build-deb-x86_64.sh} (79%)
 delete mode 100755 pkg/deb/docker-build-deb.sh
 copy pkg/{apk/docker-build-apk.sh => rpm/create-images.sh} (71%)
 copy pkg/{apk/docker-build-apk.sh => rpm/docker-build-rpm-arm64.sh} (79%)
 rename pkg/{apk/docker-build-apk.sh => rpm/docker-build-rpm-x86_64.sh} (79%)
 delete mode 100755 pkg/rpm/docker-build-rpm.sh
 create mode 100644 test-conf/broker-cert.pem
 create mode 100644 test-conf/broker-key.pem
 create mode 100644 test-conf/cacert.pem
 create mode 100644 test-conf/client-cert.pem
 create mode 100644 test-conf/client-key.pem
 create mode 100644 test-conf/cpp_credentials_file.json
 create mode 100644 test-conf/private-key.client-ecdsa.pem
 create mode 100644 test-conf/private-key.client-mismatch-rsa.pem
 create mode 100644 test-conf/private-key.client-rsa.pem
 create mode 100644 test-conf/public-key.client-ecdsa.pem
 create mode 100644 test-conf/public-key.client-mismatch-rsa.pem
 create mode 100644 test-conf/public-key.client-rsa.pem
 delete mode 100644 tests/authentication.conf
 delete mode 100644 tests/client.conf