Oleg Zhurakousky
fd8fc886df
Extract uri into message headers
2021-07-06 07:38:26 +02:00
Oleg Zhurakousky
1e69d6a056
GH-708 Consolidate web request processing for Flux and MVC endpoints"
2021-06-17 20:38:06 +02:00
Oleg Zhurakousky
189c74d5cf
GH-708 Removed RequestProcessor from Flux FunctionController
...
Resolves #708
polish
2021-06-16 17:09:52 +02:00
Oleg Zhurakousky
b71aa90ebd
GH-708 Removed RequestProcessor from MVC FunctionController
2021-06-15 19:53:02 +02:00
Oleg Zhurakousky
5a625b4ad0
GH-708 Initial refactoring and consolidation of s-c-function-web MVC part.
2021-06-15 15:15:26 +02:00
buildmaster
7af4275f4e
Bumping versions to 3.1.4-SNAPSHOT after release
2021-05-26 13:50:55 +00:00
buildmaster
6f0a1065b2
Going back to snapshots
2021-05-26 13:50:54 +00:00
buildmaster
e4766dd2c8
Update SNAPSHOT to 3.1.3
2021-05-26 13:46:32 +00:00
Oleg Zhurakousky
b8b04eb377
GH-668 Initial NPE fix in RequestProcessor when no path argument provided
2021-03-25 14:28:18 +01:00
buildmaster
dd00e15102
Bumping versions to 3.1.3-SNAPSHOT after release
2021-03-16 13:20:48 +00:00
buildmaster
395097bc63
Going back to snapshots
2021-03-16 13:20:47 +00:00
buildmaster
a27e3620a3
Update SNAPSHOT to 3.1.2
2021-03-16 13:17:55 +00:00
Adrien Poupard
a70564eb82
Add Kotlin suspend function support
...
Use suspendCoroutineUninterceptedOrReturn to avoid using not fully implemented Function2.reflect()
Mapping of Function, Consumer and Supplier to kotlin suspend flow lambda
Fix MR review
Resolves #655
2021-03-02 08:51:00 +01:00
Oleg Zhurakousky
a24713e53b
GH-649 Ignire factory bean names during discovery of a function
...
Resolves #649
2021-02-15 17:53:12 +01:00
buildmaster
36de6289ba
Bumping versions
2021-02-01 18:56:47 +00:00
buildmaster
44d583493a
Bumping versions
2021-01-27 18:56:44 +00:00
buildmaster
d6fb9cfaf8
Bumping versions to 3.1.2-SNAPSHOT after release
2021-01-27 17:16:38 +00:00
buildmaster
329a805fcf
Going back to snapshots
2021-01-27 17:16:37 +00:00
buildmaster
047f5f95cb
Update SNAPSHOT to 3.1.1
2021-01-27 17:11:29 +00:00
Oleg Zhurakousky
099671bb3a
Revert "Bumping versions"
...
This reverts commit 1356831897 .
2021-01-14 12:36:38 +01:00
buildmaster
1356831897
Bumping versions
2021-01-13 18:56:32 +00:00
Oleg Zhurakousky
ffbc7fec78
Revert "Bumping versions"
...
This reverts commit da075793f6 .
2021-01-11 10:44:04 +01:00
buildmaster
da075793f6
Bumping versions
2020-12-21 18:56:08 +00:00
Oleg Zhurakousky
fde7da34d1
Fix snapshot versions
2020-12-21 18:04:32 +01:00
buildmaster
48605a9ac3
Bumping versions to 3.1.1.SNAPSHOT after release
2020-12-21 11:57:51 +00:00
buildmaster
d7fc2a251e
Going back to snapshots
2020-12-21 11:57:50 +00:00
buildmaster
902c9f94e0
Update SNAPSHOT to 3.1.0
2020-12-21 11:54:46 +00:00
Oleg Zhurakousky
8ece3d3083
Add stream (kafka, Rabbit) and Rsocket examples for Cloud Event
2020-12-18 16:44:29 +01:00
buildmaster
7675a9da27
Going back to snapshots
2020-12-11 13:43:19 +00:00
buildmaster
00f1a8d711
Update SNAPSHOT to 3.1.0-RC1
2020-12-11 13:41:19 +00:00
Oleg Zhurakousky
306da4248a
Restructure Cloud Events support to optionally support Cloud Events SDK
2020-12-01 22:12:34 +01:00
Dave Syer
1e65ff7132
Refactor some lambdas to enable native image building
...
Without this change a function with a Tomcat wrapper cannot be compiled
to a native image (or it can but it fails at runtime) because there
are lambda$$$ methods in the byte code that refer to missing types.
2020-11-25 11:00:08 +00:00
Dave Syer
685f1a1b8f
Better test of whether webflux is present
2020-11-20 09:17:15 +00:00
Dave Syer
a1e9b6b2c1
Move class present check to static initializer
...
Helps with native images
2020-11-19 11:44:51 +00:00
buildmaster
ccbcb11409
Going back to snapshots
2020-11-17 16:13:28 +00:00
buildmaster
e4ad754beb
Update SNAPSHOT to 3.1.0-M5
2020-11-17 16:11:20 +00:00
Oleg Zhurakousky
0a413331e8
Polishing cleanup and javadoc
2020-11-17 08:01:21 +01:00
Oleg Zhurakousky
ac54a83e09
Clean up and simplifications around CloudEvent processing
...
This commit effectively a merge of work with #607 and simplifies the following
- CloudEventAttributesProvider now provides CloudEventAttributes initialized with defaults to be set by the user
- In HTTP RequestProcessor the logic of sanitizing headers was improved to ensure that correct prefix is applied
Resolves #607
2020-11-16 13:40:53 +01:00
Oleg Zhurakousky
7ddbbe52cd
Fix HTTP header propagation logic
...
Related to GH-422 and GH-606
2020-11-13 17:47:41 +01:00
Oleg Zhurakousky
311649c312
Fix CloudEvent prefix and fix the name of CloudEventAttributesProvider.java
2020-11-13 16:07:33 +01:00
Oleg Zhurakousky
f7c862ce9b
remove commented code
2020-11-09 19:34:14 +01:00
Oleg Zhurakousky
70076c8653
GH-597 Add support for handling MultipartFile(s)
...
This initial fix ensures that functions can process single MultipartFile as well as multiple.
Resolves #597
2020-11-09 19:27:01 +01:00
Oleg Zhurakousky
dd0f70bc8e
Simplify logic around getting item type of a function type
2020-11-04 11:29:01 +01:00
Oleg Zhurakousky
1ed99667bb
Disable 'sentencesAcceptSse' test as it started to fail due to some reactor changes
2020-11-03 14:03:39 +01:00
Oleg Zhurakousky
9a715be835
Initial refactoring and simplificatioin of web module
2020-11-03 13:46:52 +01:00
Oleg Zhurakousky
9b1206f6af
Fix SmartCompositeMessageConverter to ensure it properly injects contentType
...
Initial refactoring web - test pass
2020-11-03 13:44:45 +01:00
Oleg Zhurakousky
b8d462678a
Deprecate and remove all usages of FunctionInspector
2020-10-19 18:11:11 +02:00
Oleg Zhurakousky
10b1f808ba
Consolidate isMessage() operation
2020-10-19 14:57:55 +02:00
Oleg Zhurakousky
14918ebf16
Clean up FunctionTypeUtils
2020-10-19 14:44:37 +02:00
Oleg Zhurakousky
72f05fc591
Refactor FunctionCatalog implementation
2020-10-16 17:59:06 +02:00