Skip to content

Commit

Permalink
release: 0.2.2 (Mudlet#200)
Browse files Browse the repository at this point in the history
  • Loading branch information
Swatinem committed Mar 27, 2020
1 parent c7589f9 commit a3d61c3
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 8 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Changelog

## 0.2.2

- Implement experimental Session handling
- Implement more fine grained Rate Limiting for HTTP requests
- Implement `sample_rate` option
- In-process and Breakpad backend will not lose events queued for HTTP
submission on crash
- `sentry_shutdown` will better clean up after itself
- Add Experimental MinGW build support (thanks @Amphaal
[189](https://github.com/getsentry/sentry-native/pull/189))
- Various other fixes and improvements

## 0.2.1

- Added Breakpad support on Linux
Expand Down
2 changes: 1 addition & 1 deletion include/sentry.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ extern "C" {

/* SDK Version */
#define SENTRY_SDK_NAME "sentry.native"
#define SENTRY_SDK_VERSION "0.2.1"
#define SENTRY_SDK_VERSION "0.2.2"
#define SENTRY_SDK_USER_AGENT (SENTRY_SDK_NAME "/" SENTRY_SDK_VERSION)

/* common platform detection */
Expand Down
4 changes: 2 additions & 2 deletions tests/assertions.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ def assert_meta(envelope):
"extra": {"extra stuff": "some value", "…unicode key…": "őá…–🤮🚀¿ 한글 테스트"},
"sdk": {
"name": "sentry.native",
"version": "0.2.1",
"version": "0.2.2",
"packages": [
{"name": "github:getsentry/sentry-native", "version": "0.2.1",},
{"name": "github:getsentry/sentry-native", "version": "0.2.2",},
],
},
}
Expand Down
10 changes: 5 additions & 5 deletions tests/test_integration_http.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def test_capture_http(tmp_path, httpserver):
httpserver.expect_oneshot_request(
"/api/123456/store/",
headers={
"x-sentry-auth": "Sentry sentry_key=uiaeosnrtdy, sentry_version=7, sentry_client=sentry.native/0.2.1"
"x-sentry-auth": "Sentry sentry_key=uiaeosnrtdy, sentry_version=7, sentry_client=sentry.native/0.2.2"
},
).respond_with_data("OK")

Expand Down Expand Up @@ -60,7 +60,7 @@ def test_inproc_crash_http(tmp_path, httpserver):
httpserver.expect_oneshot_request(
"/api/123456/store/",
headers={
"x-sentry-auth": "Sentry sentry_key=uiaeosnrtdy, sentry_version=7, sentry_client=sentry.native/0.2.1"
"x-sentry-auth": "Sentry sentry_key=uiaeosnrtdy, sentry_version=7, sentry_client=sentry.native/0.2.2"
},
).respond_with_data("OK")

Expand Down Expand Up @@ -92,7 +92,7 @@ def test_inproc_dump_inflight(tmp_path, httpserver):
httpserver.expect_request(
"/api/123456/store/",
headers={
"x-sentry-auth": "Sentry sentry_key=uiaeosnrtdy, sentry_version=7, sentry_client=sentry.native/0.2.1"
"x-sentry-auth": "Sentry sentry_key=uiaeosnrtdy, sentry_version=7, sentry_client=sentry.native/0.2.2"
},
).respond_with_data("OK")

Expand All @@ -116,7 +116,7 @@ def test_breakpad_crash_http(tmp_path, httpserver):
httpserver.expect_oneshot_request(
"/api/123456/store/",
headers={
"x-sentry-auth": "Sentry sentry_key=uiaeosnrtdy, sentry_version=7, sentry_client=sentry.native/0.2.1"
"x-sentry-auth": "Sentry sentry_key=uiaeosnrtdy, sentry_version=7, sentry_client=sentry.native/0.2.2"
},
).respond_with_data("OK")

Expand Down Expand Up @@ -148,7 +148,7 @@ def test_breakpad_dump_inflight(tmp_path, httpserver):
httpserver.expect_request(
"/api/123456/store/",
headers={
"x-sentry-auth": "Sentry sentry_key=uiaeosnrtdy, sentry_version=7, sentry_client=sentry.native/0.2.1"
"x-sentry-auth": "Sentry sentry_key=uiaeosnrtdy, sentry_version=7, sentry_client=sentry.native/0.2.2"
},
).respond_with_data("OK")

Expand Down

0 comments on commit a3d61c3

Please sign in to comment.