diff --git a/DOCKER_VERSION b/DOCKER_VERSION index d4bda08b..fc3aa773 100644 --- a/DOCKER_VERSION +++ b/DOCKER_VERSION @@ -1 +1 @@ -5.1.8 +5.1.9 diff --git a/README.md b/README.md index 517aaee5..880ee8df 100644 --- a/README.md +++ b/README.md @@ -10,4 +10,4 @@ Interested ? Go read the [docs](https://bsergean.github.io/IXWebSocket/site/) ! IXWebSocket is actively being developed, check out the [changelog](CHANGELOG.md) to know what's cooking. If you are looking for a real time messaging service (the chat-like 'server' your websocket code will talk to) with many features such as history, backed by Redis, look at [cobra](https://github.com/machinezone/cobra). -IXWebSocket is not yet autobahn compliant, but we are working on changing this. See the current compliance [test results](https://bsergean.github.io/IXWebSocket/autobahn/index.html). +IXWebSocket is not yet autobahn compliant, but we are working on changing this. See the current compliance [test results](https://bsergean.github.io/IXWebSocket/autobahn/index.html). The only tests that are still failing are the Websocket Compression ones (see section 12 and 13). diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 0f91fc9e..f4d7cef8 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -1,6 +1,10 @@ # Changelog All notable changes to this project will be documented in this file. +## [5.1.9] - 2019-09-03 + +- ws autobahn / report progress with spdlog::info to get timing info + ## [5.1.8] - 2019-09-03 - Per message deflate/compression: handle fragmented messages (fix autobahn test: 12.1.X and probably others) diff --git a/ixwebsocket/IXWebSocketVersion.h b/ixwebsocket/IXWebSocketVersion.h index 0f6b5f78..c08c631d 100644 --- a/ixwebsocket/IXWebSocketVersion.h +++ b/ixwebsocket/IXWebSocketVersion.h @@ -6,4 +6,4 @@ #pragma once -#define IX_WEBSOCKET_VERSION "5.1.8" +#define IX_WEBSOCKET_VERSION "5.1.9" diff --git a/makefile b/makefile index 47fac67e..48ee6207 100644 --- a/makefile +++ b/makefile @@ -63,6 +63,9 @@ test: ws_test: ws (cd ws ; env DEBUG=1 PATH=../ws/build:$$PATH bash test_ws.sh) +autobahn_report: + cp -rvf ~/sandbox/reports/clients/* ../bsergean.github.io/IXWebSocket/autobahn/ + # For the fork that is configured with appveyor rebase_upstream: git fetch upstream diff --git a/ws/ws_autobahn.cpp b/ws/ws_autobahn.cpp index 1c18bcf6..ddb3aa7a 100644 --- a/ws/ws_autobahn.cpp +++ b/ws/ws_autobahn.cpp @@ -42,6 +42,8 @@ #include #include +#include + namespace { @@ -276,7 +278,7 @@ namespace ix for (int i = 1 ; i < N; ++i) { - std::cerr << "Execute test case " << i << std::endl; + spdlog::info("Execute test case {}", i); int caseNumber = i;