Commit Graph

279 Commits

Author SHA1 Message Date
buildmaster
0bfbaba6c1 Update SNAPSHOT to 3.0.12.RELEASE 2020-11-23 10:14:21 +00:00
Oleg Zhurakousky
a367bd772e Update POMs with BUILD-SNAPSHOT 2020-11-09 15:49:13 +01:00
buildmaster
a7aa3432b7 Bumping versions to 3.0.12.SNAPSHOT after release 2020-11-06 11:38:28 +00:00
buildmaster
930a673711 Going back to snapshots 2020-11-06 11:38:27 +00:00
buildmaster
ea7fe2092e Update SNAPSHOT to 3.0.11.RELEASE 2020-11-06 11:28:50 +00:00
Oleg Zhurakousky
2ad5c84241 Fix POMs 2020-09-21 15:37:36 +02:00
Oleg Zhurakousky
8a87f08525 GH-578 Fix FunctionRegistration lookup
The root of the issue was in implementation of  equals() and hashCode() of FunctionInvocationWrapper

Resolves #578
2020-09-21 15:24:59 +02:00
buildmaster
42e7e9ddfb Bumping versions to 3.0.11.SNAPSHOT after release 2020-08-28 10:07:25 +00:00
buildmaster
5e494e2b31 Going back to snapshots 2020-08-28 10:07:24 +00:00
buildmaster
871588fb06 Update SNAPSHOT to 3.0.10.RELEASE 2020-08-28 09:56:39 +00:00
Olga Maciaszek-Sharma
fb07b2e099 Fix artifact version. 2020-08-03 14:02:11 +02:00
buildmaster
60cba78a5c Bumping versions to 3.0.10.SNAPSHOT after release 2020-07-31 16:57:55 +00:00
buildmaster
a71a9d210d Going back to snapshots 2020-07-31 16:57:55 +00:00
buildmaster
f7e0dcf20c Update SNAPSHOT to 3.0.9.RELEASE 2020-07-31 16:46:41 +00:00
Oleg Zhurakousky
8ef8190681 Fix POMs version 2020-06-22 16:45:21 +02:00
buildmaster
38216f5502 Bumping versions to 3.0.9.SNAPSHOT after release 2020-06-22 07:40:22 +00:00
buildmaster
a07c402509 Going back to snapshots 2020-06-22 07:40:22 +00:00
buildmaster
13b009fb3c Update SNAPSHOT to 3.0.8.RELEASE 2020-06-22 07:30:59 +00:00
Oleg Zhurakousky
56b026597b GH-500 Fix NPE in FunctionEndpointInitializer
This ensures that posting to the consumer does not result in NPE given that there is no body

Resolves #500
2020-06-10 19:45:26 +02:00
buildmaster
e67b8be21a Bumping versions to 3.0.8.BUILD-SNAPSHOT after release 2020-05-28 10:03:11 +00:00
buildmaster
a39255c748 Going back to snapshots 2020-05-28 10:03:10 +00:00
buildmaster
ec5d929a65 Update SNAPSHOT to 3.0.7.RELEASE 2020-05-28 09:45:34 +00:00
Oleg Zhurakousky
e3ee776c04 Re-enable ignored tests 2020-05-05 14:51:43 +02:00
buildmaster
96f1931a4b Bumping versions to 3.0.7.BUILD-SNAPSHOT after release 2020-04-22 14:39:04 +00:00
buildmaster
6153554d78 Going back to snapshots 2020-04-22 14:39:04 +00:00
buildmaster
e9282980f7 Update SNAPSHOT to 3.0.6.RELEASE 2020-04-22 14:22:27 +00:00
buildmaster
9ca0053cbb Bumping versions to 3.0.6.BUILD-SNAPSHOT after release 2020-04-21 16:58:09 +00:00
buildmaster
612b863417 Going back to snapshots 2020-04-21 16:58:09 +00:00
buildmaster
1d217827b5 Update SNAPSHOT to 3.0.5.RELEASE 2020-04-21 16:44:39 +00:00
Oleg Zhurakousky
4ffb25a3b5 Enhance test to validate HTTP header propagation 2020-04-21 14:14:21 +02:00
Oleg Zhurakousky
defd2b962a Add propagation of HTTP headers
Polish function composition logic
2020-04-20 18:18:02 +02:00
Oleg Zhurakousky
2ca5282019 Remove attempt to convert incoming type to target type from Requestprocessor
This fix effectively forces all type conversion happen in function catalog
2020-04-20 18:17:54 +02:00
Oleg Zhurakousky
7d66672104 GH-499,498 Add support for SupplierExporter to control output content-type
- Add 'contentType' property to ExporterProperties to assist SupplierExporter with delegating it to function catalog
- Add additional logging and testing
- Change JsonMapper to abstract class providing special handling of conversion of Json Sting to byte[]
2020-04-20 18:17:23 +02:00
Oleg Zhurakousky
f1c15bf950 Extract common code from BeanFactoryAwareFunctionRegistry
. . . to ensure that we can have the version of FunctionRegistry that is not dependent on BeanFactory.
2020-04-20 18:16:58 +02:00
buildmaster
7e03ea0f50 Bumping versions to 3.0.5.BUILD-SNAPSHOT after release 2020-04-07 17:57:04 +00:00
buildmaster
4d56b8e65b Going back to snapshots 2020-04-07 17:57:04 +00:00
buildmaster
0b3fdf8dfc Update SNAPSHOT to 3.0.4.RELEASE 2020-04-07 17:39:09 +00:00
Oleg Zhurakousky
949f5fb023 GH-466 Fix SupplierExporter to avoid starting if Supplier is not present
Added condition to the start method of the SupplierExporter to prevent it from starting for cases where there are no Suppliers in catalog

Resolves #466
2020-03-31 16:40:31 +02:00
Oleg Zhurakousky
21d68ff3c8 GH-475 Fix support for Flux<List> type conversion
At the moment support is rudimentary but given that BeanFactoryAwareFunctionRegistry provides all the necessary type conversion functionality the true fix should consider utilizing it.

Resolves #475
2020-03-31 14:46:37 +02:00
Oleg Zhurakousky
1d784c199d GH-467 Added initial support for GET method to FunctionEndpointInitializer
At the moment support is rudimentary as it does not include any type conversion, but neither does POST so it is consistent.
Given that BeanFactoryAwareFunctionRegistry provides all that functionality already perhaps the proper fix with regard to converter would be to use it or part of it in place of InMemoryFunctionCatalog currently used.

Resolves #467
2020-03-31 14:14:33 +02:00
Oleg Zhurakousky
86d12f3a84 GH-473 Fix type discovery for generic parameters
Resolves #473
2020-03-30 10:56:00 +02:00
buildmaster
87dd0dd113 Bumping versions to 3.0.4.BUILD-SNAPSHOT after release 2020-03-03 15:23:14 +00:00
buildmaster
568fd9affd Going back to snapshots 2020-03-03 15:23:14 +00:00
buildmaster
340a5cc3f3 Update SNAPSHOT to 3.0.3.RELEASE 2020-03-03 14:53:54 +00:00
buildmaster
9eb98bd545 Bumping versions to 3.0.3.BUILD-SNAPSHOT after release 2020-02-12 17:43:00 +00:00
buildmaster
28baf6fc04 Going back to snapshots 2020-02-12 17:42:59 +00:00
buildmaster
36a4e69a31 Update SNAPSHOT to 3.0.2.RELEASE 2020-02-12 17:31:16 +00:00
Oleg Zhurakousky
b71d012d02 Revert "Update SNAPSHOT to 3.0.2.RELEASE"
This reverts commit 669e8eaabe.
2020-02-12 18:22:55 +01:00
Oleg Zhurakousky
a899c8365e Revert "Going back to snapshots"
This reverts commit d6affef18e.
2020-02-12 18:22:48 +01:00
Oleg Zhurakousky
a460d2f6ed Revert "Bumping versions to 3.0.3.BUILD-SNAPSHOT after release"
This reverts commit 8e8df4206d.
2020-02-12 18:22:40 +01:00