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

vaughn pushed a change to branch zy_dev
in repository https://gitbox.apache.org/repos/asf/incubator-hugegraph.git


 discard 8e483ba88 improve jacoco agent and cli version
 discard d83b2e0cb hugegraph-common version 2.1.2
 discard c64935855 improve jacoco version
 discard ba5cb5e1b improve code
 discard 16ca4c0cf improve code
 discard d02b336ef improve code
 discard b16656273 improve code
 discard 231b698c8 improve code
 discard 1ae5a5062 chore: support java 11 version
     add 0a3599db5 Bugfix/export ConditionP (#1813)
     add 73a1f1f8e add contribution flowchart (#1791)
     add 734d55436 cache: fix assert node.next==empty (#1790)
     add ad2435941 fix apache license conflicts: jnr-posix and jboss-logging 
(#1822)
     add c3c9f2a8b remove unused import (#1821)
     add 7438511fa CONTRIBUTING.md: add how to create a GitHub token (#1820)
     add c904dcbbb chore: add check-style plugin (#1810)
     add 345c4c310 StringEncoding: improve empty bytes decode (#1788)
     add 9ec3c3c66 CONTRIBUTING.md: correct how to sign the CLA (#1819)
     add 74c0e2dc8 BackendEntry.columns() var-arg to single-arg avoid 
array-construct (#1787)
     add 1f5d502e0 fix: query by within + Text.contains (#1803)
     add d85ee50d5 chore: replace mysql actions by official docker image (#1834)
     add 28ed87336 doc: add repository urls for other modules (#1831)
     add 8d52abb2a HugeGraph-622: Bump up to version 0.13.0 (#1740)
     add 7d46524b1 improve raft module (#1802)
     add 9a8259ef3 fix schema label: addIndexLabel/removeIndexLabel race 
condition (#1807)
     add 0182ce3f0 chore: support java 11 version
     add 89df1084d improve code
     add d607bfdcf improve code
     add 71002da31 improve code
     add 9148d7a69 improve code
     add 88fcb0831 improve code
     add 3cd12bda8 improve jacoco version
     add bb74c3622 hugegraph-common version 2.1.2
     add 158c754a4 improve jacoco agent and cli version
     add 0f59476a2 metrics conflict

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   (8e483ba88)
            \
             N -- N -- N   refs/heads/zy_dev (0f59476a2)

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:
 .travis.yml => .github/outdated/.travis.yml        |   0
 .../outdated/APACHE_PROPOSAL.md                    |   0
 .github/{workflows => outdated}/cla.yml            |   0
 .github/workflows/ci.yml                           |  26 +-
 CONTRIBUTING.md                                    |  14 +-
 README.md                                          |   6 +
 hugegraph-api/pom.xml                              |   4 +-
 .../baidu/hugegraph/server/ApplicationConfig.java  |   2 +-
 .../com/baidu/hugegraph/version/ApiVersion.java    |   2 +-
 hugegraph-cassandra/pom.xml                        |  10 +-
 hugegraph-core/pom.xml                             |   4 +-
 .../baidu/hugegraph/backend/cache/RamCache.java    |  21 +-
 .../baidu/hugegraph/backend/page/QueryList.java    |  13 +
 .../baidu/hugegraph/backend/query/Condition.java   |   1 +
 .../hugegraph/backend/query/ConditionQuery.java    | 128 ++--
 .../backend/serializer/BinaryBackendEntry.java     |  13 +-
 .../backend/serializer/BinarySerializer.java       |  38 +-
 .../hugegraph/backend/serializer/BytesBuffer.java  |   8 +-
 .../backend/serializer/SerializerFactory.java      |   2 -
 .../backend/serializer/TableBackendEntry.java      |   2 +-
 .../backend/serializer/TableSerializer.java        |   4 +-
 .../backend/serializer/TextBackendEntry.java       |   8 +-
 .../backend/serializer/TextSerializer.java         |   4 +-
 .../store/AbstractBackendStoreProvider.java        |   1 -
 .../hugegraph/backend/store/BackendEntry.java      | 102 ++-
 .../backend/store/raft/RaftBackendStore.java       |   4 +-
 .../store/raft/RaftBackendStoreProvider.java       |   1 -
 .../hugegraph/backend/store/raft/RaftClosure.java  |   6 +-
 .../hugegraph/backend/store/raft/RaftNode.java     |  83 +--
 .../hugegraph/backend/store/raft/RaftResult.java   |   4 +
 .../backend/store/raft/RaftSharedContext.java      |   4 +-
 .../backend/store/raft/rpc/RpcForwarder.java       |  23 +-
 .../backend/tx/GraphIndexTransaction.java          |  65 +-
 .../hugegraph/backend/tx/GraphTransaction.java     |  24 +-
 .../hugegraph/backend/tx/SchemaTransaction.java    |  36 +-
 .../hugegraph/job/schema/IndexLabelRemoveJob.java  |   5 +-
 .../com/baidu/hugegraph/job/schema/SchemaJob.java  |  22 -
 .../com/baidu/hugegraph/schema/IndexLabel.java     |   9 +-
 .../com/baidu/hugegraph/schema/SchemaLabel.java    |   4 +-
 .../schema/builder/IndexLabelBuilder.java          |  22 +-
 .../com/baidu/hugegraph/structure/HugeIndex.java   |   2 +-
 .../com/baidu/hugegraph/structure/HugeVertex.java  |   5 +-
 .../com/baidu/hugegraph/util/StringEncoding.java   |   7 +
 .../com/baidu/hugegraph/version/CoreVersion.java   |   2 +-
 hugegraph-dist/pom.xml                             |   2 +-
 .../src/assembly/static/conf/gremlin-server.yaml   |   1 +
 .../assembly/travis/install-mysql-via-docker.sh    |   4 +-
 hugegraph-example/pom.xml                          |   2 +-
 hugegraph-hbase/pom.xml                            |   2 +-
 .../hugegraph/backend/store/hbase/HbaseTables.java |   6 +-
 hugegraph-mysql/pom.xml                            |   2 +-
 hugegraph-palo/pom.xml                             |   2 +-
 hugegraph-postgresql/pom.xml                       |   2 +-
 hugegraph-rocksdb/pom.xml                          |   2 +-
 .../backend/store/rocksdb/RocksDBTable.java        |   5 +-
 hugegraph-scylladb/pom.xml                         |   2 +-
 hugegraph-test/pom.xml                             |   2 +-
 .../api/traversers/AdamicAdarAPITest.java          |   1 -
 .../api/traversers/ResourceAllocationAPITest.java  |   1 -
 .../com/baidu/hugegraph/core/BaseCoreTest.java     |  13 +
 .../com/baidu/hugegraph/core/EdgeCoreTest.java     |  42 +-
 .../com/baidu/hugegraph/core/VertexCoreTest.java   | 737 +++++++++++++--------
 .../hugegraph/unit/rocksdb/RocksDBPerfTest.java    |  48 ++
 .../serializer/BinaryScatterSerializerTest.java    |   4 +-
 .../unit/serializer/SerializerFactoryTest.java     |   5 +-
 pom.xml                                            |  35 +-
 style/checkstyle.xml                               | 217 ++++++
 67 files changed, 1301 insertions(+), 577 deletions(-)
 rename .travis.yml => .github/outdated/.travis.yml (100%)
 rename APACHE_PROPOSAL.md => .github/outdated/APACHE_PROPOSAL.md (100%)
 rename .github/{workflows => outdated}/cla.yml (100%)
 create mode 100644 style/checkstyle.xml

Reply via email to