You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hugegraph.apache.org by vg...@apache.org on 2024/04/04 09:42:09 UTC

(incubator-hugegraph) branch intro-pd-core updated (b7c9b6869 -> f71141cdb)

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

vgalaxies pushed a change to branch intro-pd-core
in repository https://gitbox.apache.org/repos/asf/incubator-hugegraph.git


    from b7c9b6869 fix comment
     add 7b33574fd feat: added the OpenTelemetry trace support (#2477)
     add 277f76ef0 chore(server): clear context after req done (#2470)
     add ef8f6128a fix: multi graph error in rocksdb with same path/fd
     add 713d88d1f refact: enhance auth logic
     add 6a4041e21 chore: upgrade to 1.3.0 (last major version support Java8)
     add 27cf52b00 chore: add swagger-ui LICENSE relative files (#2495)
     add 483bca52e chore: remove required ci with java8 (#2503)
     add 37e4405c0 refact: prepare for integrating pd modules
     add a560a6efe feat(pd): integrate `pd-grpc` submodule
     add b5d9dd2f0 feat(pd): integrate `pd-common` submodule
     add bd1d9db77 feat(pd): integrate `pd-test` submodule
     add 3a1618faa feat(pd): integrate `pd-client` submodule
     add f71141cdb Merge branch 'master' into intro-pd-core

No new revisions were added by this update.

Summary of changes:
 .asf.yaml                                          |   1 -
 .github/workflows/check-dependencies.yml           |   2 +-
 .github/workflows/ci.yml                           |   2 +-
 .github/workflows/codeql-analysis.yml              |   2 +-
 .github/workflows/licence-checker.yml              |   2 +-
 .gitignore                                         |   3 +
 README.md                                          |  20 +--
 .../org/apache/hugegraph/api/auth/LoginAPI.java    |  15 +-
 .../hugegraph/api/filter/AccessLogFilter.java      |  12 ++
 .../hugegraph/api/filter/AuthenticationFilter.java |  67 +++++----
 .../hugegraph/api/gremlin/GremlinQueryAPI.java     |   5 +-
 .../apache/hugegraph/auth/ConfigAuthenticator.java |   6 +
 .../apache/hugegraph/auth/HugeAuthenticator.java   |   9 +-
 .../hugegraph/auth/HugeFactoryAuthProxy.java       |  56 ++++++--
 .../apache/hugegraph/auth/HugeGraphAuthProxy.java  |   6 +-
 .../hugegraph/auth/StandardAuthenticator.java      |   8 ++
 .../org/apache/hugegraph/config/ServerOptions.java |   2 +-
 .../org/apache/hugegraph/core/GraphManager.java    |   6 +
 .../hugegraph/security/HugeSecurityManager.java    | 155 +++++++++++----------
 .../java/org/apache/hugegraph/util/Reflection.java |  54 ++++---
 .../org/apache/hugegraph/version/CoreVersion.java  |   4 +-
 hugegraph-server/hugegraph-dist/docker/README.md   |  41 +++++-
 .../conf/grafana-datasources.yaml}                 |  40 ++++--
 .../remote.yaml => docker/conf/prometheus.yaml}    |  21 +--
 .../hugegraph-dist/docker/conf/tempo.yaml          |  56 ++++++++
 .../docker/example/docker-compose-trace.yaml       |  56 ++++++++
 .../hugegraph-dist/release-docs/LICENSE            |   1 +
 .../hugegraph-dist/release-docs/NOTICE             |   9 ++
 ...{LICENSE-airline.txt => LICENSE-swagger-ui.txt} |   0
 .../src/assembly/static/bin/hugegraph-server.sh    |  71 +++++++---
 .../src/assembly/static/bin/start-hugegraph.sh     |  28 ++--
 .../hugegraph-dist/src/assembly/static/bin/util.sh |   3 +-
 .../assembly/static/conf/rest-server.properties    |   2 +-
 .../src/assembly/travis/start-server.sh            |   5 +-
 .../hugegraph-dist/src/main/resources/log4j2.xml   |   2 +-
 .../backend/store/rocksdb/RocksDBOptions.java      |   4 +-
 .../org/apache/hugegraph/api/ArthasApiTest.java    |  38 +++--
 .../java/org/apache/hugegraph/api/BaseApiTest.java |   7 +-
 .../org/apache/hugegraph/api/LoginApiTest.java     |  12 +-
 .../hugegraph/unit/core/SecurityManagerTest.java   |  47 ++++---
 hugegraph-server/pom.xml                           |   2 +-
 pom.xml                                            |   7 +-
 42 files changed, 602 insertions(+), 287 deletions(-)
 copy hugegraph-server/hugegraph-dist/{src/assembly/static/conf/gremlin-driver-settings.yaml => docker/conf/grafana-datasources.yaml} (61%)
 copy hugegraph-server/hugegraph-dist/{src/assembly/static/conf/remote.yaml => docker/conf/prometheus.yaml} (76%)
 create mode 100644 hugegraph-server/hugegraph-dist/docker/conf/tempo.yaml
 create mode 100644 hugegraph-server/hugegraph-dist/docker/example/docker-compose-trace.yaml
 copy hugegraph-server/hugegraph-dist/release-docs/licenses/{LICENSE-airline.txt => LICENSE-swagger-ui.txt} (100%)