exceptionfactory
87c583042e
NIFI-10941 Removed TestNG references
...
- Replaced TestNG assertions with JUnit 5
- Excluded testng transitive dependencies from groovy-all
- Added testng exclusion to Maven Enforcer configuration
Signed-off-by: Pierre Villard <pierre.villard.fr@gmail.com>
This closes #6753 .
2022-12-05 13:11:59 +01:00
Mark Payne
e1c8c96111
NIFI-10937, NIFI-10938, NIFI-10939: When restoring flow from XML, properly parse XML for registry clients, looking for 'id' tag instead of 'identifier' tag. Fixed typo in error message about Reporting Task for Registry Clients. Updated StandardFlowComparator so that we compare sub-process groups' contents only if the Flow Coordinates are different by more than their version
...
Signed-off-by: Nathan Gough <thenatog@gmail.com>
This closes #6752 .
2022-12-02 18:37:47 -05:00
Mark Payne
2473683ce5
NIFI-10918: When fetching a flow from a Flow Registry, if it references any 'internal versioned flows' instead of requiring that we have a client configured for the appropriate URL, attempt to fetch the flow from each client. We will start with the clients that do report that they can handle the URL but will try others as well. As soon as we successfully fetch the flow, we stop.
...
NIFI-10918: Fixed checkstyle violations
This closes #6736
Signed-off-by: Bence Simon <bsimon@apache.org>
2022-12-02 14:24:40 +01:00
simonbence
570fc7f1fa
NIFI-10914 Adjusting input check for loading nested versioned flows ( #6741 )
2022-12-01 11:09:51 -05:00
exceptionfactory
de296b5e65
NIFI-10897 Replaced Spring Security Base64 with java.util.Base64
...
This closes #6728
Signed-off-by: Mike Thomsen <mthomsen@apache.org>
2022-11-29 12:20:16 -05:00
exceptionfactory
d55fb91b0f
NIFI-10871 Skipped CSRF processing for replicated HTTP requests
...
- Updated Security Filter Configuration to avoid unnecessary CSRF Request Token generation for requests replicated between cluster nodes
This closes #6715 .
Signed-off-by: Tamas Palfy <tpalfy@apache.org>
2022-11-29 17:19:18 +01:00
dan-s1
e8d554d9b4
NIFI-10876 Converted some nifi-framework tests from JUnit 4 to JUnit 5
...
This closes #6720
Signed-off-by: David Handermann <exceptionfactory@apache.org>
2022-11-28 14:47:17 -06:00
Bence Simon
df21478297
NIFI-10874 Fixed issue with multiple levels of versioned flows
...
This closes #6719
Signed-off-by: David Handermann <exceptionfactory@apache.org>
2022-11-28 10:44:12 -06:00
Joe Witt
75e7c9e47c
NIFI-10854-RC1 prepare for next development iteration
2022-11-22 19:22:47 -07:00
Joe Witt
ec87bf93ad
NIFI-10854-RC1 prepare release nifi-1.19.0-RC1
2022-11-22 19:22:45 -07:00
Shane Ardell
aa6f6dd61d
NIFI-10814: Display description for selected flow ( #6693 )
...
* display description for selected flow
* NIFI-10814: add border when content overflows and increase height
* NIFI-10814: add padding to description
* NIFI-10814: remove duplicate CSS property from declaration block
* NIFI-10814: a few more CSS tweaks
This closes #6693
2022-11-22 17:01:38 -05:00
Paul Grey
620b7365c2
NIFI-10851 Corrected removal of Controller Service references on property updates
...
- Convert unit test to JUnit 5
This closes #6695
Signed-off-by: David Handermann <exceptionfactory@apache.org>
2022-11-21 16:45:54 -06:00
aksharau
a861bab34d
NIFI-9920 Fetching all bulletins of a process group on update process group ( #6335 )
2022-11-21 11:24:47 -05:00
Bence Simon
4fe65f1b81
NIFI-10828 Adding new REST API endpoint for exposing versioned flow details
...
NIFI-10828 Fixing documentation
Signed-off-by: Matthew Burgess <mattyb149@apache.org>
This closes #6674
2022-11-20 17:05:50 -05:00
krisztina-zsihovszki
dfdd86cff7
NIFI-10793 Comment is not populated when process group is created via API
...
This closes #6653 .
Signed-off-by: Tamas Palfy <tpalfy@apache.org>
2022-11-17 16:04:46 +01:00
sedadgn
009d641576
NIFI-10787 - Cannot commit flows to nifi registry after updating our nifi release to 1.18.0
...
NifiRegistryFlowRegistryClient defines the PropertyDescriptor PROPERTY_URL name as small case "url". The map bases on the name property of the PropertyDescriptor object. Here searching with uppercase value of "URL" causes the map lookup to fail and cause a NPE later on. Therefore, it is changed as "url"
NIFI-10787 - Added constant for property descriptor "url" in NiFiRegistryFlowMapper to make it more clear.
NIFI-10787 - Added change to unit test.
NIFI-10787 - Updated unit test to validate that NiFi registry url is being set and retrieved.
Signed-off-by: Nathan Gough <thenatog@gmail.com>
This closes #6655 .
2022-11-16 19:07:15 -05:00
Nathan Gough
1b8cd8349b
NIFI-10703 - Updated VersionedDataflow to support MaxEventDrivenThreadCount
...
NIFI-10703 - Also setting the maxEventDrivenThreadCount on the controller when using a versioned flow.
NIFI-10703 - Corrected to use getMaxEventDrivenThreadCount(), set a default value for event driven thread count in VersionedDataflow
NIFI-10703 - Updated log message for setMaxThreadCount in FlowController.java
NIFI-10703 - Updated default value for maxEventDrivenThreadCount
NIFI-10703 - Set private for DEFAULT_MAX_EVENT_DRIVEN_THREAD_COUNT
Signed-off-by: Matthew Burgess <mattyb149@apache.org>
This closes #6638
2022-11-15 21:08:48 -05:00
Mark Payne
bda624823b
NIFI-10817: Moved the calls in StandardProcessSession to 'resetState()' and 'acknowledgeRecords()' from the outer commit(boolean) to the inner commit(Checkpoint, boolean). By moving the call here, the logic of StandardProcessSession is unaffected. But the StatelessProcessSession that inherits from it now has the benefit of having the state cleaned up when calling super.commit(Checkpoint, boolean).
...
Signed-off-by: Matthew Burgess <mattyb149@apache.org>
This closes #6663
2022-11-15 15:47:32 -05:00
Paul Grey
25b6e2c9cd
NIFI-10815 Fixed initial internal yield duration when processor created
...
This closes #6664
Signed-off-by: David Handermann <exceptionfactory@apache.org>
2022-11-15 14:14:50 -06:00
Bryan Bende
7de74ad3f0
NIFI-10802 Apply bundle updates before properties in component synchronizer ( #6654 )
...
This closes #6654
2022-11-14 09:09:44 -05:00
Bryan Bende
9c21e26e63
NIFI-10788 Ensure proposed service config is applied when component synchronizer adds a new service ( #6640 )
...
This closes #6640
2022-11-09 15:04:19 -05:00
Bryan Bende
83d4e5bd04
NIFI-10771 Add SINGLE_BATCH_PER_NODE to allowable values for flow file concurrency in ProcessGroupDTO
...
Signed-off-by: Matthew Burgess <mattyb149@apache.org>
This closes #6627
2022-11-07 13:58:49 -05:00
Joe Gresock
c6dde491ec
NIFI-10770: Removing fetch parameters on startup
...
Signed-off-by: Matthew Burgess <mattyb149@apache.org>
This closes #6626
2022-11-07 13:46:01 -05:00
Shane Ardell
60a8b3bc5f
NIFI-10698: Add filtering options to summary table ( #6610 )
...
* NIFI-10698: Add filtering options to summary table
* NIFI-10698: fix checkbox spacing and alignment
* NIFI-10698: fix spacing between dropdowns
Merged #6610 into main.
2022-11-07 10:34:42 -08:00
exceptionfactory
4f80233575
NIFI-10733 Upgraded Curator from 5.3.0 to 5.4.0
...
Signed-off-by: Matthew Burgess <mattyb149@apache.org>
This closes #6621
2022-11-07 10:00:06 -05:00
Chris Sampson
2acfd1e496
NIFI-9398 add verification to ElasticSearchClientService (with integration tests) and Elasticsearch REST API processors
...
NIFI-9398 processor verification integration-tests for nifi-elasticsearch-restapi-processors using common nifi-elasticsearch-test-utils refactored from nifi-elasticsearch-client-service
NIFI-9398 fail index exists verification for Elasticsearch processors whose operations would not create the index if it doesn't already exist
This closes #6544
Signed-off-by: Mike Thomsen <mthomsen@apache.org>
2022-11-05 18:17:13 -04:00
Mark Bean
61e1a37d2e
NIFI-10228: parse json flow using instanceIdentifier as the UUID
...
Signed-off-by: Matthew Burgess <mattyb149@apache.org>
This closes #6217
2022-11-04 13:09:29 -04:00
Ferenc Erdei
86acde2fe2
NIFI-10750 Move C2NiFiClientService to minifi-framework
...
Signed-off-by: Csaba Bejan <bejan.csaba@gmail.com>
This closes #6612 .
2022-11-04 08:53:53 +01:00
Matt Gilman
ec22504d6e
NIFI-10709 Showed log in link on logout complete page
...
- Fixing issue remove token when logging out from the canvas.
This closes #6592
Signed-off-by: David Handermann <exceptionfactory@apache.org>
2022-11-02 10:28:18 -05:00
Nathan Gough
c40639a51f
NIFI-10332 Selected OIDC Logout method using Discovery URLs
...
This closes #6594
Signed-off-by: David Handermann <exceptionfactory@apache.org>
2022-11-01 21:33:26 -05:00
priyanka-28
6f65cd1f32
NIFI-10629 Updated TestJsonEntitySerializer with sorted properties
...
This closes #6515
Signed-off-by: David Handermann <exceptionfactory@apache.org>
2022-10-31 15:09:04 -05:00
mr1716
8d2789dbc4
NIFI-10725 Update ICU4J to 72.1
...
This closes #6603
Signed-off-by: Mike Thomsen <mthomsen@apache.org>
2022-10-30 08:44:48 -04:00
M Tien
e862a02df6
NIFI-10715: improve tooltips in parameter providers ( #6598 )
...
* NIFI-10715: clean up tooltips in parameter providers
* more clean up
This closes #6598
2022-10-28 16:23:18 -04:00
Paul Grey
61ccb23b47
NIFI-10704 - include API name of properties in processor documentation
...
Signed-off-by: Matthew Burgess <mattyb149@apache.org>
This closes #6586
2022-10-28 14:13:16 -04:00
Ferenc Kis
65558accda
NIFI-10679 MiNiFi C2 Update Asset Command
...
Signed-off-by: Csaba Bejan <bejan.csaba@gmail.com>
This closes #6583 .
2022-10-28 20:09:15 +02:00
M Tien
be64f5560c
NIFI-10603: fix showing the referencing components border in the fetch parameters dialog ( #6491 )
...
This closes #6491
2022-10-27 13:45:24 -04:00
Matt Gilman
b05bd988b6
NIFI-10700:
...
- Only restart ports if their scheduledState is Running.
- Adding unit tests.
- Fixing unit test to properly verify Port isn't restarted.
Signed-off-by: Nathan Gough <thenatog@gmail.com>
This closes #6582 .
2022-10-26 16:31:27 -04:00
Mark Payne
d390a0becf
NIFI-10673: When a component is added to a ProcessGroup, we had a method called ensureUniqueVersionControlId but the method only took into accounts in that Process Group. Updated methods to now consider components in any Process Group that is part of the same Versioned Flow. Also added system test to verify the problem and the fix. Added Toolkit clients and additional methods as necessary in order to implement system tests
...
NIFI-10673: Addresed checkstyle issue
NIFI-10673: Removed TODO comment
Signed-off-by: Matthew Burgess <mattyb149@apache.org>
2022-10-26 14:38:01 -04:00
Denes Arvay
3ed87a2982
NIFI-10594 Render empty lines in Labels
...
This closes #6519
Signed-off-by: David Handermann <exceptionfactory@apache.org>
2022-10-25 09:39:29 -05:00
UcanInfosec
3d1bf497a3
NIFI-10686 Upgraded questdb-core from 6.5.2 to 6.5.3
...
This closes #6570
Signed-off-by: David Handermann <exceptionfactory@apache.org>
2022-10-25 09:22:26 -05:00
mtien
643b6a6c1d
NIFI-10689 Fixed Parameter Provider Name encoding in context dialog
...
This closes #6576
Signed-off-by: David Handermann <exceptionfactory@apache.org>
2022-10-25 09:16:36 -05:00
Timea Barna
7c33516aee
NIFI-9437 Flowfile Expiration cannot exceed 24 days
...
NIFI-9437 Addressing review comments, correcting setter in StatelessFlowQueue class
Signed-off-by: Nathan Gough <thenatog@gmail.com>
This closes #6558 .
2022-10-24 14:46:56 -04:00
Malthe Borch
831a11d0b5
NIFI-7823 Added groups mapping from OIDC token claim
...
This closes #6454
Signed-off-by: David Handermann <exceptionfactory@apache.org>
2022-10-24 09:12:24 -05:00
markap14
d64574b565
NIFI-10682: When determining effective property values, ensure that we always use the up-to-date version of Property Descriptors ( #6567 )
...
This closes #6567
2022-10-24 09:59:16 -04:00
Nandor Soma Abonyi
2049268372
NIFI-10668 Persist proxy password in remote process group ( #6557 )
...
* NIFI-10668 Persist proxy password in remote process group
2022-10-21 11:44:12 -04:00
Joe Witt
c155d29658
NIFI-10614 Upgraded Bouncy Castle from 1.70 to 1.71
...
- Blocked Bouncy Castle jdk15on dependencies
- Forced jdk18on dependencies and validated across entire build
This closes #6498
Signed-off-by: David Handermann <exceptionfactory@apache.org>
2022-10-20 19:35:02 -05:00
markap14
e83e3eb849
NIFI-10663: When ProcessorNode.stop() is called, it returns a Future. That future, however, may be completed when the processor is fully stopped or whenever it becomes stopping. Fixed this behavior by only completing the future whenever the processor has fully stopped. Also addressed an issue in the synchronizer in which we did not stop a processor when it had a state of STARTING. ( #6561 )
...
This closes #6561
2022-10-20 15:42:37 -04:00
dependabot[bot]
531a9de28f
NIFI-10669 Upgraded Jettison from 1.3.7 to 1.5.1
...
- Upgraded Jettison in nifi-framework-bundle
- Upgraded Jettison in nifi-registry-ranger
- Upgraded Jettison in nifi-spark-bundle
This closes #6548
This closes #6549
This closes #6550
Signed-off-by: David Handermann <exceptionfactory@apache.org>
2022-10-19 09:45:49 -05:00
Joe Gresock
2d7f86b265
NIFI-10641: Resolving typo on ParameterProvider warning message
...
This closes #6527
Signed-off-by: David Handermann <exceptionfactory@apache.org>
2022-10-15 09:05:57 -05:00
exceptionfactory
0dc02e26d2
NIFI-10648 Upgraded Apache Commons Text to 1.10.0
...
- Added org.apache.commons.text.version property in root Maven configuration
- Removed direct version references in favor of managed dependency version
Signed-off-by: Nathan Gough <thenatog@gmail.com>
This closes #6531 .
2022-10-14 14:07:23 -04:00