buildmaster
f0f957b96a
Going back to snapshots
2018-11-19 11:23:25 +00:00
buildmaster
241652d9b8
Update SNAPSHOT to 2.0.0.RC2
2018-11-19 11:19:40 +00:00
buildmaster
b23a647aa4
Bumping versions
2018-11-16 15:20:37 +00:00
buildmaster
9cf723949b
Going back to snapshots
2018-10-29 08:19:29 +00:00
buildmaster
e2f4d0a9e5
Update SNAPSHOT to 2.0.0.RC1
2018-10-29 08:15:29 +00:00
buildmaster
435e4d0438
Going back to snapshots
2018-10-23 13:35:10 +00:00
buildmaster
0c5ad6acbd
Update SNAPSHOT to 2.0.0.M4
2018-10-23 13:31:46 +00:00
Dave Syer
ba34d4b81b
Add @FunctionalSpringBootTest and mini web server
...
User can run a minimal HTTP app using an app that is a Function
or an ApplicationContextInitializer. Can also test using
@FunctionalSpringBootTest in place of @SpringBootTest.
Add some tests and documentation for functional beans
Make server.address configurable
2018-10-22 14:26:17 +02:00
Dave Syer
4315cb1d61
SpringApplication->FunctionalSpringApplication (less confusing)
2018-10-18 09:38:27 +01:00
Dave Syer
666bc100e8
Extract functional bean definition concerns into a common class
...
SpringApplication looks like the class with the same name in Spring
Boot (and is a subclass of it), but it checks to see if the user
is asking for functional bean registrations and only used those if
it can.
2018-10-12 18:00:41 +01:00
Dave Syer
3966f378b7
Add support for application type Function in Azure
...
See #215
2018-10-12 16:53:42 +01:00
Dave Syer
37729e4583
Add support for ApplicationContextInitializer in azure adapter
2018-10-03 09:01:54 +01:00
Dave Syer
bb1c97251f
Use ApplicationContextInitializer if provided
...
An Initializer is more efficient than using @Configuration.
2018-10-02 12:07:51 +01:00
Dave Syer
022f9213d8
Revert to snapshots
2018-09-22 16:14:54 +01:00
Dave Syer
de6331054e
Update to 2.0.0.M3
2018-09-22 12:04:16 +01:00
buildmaster
8f9882a419
Going back to snapshots
2018-09-19 13:20:41 +00:00
buildmaster
43d70a4c0c
Update SNAPSHOT to 2.0.0.M2
2018-09-19 13:17:51 +00:00
Dave Syer
9016ccd969
More yellow markers
2018-09-18 13:30:37 +01:00
Dave Syer
c964dc5451
Add some logging on startup of Azure adapter
2018-09-17 11:58:38 +01:00
Dave Syer
1061c1d525
Update notes on azure adapter
2018-09-17 11:06:28 +01:00
Dave Syer
f09f750c39
Add support for different handler->function mappings in Azure
2018-09-17 11:06:17 +01:00
Dave Syer
3baaa45648
Allow Azure function apps to pass function name down to handler
2018-09-17 11:06:08 +01:00
Marcin Grzejszczak
b28e22d255
Going back to snapshots
2018-08-22 18:03:37 +02:00
Marcin Grzejszczak
aca771fb8b
Update SNAPSHOT to 2.0.0.M1
2018-08-22 17:54:29 +02:00
Dave Syer
9d1818839e
Add SupplierExporter (HTTP POST of Suppliers on startup)
...
Add throwable handling to azure base class
2018-08-14 12:57:12 +02:00
Dave Syer
d0eb012371
Make Azure function initializer a bit more flexible
2018-08-07 14:58:34 +01:00
Dave Syer
2c7144bc49
Update Azure dependencies
2018-08-07 10:06:14 +01:00
Dave Syer
00e2b749d2
First step in 2.0.0. Remove Stream dependencies
2018-06-21 06:35:41 +01:00
Dave Syer
068b9ef7e9
Revert to snapshots
2018-06-18 11:49:02 +01:00
Dave Syer
ac3ea7db36
Update to 1.0.0
2018-06-15 12:27:30 +01:00
Bruno Borges
37d0d9500d
Upgrade azure artifacts and update docs
2018-06-06 12:10:49 +01:00
Dave Syer
f1e331bf98
Organize main ref guide to contain adapter content
2018-06-04 10:29:38 +01:00
Dave Syer
047aabcbdd
Extract adpater READMEs into docs subdir
2018-06-04 09:22:50 +01:00
Dave Syer
9dc569837a
Revert to snapshots
2018-05-26 09:42:34 +01:00
Dave Syer
b20cb700ea
Update to RC2
2018-05-26 09:34:02 +01:00
Dave Syer
8e9a5504cb
Revert to snapshots
2018-05-21 10:05:42 +01:00
Dave Syer
c29f800380
Update to 1.0.0.RC1
2018-05-21 10:04:54 +01:00
Dave Syer
fa55ebab16
Compiler warnings
2018-05-02 10:55:24 -04:00
Dave Syer
b59b43ddc5
Only expose Publisher via FunctionCatalog
...
Flux.from() is cheap and can be used to marshal the inputs everywhere
internally. With this change users ought to be able to register any
function of any Publisher type.
2018-05-01 12:06:34 -04:00
Dave Syer
98cf4dc06e
Revert to snapshots
2018-04-16 16:22:02 +01:00
Dave Syer
d1bcb7d142
Update to 1.0.0.M6
2018-04-16 16:04:31 +01:00
Dave Syer
efc99d2af0
Revert to snaphots
2018-03-16 11:40:12 -04:00
Dave Syer
feb8f51c41
Update to 1.0.0.M5
2018-03-16 11:28:53 -04:00
Dave Syer
5528659b4b
Inspect bean definition more thoroughly for factory arguments
...
Fixes gh-153
2018-03-02 11:28:33 +00:00
Dave Syer
33b33adb4b
Change FunctionCatalog to key off Class<?>
...
Makes it possible to support other "function" types in the future.
The user is always taking a risk with the lookup that the object
returned has the generic type desired (but that hasn't changed
with this commit). FunctionCatalog is a lot simpler as a result
and also a lot more flexible.
2018-02-28 14:18:09 +00:00
Dave Syer
616e2825c6
Move FunctionCatalog into context module
2018-02-27 09:05:28 +00:00
Dave Syer
a2a2932715
Revert to snapshots
2018-02-21 07:24:21 +00:00
Dave Syer
72efd58675
Update to 1.0.0.M4
2018-02-20 19:25:11 +00:00
Dave Syer
54873b66d5
Fix test
2018-01-25 09:36:37 +00:00
Dave Syer
ab30b755ba
Add test to azure sample
2018-01-25 09:20:20 +00:00