We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 71c3a06 commit be6f6f0Copy full SHA for be6f6f0
CHANGELOG.md
@@ -1,3 +1,8 @@
1
+# Version 2.3.1 (2016-09-07)
2
+
3
+* [chg] Annotated WebSockets are now registered programatically as it allows injection of the configurator class.
4
+* [fix] Catch exception thrown by the JAnsi library when used on an unsupported OS (i.e. not linux/windows/osx).
5
6
# Version 2.3.0 (2016-04-25)
7
8
* [new] Full compatibility with Java 8.
core/src/main/java/org/seedstack/seed/core/internal/init/ConsoleManager.java
@@ -56,7 +56,7 @@ private OutputStream wrapOutputStream(final OutputStream stream) {
56
} else {
57
return basicOutput(stream);
58
}
59
- } catch (Exception e) {
+ } catch (Throwable e) {
60
61
62
0 commit comments