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

github-bot pushed a change to branch dependabot/cargo/time-0.3.47
in repository https://gitbox.apache.org/repos/asf/iggy.git


    omit 1741eeb99 chore(deps): bump time from 0.3.45 to 0.3.47
     add 278e3905e ci(go): enable auto-publish for Go SDK on post-merge (#2692)
     add dbb511ac8 ci(python): enable auto-publish for Python SDK on post-merge 
(#2693)
     add fb9bd1acf fix(python): gate Unix-only APIs to fix Windows SDK build 
(#2695)
     add b53ef6d7a ci(js): enable auto-publish for Node SDK on post-merge 
(#2694)
     add 30f456832 ci(java): enable auto-publish for Java SDK with SNAPSHOT 
semantics (#2696)
     add e2fcc6728 refactor(csharp): change expiry handling to use TimeSpan 
(#2690)
     add bdf0b2e3f feat(csharp): implement get_snapshot method in C# SDK (#2698)
     add cc3746448 feat(simulator): implement bare bone version of simulator 
(#2688)
     add 0b4cc907d chore(server): move `IggyBatchSet` and it's utilities to 
common (#2704)
     add 2e74a3e10 ci(Java): add JaCoCo code coverage with Codecov integration 
(#2623)
     add 325adadfe chore(deps): bump time from 0.3.45 to 0.3.47

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   (1741eeb99)
            \
             N -- N -- N   refs/heads/dependabot/cargo/time-0.3.47 (325adadfe)

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/actions/java-gradle/pre-merge/action.yml   |  21 ++
 .github/config/publish.yml                         |   4 +-
 .github/workflows/_common.yml                      |   1 +
 .github/workflows/_test.yml                        |  12 ++
 .github/workflows/post-merge.yml                   |  19 +-
 .github/workflows/publish.yml                      |  64 ++----
 Cargo.lock                                         |  20 +-
 Cargo.toml                                         |   1 +
 DEPENDENCIES.md                                    |   1 +
 codecov.yml                                        |   9 +-
 core/common/Cargo.toml                             |   8 +-
 .../src}/deduplication/message_deduplicator.rs     |   9 +-
 .../src/deduplication}/mod.rs                      |   5 +-
 core/common/src/lib.rs                             |   3 +
 core/common/src/sender/mod.rs                      |   7 +-
 core/common/src/types/consensus/header.rs          |  28 ++-
 core/common/src/types/consensus/message.rs         |  71 +++----
 .../src/types/message}/indexes_mut.rs              |   4 +-
 .../src/types/message}/message_header_view_mut.rs  |   2 +-
 .../src/types/message}/message_view_mut.rs         |   6 +-
 .../src/types/message}/messages_batch_mut.rs       |  10 +-
 .../src/types/message}/messages_batch_set.rs       |  12 +-
 core/common/src/types/message/mod.rs               |  12 ++
 .../src/types/message/poll_metadata.rs}            |  21 +-
 core/common/src/utils/mod.rs                       |   1 +
 .../streaming => common/src}/utils/random_id.rs    |   0
 core/consensus/src/impls.rs                        | 102 +++++----
 core/consensus/src/lib.rs                          |  18 +-
 core/consensus/src/vsr_timeout.rs                  |   1 +
 core/journal/src/lib.rs                            |  12 +-
 core/message_bus/src/cache/connection.rs           |   5 +-
 core/message_bus/src/lib.rs                        |   7 +-
 core/metadata/src/impls/metadata.rs                | 184 +++++++++-------
 core/metadata/src/lib.rs                           |   8 +-
 core/metadata/src/stm/mod.rs                       |  34 ++-
 core/metadata/src/stm/mux.rs                       |  20 +-
 core/metadata/src/stm/stream.rs                    |   1 +
 core/server/Cargo.toml                             |   2 -
 .../handlers/messages/poll_messages_handler.rs     |  15 --
 core/server/src/http/http_shard_wrapper.rs         |   2 +-
 core/server/src/shard/system/messages.rs           |   2 +-
 core/server/src/shard/transmission/frame.rs        |   3 +-
 core/server/src/streaming/deduplication/mod.rs     |   2 +-
 core/server/src/streaming/partitions/helpers.rs    |   5 +-
 .../src/streaming/partitions/local_partition.rs    |   4 +-
 core/server/src/streaming/partitions/ops.rs        |   2 +-
 core/server/src/streaming/segments/indexes/mod.rs  |   3 +-
 core/server/src/streaming/segments/types/mod.rs    |  12 +-
 core/server/src/streaming/utils/mod.rs             |   2 +-
 .../dashboard/shared => simulator}/Cargo.toml      |  15 +-
 core/simulator/src/bus.rs                          | 186 +++++++++++++++++
 core/simulator/src/client.rs                       |  99 +++++++++
 core/simulator/src/deps.rs                         | 155 ++++++++++++++
 core/simulator/src/lib.rs                          | 165 +++++++++++++++
 core/simulator/src/main.rs                         | 100 +++++++++
 core/simulator/src/replica.rs                      |  67 ++++++
 foreign/csharp/Benchmarks/Program.cs               |   6 +-
 .../Fixtures/FetchMessagesFixture.cs               |   6 +-
 .../Fixtures/FlushMessageFixture.cs                |   6 +-
 .../Fixtures/IggyServerFixture.cs                  |   3 +-
 .../Fixtures/OffsetFixtures.cs                     |   8 +-
 .../Fixtures/PartitionsFixture.cs                  |   4 +-
 .../Fixtures/SendMessageFixture.cs                 |   4 +-
 .../Helpers/TopicFactory.cs                        |   7 +-
 .../Models/CreateTestTopic.cs}                     |  12 +-
 .../Models/UpdateTestTopic.cs}                     |   6 +-
 .../PersonalAccessTokenTests.cs                    |   7 +-
 .../Iggy_SDK.Tests.Integration/StreamsTests.cs     |   9 +-
 .../Iggy_SDK.Tests.Integration/SystemTests.cs      |  17 ++
 .../Iggy_SDK.Tests.Integration/TopicsTests.cs      |  24 ++-
 .../csharp/Iggy_SDK/Contracts/Tcp/TcpContracts.cs  |  15 ++
 foreign/csharp/Iggy_SDK/Contracts/TopicResponse.cs |   3 +-
 .../csharp/Iggy_SDK/Enums/SnapshotCompression.cs   |  12 +-
 .../csharp/Iggy_SDK/Enums/SystemSnapshotType.cs    |  14 +-
 .../IggyClient/IIggyPersonalAccessToken.cs         |   4 +-
 foreign/csharp/Iggy_SDK/IggyClient/IIggySystem.cs  |  16 ++
 foreign/csharp/Iggy_SDK/IggyClient/IIggyTopic.cs   |   8 +-
 .../Implementations/HttpMessageStream.cs           |  45 +++-
 .../IggyClient/Implementations/TcpMessageStream.cs |  25 ++-
 foreign/csharp/Iggy_SDK/Iggy_SDK.csproj            |   2 +-
 ...TimeOffsetConverter.cs => TimeSpanConverter.cs} |  16 +-
 foreign/csharp/Iggy_SDK/Mappers/BinaryMapper.cs    |   3 +-
 .../Iggy_SDK/Publishers/IggyPublisherBuilder.cs    |   3 +-
 .../Iggy_SDK/Publishers/IggyPublisherConfig.cs     |   4 +-
 foreign/csharp/Iggy_SDK/Utils/DurationHelpers.cs   |  60 ++++++
 .../UtilityTests/DurationHelperTests.cs            | 231 +++++++++++++++++++++
 .../{compression_algorithm.go => version.go}       |   9 +-
 foreign/java/build.gradle.kts                      |  39 ++++
 .../kotlin/iggy.java-common-conventions.gradle.kts |  31 +++
 foreign/java/gradle/libs.versions.toml             |   1 +
 .../org/apache/iggy/serde/BytesSerializer.java     |   3 +-
 scripts/extract-version.sh                         |  22 +-
 92 files changed, 1807 insertions(+), 462 deletions(-)
 rename core/{server/src/streaming => 
common/src}/deduplication/message_deduplicator.rs (96%)
 copy core/{binary_protocol/src/cli/binary_context => 
common/src/deduplication}/mod.rs (91%)
 rename core/{server/src/streaming/segments/indexes => 
common/src/types/message}/indexes_mut.rs (99%)
 rename core/{server/src/streaming/segments/types => 
common/src/types/message}/message_header_view_mut.rs (99%)
 rename core/{server/src/streaming/segments/types => 
common/src/types/message}/message_view_mut.rs (95%)
 rename core/{server/src/streaming/segments/types => 
common/src/types/message}/messages_batch_mut.rs (99%)
 rename core/{server/src/streaming/segments/types => 
common/src/types/message}/messages_batch_set.rs (97%)
 copy core/{connectors/sdk/src/decoders/raw.rs => 
common/src/types/message/poll_metadata.rs} (74%)
 rename core/{server/src/streaming => common/src}/utils/random_id.rs (100%)
 copy core/{bench/dashboard/shared => simulator}/Cargo.toml (73%)
 create mode 100644 core/simulator/src/bus.rs
 create mode 100644 core/simulator/src/client.rs
 create mode 100644 core/simulator/src/deps.rs
 create mode 100644 core/simulator/src/lib.rs
 create mode 100644 core/simulator/src/main.rs
 create mode 100644 core/simulator/src/replica.rs
 copy foreign/csharp/{Iggy_SDK/Contracts/Http/CreateTopicRequest.cs => 
Iggy_SDK.Tests.Integration/Models/CreateTestTopic.cs} (86%)
 copy foreign/csharp/{Iggy_SDK/Contracts/Http/UpdateTopicRequest.cs => 
Iggy_SDK.Tests.Integration/Models/UpdateTestTopic.cs} (89%)
 copy foreign/csharp/Iggy_SDK/JsonConverters/{DateTimeOffsetConverter.cs => 
TimeSpanConverter.cs} (66%)
 create mode 100644 foreign/csharp/Iggy_SDK/Utils/DurationHelpers.cs
 create mode 100644 
foreign/csharp/Iggy_SDK_Tests/UtilityTests/DurationHelperTests.cs
 copy foreign/go/contracts/{compression_algorithm.go => version.go} (81%)

Reply via email to