Pierre-Marie Padiou
ca71a3c152
Update a few dependencies ( #2166 )
...
This updates versions of a few major dependencies: scala, akka, postgres, etc.
2022-02-08 11:37:24 +01:00
Bastien Teinturier
44510698f7
Back to Dev ( #2159 )
2022-02-01 10:42:29 +01:00
Bastien Teinturier
a804905c0b
Eclair v0.7.0 release ( #2158 )
2022-02-01 08:34:50 +01:00
Bastien Teinturier
57bf86044e
Back to Dev ( #1993 )
2021-10-08 09:58:47 +02:00
Bastien Teinturier
6817d6f26e
Eclair v0.6.2 release ( #1992 )
2021-10-08 09:21:34 +02:00
Bastien Teinturier
cafaeedef4
Set version to 0.6.2-SNAPSHOT ( #1888 )
2021-07-19 17:14:08 +02:00
Bastien Teinturier
d3ae32326e
Set version to 0.6.1 ( #1887 )
2021-07-19 15:36:23 +02:00
Pierre-Marie Padiou
c8c5e76d24
Update akka-http-json4s dependency ( #1889 )
2021-07-19 14:07:16 +02:00
Bastien Teinturier
a658fa26f4
Set version to 0.6.1-SNAPSHOT ( #1813 )
2021-05-19 15:08:42 +02:00
Bastien Teinturier
f89b0925a7
Set version to 0.6.0 ( #1812 )
2021-05-19 11:54:44 +02:00
Pierre-Marie Padiou
223a14cb59
Remove bintray ( #1785 )
...
Bintray has been discontinued and artifacts have been migrated to Maven
Central.
2021-05-04 15:38:46 +02:00
Bastien Teinturier
163700a232
Set version to 0.5.2-SNAPSHOT ( #1714 )
2021-03-03 15:29:26 +01:00
Bastien Teinturier
98bb7be70a
Set version to 0.5.1 ( #1707 )
2021-03-03 11:38:00 +01:00
Bastien Teinturier
923ca26fec
Set version to 0.5.1-SNAPSHOT ( #1651 )
2020-12-18 16:24:32 +01:00
Bastien Teinturier
35b070ee5d
Set version to 0.5.0 ( #1649 )
2020-12-18 15:23:36 +01:00
Pierre-Marie Padiou
39d9bfbec5
Add cluster doc, and packaging improvements ( #1646 )
...
We now use a regular release zip, and use it in the awseb bundle.
The default logback configuration now logs to a file, like
`eclair-node`, and we use a dedicated logback configuration for AWS
beanstalk.
By default the front reads the node secret key from the node seed in
the standard `.eclair` directory.
2020-12-18 11:36:24 +01:00
Bastien Teinturier
f9ff586cba
Release Eclair v0.4.2 ( #1562 )
...
* Set version to 0.4.2
* Set version to 0.4.3-SNAPSHOT
2020-10-13 15:14:40 +02:00
Pierre-Marie Padiou
eed82e262f
Update to scala 2.13.3 and akka 2.6.9 ( #1532 )
...
Need to add explicit dependency on akka-stream (see https://doc.akka.io/docs/akka-http/current/introduction.html#using-akka-http )
2020-09-18 15:27:45 +02:00
Fabrice Drouin
ea57bb266c
Release 0.4.1 ( #1481 )
...
* Set version to 0.4.1
* Set version to 0.4.2-SNAPSHOT
2020-07-20 12:00:01 +02:00
Fabrice Drouin
273a3f0966
Release 0.4 ( #1409 )
...
* Release 0.4
* Set version to 0.4.1-SNAPSHOT
2020-05-05 14:55:09 +02:00
Pierre-Marie Padiou
19975d3d81
Update to scala 2.13 and akka 2.6 (incremental) ( #1390 )
...
This is almost a drop-in replacement. I had to relaxed compiler
parameters to allow deprecated features though.
Main changes:
- relaxed compiler parameters to minimize impact (e.g. allow
deprecated features)
- `scala.collection.JavaConverters` -> `scala.jdk.CollectionConverters`
- `MultiMap` -> `MultiDict`
Compilation is 25% faster on my machine, compiler is a bit more strict
(it found an "invalid comparison" bug).
2020-04-27 13:11:55 +02:00
Pierre-Marie Padiou
f4b56407b4
Prepare upgrade to scala 2.13 and akka 2.6 ( #1389 )
...
Do all the changes that will be required and are already possible to
minimize the diff:
- update dependencies
- `'something` -> `Symbol("something")`
- `BigDecimal.xValue()` -> `BigDecimal.xValue`
- `Map.filterKeys` -> `Map.filterKeys.toMap` (same for `Map.mapValues`)
- `def myMethod(...)` -> `def myMethod(...): Unit`
2020-04-24 15:31:25 +02:00
Fabrice Drouin
d5951aa819
Release 0.3.4 ( #1368 )
...
* Release 0.3.4
* Set version to 0.3.5-SNAPSHOT
2020-04-06 13:41:17 +02:00
Pierre-Marie Padiou
21daafe8ac
Update kanela-agent 1.0.1->1.0.5 ( #1341 )
...
NB: using `addJava "-javaagent:$lib_dir/kanela-agent-*.jar"` in scripts
to make them update proof doesn't work unfortunately.
2020-03-05 14:19:25 +01:00
araspitzu
f978cfb75d
Avoid illegal reflective operation during startup ( #1313 )
...
* Rework plugin loading:
We now require the plugin to supply a manifest entry for the "Main-Class" attribute, this is used to load the plugin without doing illegal reflection operations. We also get rid of the dependency org.clapper.classutil
2020-02-28 18:29:54 +01:00
araspitzu
a0286458c6
Rework packaging ( #1307 )
...
* Replace maven-capsule-plugin with maven-assembly-plugin in eclair-node and eclair-node-gui:
The new packaging produces a zip file containing a launcher script and all the artifacts and dependencies in lib/.
* Add bash launcher scripts for eclair-node and eclair-node-gui, inspired by https://github.com/sbt/sbt-native-packager/blob/master/src/main/resources/com/typesafe/sbt/packager/archetypes/scripts/bash-template
* Add windows launcher scripts, inspired by https://github.com/sbt/sbt-native-packager/blob/master/src/main/resources/com/typesafe/sbt/packager/archetypes/scripts/bat-template
* Add option to start kanela agent with eclair-node launcher scripts
* Force unix file ending in launcher scripts
* Add eclair-cli in the bin folder of packaged eclair-node and eclair-node-gui
2020-02-24 15:42:26 +01:00
Fabrice Drouin
66e04265b3
Release 0.3.3 ( #1300 )
...
* Release 0.3.3
* Set version to 0.3.4-SNAPSHOT
2020-02-03 11:07:26 +01:00
Fabrice Drouin
b9252cdf87
Release 0.3.2 ( #1177 )
...
Set version to 0.3.3-SNAPSHOT
2019-10-15 19:26:42 +02:00
Pierre-Marie Padiou
ff0b4c81e6
Add monitoring with Kamon (disabled by default) ( #1126 )
...
For now:
- we only track some tasks (especially in the router, but not even
`node_announcement` and `channel_update`
- all db calls are monitored
- kamon is disabled by default
2019-09-06 14:37:26 +02:00
araspitzu
74af0304bd
Move http APIs to subproject eclair-node ( #1102 )
...
* Move Service and FormParamExtractor to eclair-node
* Move dependency akka-http-json4s into eclair-node
* Move json serializers to eclair-node
2019-08-30 09:44:24 +02:00
Fabrice Drouin
bbe07c2c42
Set version to 0.3.2-SNAPSHOT ( #1062 )
2019-07-04 10:00:44 +02:00
Fabrice Drouin
6906ecb403
Set version to v0.3.1 ( #1061 )
2019-07-03 17:23:12 +02:00
Fabrice Drouin
847d0999c8
Release v0.3 ( #994 )
...
* gui: include javafx native libraries for windows, mac, linux
* Release v0.3
* Set version to 0.3.1-SNAPSHOT
2019-05-10 11:02:08 +02:00
Pierre-Marie Padiou
081dec15ae
Updated license header ( #992 )
2019-05-09 16:40:37 +02:00
Pierre-Marie Padiou
c530b23175
Added simple plugin support ( #927 )
...
Using org.clapper:classutil library and a very simple `Plugin` interface.
2019-04-19 18:10:47 +02:00
Fabrice Drouin
e2ff5c857b
Set version to 0.3-SNAPSHOT ( #920 )
...
We have enough major changes from the last release to justify switching to 0.3
2019-03-28 09:49:17 +01:00
sstone
3f72b441d8
Set version to 0.2-SNAPSHOT
2019-01-18 20:15:04 +01:00
sstone
eb0e45a8b1
set version to 0.2-beta9
2019-01-18 19:01:59 +01:00
sstone
4e0702a923
set version to 0.2-SNAPSHOT
2018-10-20 21:38:16 +02:00
sstone
52821b8664
set version to 0.2-beta8
2018-10-20 21:34:34 +02:00
sstone
b0305b0551
set version to 0.2-SNAPSHOT
2018-10-15 17:00:40 +02:00
sstone
c564f51d24
set version to 0.2-beta7
2018-10-15 16:48:13 +02:00
sstone
997aceea82
set version back to 0.2-SNAPSHOT
2018-09-26 14:05:57 +02:00
sstone
3fc5da0a7b
set version to 0.2-beta6
2018-09-26 14:04:38 +02:00
sstone
cd6524e25b
set version to 0.2-SNAPSHOT
2018-06-20 09:45:09 +02:00
sstone
8aa51f4e02
set version to 0.2-beta5
2018-06-20 09:21:05 +02:00
sstone
a85ba9ceef
set version to 0.2-SNAPSHOT
2018-05-30 19:15:06 +02:00
sstone
e6fe077582
set version to 0.2-beta4
2018-05-30 19:11:44 +02:00
pm47
644b4a2a98
back to SNAPSHOT
2018-05-18 15:53:02 +02:00
pm47
1dd8aa5aab
set version to 0.2-beta3
2018-05-18 15:14:52 +02:00