(cobra-to-sentry) capture application version from device field
This commit is contained in:
		| @@ -1,6 +1,10 @@ | |||||||
| # Changelog | # Changelog | ||||||
| All notable changes to this project will be documented in this file. | 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 | ## [7.5.7] - 2019-12-18 | ||||||
|  |  | ||||||
| (tls) Experimental TLS server support with mbedtls (windows) + process cert tlsoption (client + server) | (tls) Experimental TLS server support with mbedtls (windows) + process cert tlsoption (client + server) | ||||||
|   | |||||||
| @@ -199,6 +199,11 @@ namespace ix | |||||||
|         environmentTag.append(msg["device"]["environment"]); |         environmentTag.append(msg["device"]["environment"]); | ||||||
|         tags.append(environmentTag); |         tags.append(environmentTag); | ||||||
|  |  | ||||||
|  |         Json::Value clientVersionTag; | ||||||
|  |         clientVersionTag.append("client_version"); | ||||||
|  |         clientVersionTag.append(msg["device"]["app_version"]); | ||||||
|  |         tags.append(clientVersionTag); | ||||||
|  |  | ||||||
|         payload["tags"] = tags; |         payload["tags"] = tags; | ||||||
|  |  | ||||||
|         return _jsonWriter.write(payload); |         return _jsonWriter.write(payload); | ||||||
|   | |||||||
| @@ -6,4 +6,4 @@ | |||||||
|  |  | ||||||
| #pragma once | #pragma once | ||||||
|  |  | ||||||
| #define IX_WEBSOCKET_VERSION "7.5.7" | #define IX_WEBSOCKET_VERSION "7.5.8" | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user