This is an automated email from the ASF dual-hosted git repository.
ppkarwasz pushed a change to branch handle-duplicates
in repository https://gitbox.apache.org/repos/asf/logging-flume-mongodb.git
discard 5e12f3a handle duplicate events
add 66cc4a8 Bootstrap build and release infrastructure (#3)
add 199e0ee Remove dummy `ubuntu (latest)` workflow (#4)
add 09d6432 handle duplicate events
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 (5e12f3a)
\
N -- N -- N refs/heads/handle-duplicates (09d6432)
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:
.asf.yaml | 7 +-
.gitattributes | 23 ++
.github/dependabot.yaml | 68 +++++
.github/workflows/analyze-dependabot.yaml | 37 +++
.github/workflows/build.yaml | 88 ++++++
.github/workflows/codeql-analysis.yml | 84 ++++++
.github/workflows/process-dependabot.yaml | 48 ++++
.gitignore | 53 ++++
.mvn/maven.config | 1 +
.mvn/wrapper/maven-wrapper.properties | 18 ++
CHANGELOG | 7 -
RELEASE-NOTES.txt | 27 --
checkstyle-header.txt | 16 --
findbugs-exclude-filter.xml | 31 ---
flume-mongodb-sink/.flattened-pom.xml | 138 ---------
flume-mongodb-sink/pom.xml | 17 +-
.../apache/flume/sink/mongodb/TestMongoDbSink.java | 28 +-
mvnw | 308 +++++++++++++++++++++
mvnw.cmd | 205 ++++++++++++++
pom.xml | 228 ++++-----------
src/changelog/.2.x.x/.release-notes.adoc.ftl | 25 ++
src/changelog/.2.x.x/add_mongodb_sink.xml | 7 +
src/changelog/.changelog.adoc.ftl | 27 ++
src/changelog/.index.adoc.ftl | 42 +++
24 files changed, 1123 insertions(+), 410 deletions(-)
create mode 100644 .gitattributes
create mode 100644 .github/dependabot.yaml
create mode 100644 .github/workflows/analyze-dependabot.yaml
create mode 100644 .github/workflows/build.yaml
create mode 100644 .github/workflows/codeql-analysis.yml
create mode 100644 .github/workflows/process-dependabot.yaml
create mode 100644 .gitignore
create mode 100644 .mvn/maven.config
create mode 100644 .mvn/wrapper/maven-wrapper.properties
delete mode 100644 CHANGELOG
delete mode 100644 RELEASE-NOTES.txt
delete mode 100644 checkstyle-header.txt
delete mode 100644 findbugs-exclude-filter.xml
delete mode 100644 flume-mongodb-sink/.flattened-pom.xml
create mode 100755 mvnw
create mode 100644 mvnw.cmd
create mode 100644 src/changelog/.2.x.x/.release-notes.adoc.ftl
create mode 100644 src/changelog/.2.x.x/add_mongodb_sink.xml
create mode 100644 src/changelog/.changelog.adoc.ftl
create mode 100644 src/changelog/.index.adoc.ftl