This is an automated email from the ASF dual-hosted git repository.
dan-s1 pushed a change to branch NIFI-16004
in repository https://gitbox.apache.org/repos/asf/nifi-api.git
discard eb759fc NIFI-16004 Updated Maven version to build with from 3.9.12 to
3.9.14 to match the version used by the Maven wrapper.
add 97ed123 NIFI-16033 Add AGENTS.md and SECURITY.md for security-model
discoverability (#97)
add 53c7236 NIFI-16038: Added setValueReference/setValueReferences
methods to ConnectorMigrationContext (#99)
add ef1d975 NIFI-16045: Initial API for Processor / Connector Backlog
(#98)
add 9d6c8ba NIFI-16070: Add nifi-api support for migrateProperties to
Connectors. (#102)
add b377b75 NIFI-16063 Added PropertyProtectionType for Secrets used in
Connector Properties (#101)
add 8cd308b NIFI-16048 Added Synchronization Interval property for Flow
Registry Clients (#100)
add 00f6973 NIFI-16022 Fixed StandardResourceReferenceFactory
disambiguation for File path and block comments (#96)
add d1ec0a8 NIFI-16004 Updated Maven version to build with from 3.9.12 to
3.9.14 to match the version used by the Maven wrapper.
add f737bfd NIFI-16004 Upgraded to use Maven 3.9.16
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 (eb759fc)
\
N -- N -- N refs/heads/NIFI-16004 (f737bfd)
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:
.mvn/wrapper/maven-wrapper.properties | 2 +-
AGENTS.md | 15 +
README.md | 2 +-
SECURITY.md | 36 ++
.../java/org/apache/nifi/components/Backlog.java | 437 +++++++++++++++++++++
.../nifi/components/BacklogReportingException.java | 53 +++
.../connector/BacklogReportingConnector.java | 102 +++++
.../nifi/components/connector/Connector.java | 31 +-
...rValueType.java => PropertyProtectionType.java} | 20 +-
.../apache/nifi/components/connector/Secret.java | 11 +
.../connector/components/ConnectionFacade.java | 14 +
.../connector/components/ProcessorFacade.java | 38 ++
.../connector/components/QueueSnapshot.java | 68 ++++
.../migration/ConnectorMigrationContext.java | 30 ++
.../resource/StandardResourceReferenceFactory.java | 2 +-
.../migration/ConnectorPropertyConfiguration.java | 80 ++++
.../ConnectorStepPropertyConfiguration.java | 153 ++++++++
.../nifi/processor/BacklogReportingProcessor.java | 97 +++++
.../registry/flow/AbstractFlowRegistryClient.java | 18 +
.../org/apache/nifi/components/TestBacklog.java | 144 +++++++
.../TestStandardResourceReferenceFactory.java | 40 +-
21 files changed, 1369 insertions(+), 24 deletions(-)
create mode 100644 AGENTS.md
create mode 100644 SECURITY.md
create mode 100644 src/main/java/org/apache/nifi/components/Backlog.java
create mode 100644
src/main/java/org/apache/nifi/components/BacklogReportingException.java
create mode 100644
src/main/java/org/apache/nifi/components/connector/BacklogReportingConnector.java
copy
src/main/java/org/apache/nifi/components/connector/{ConnectorValueType.java =>
PropertyProtectionType.java} (63%)
create mode 100644
src/main/java/org/apache/nifi/components/connector/components/QueueSnapshot.java
create mode 100644
src/main/java/org/apache/nifi/migration/ConnectorPropertyConfiguration.java
create mode 100644
src/main/java/org/apache/nifi/migration/ConnectorStepPropertyConfiguration.java
create mode 100644
src/main/java/org/apache/nifi/processor/BacklogReportingProcessor.java
create mode 100644 src/test/java/org/apache/nifi/components/TestBacklog.java