(cobra-to-sentry) capture application version from device field

This commit is contained in:
Benjamin Sergeant
2019-12-18 15:40:01 -08:00
parent 1933da7044
commit 626e190d91
3 changed files with 10 additions and 1 deletions
+4
View File
@@ -1,6 +1,10 @@
# Changelog
All notable changes to this project will be documented in this file.
## [7.5.8] - 2019-12-18
(cobra-to-sentry) capture application version from device field
## [7.5.7] - 2019-12-18
(tls) Experimental TLS server support with mbedtls (windows) + process cert tlsoption (client + server)
+5
View File
@@ -199,6 +199,11 @@ namespace ix
environmentTag.append(msg["device"]["environment"]);
tags.append(environmentTag);
Json::Value clientVersionTag;
clientVersionTag.append("client_version");
clientVersionTag.append(msg["device"]["app_version"]);
tags.append(clientVersionTag);
payload["tags"] = tags;
return _jsonWriter.write(payload);
+1 -1
View File
@@ -6,4 +6,4 @@
#pragma once
#define IX_WEBSOCKET_VERSION "7.5.7"
#define IX_WEBSOCKET_VERSION "7.5.8"