Skip to content

Commit

Permalink
release: 0.4.14
Browse files Browse the repository at this point in the history
  • Loading branch information
getsentry-bot committed Jan 28, 2022
1 parent c191937 commit 9b2afa9
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 4 deletions.
31 changes: 31 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,36 @@
# Changelog

## 0.4.14

### Various fixes & improvements

- test: Add integration test for envelope with transaction (#671) by @flub
- feat(tracing): Always create spans even if they're unsampled (#668) by @relaxolotl
- feat: Add explicit flush method/hook (NATIVE-111) (#670) by @Swatinem
- fix(tracing): Set max spans to the default amount when tracing is enabled (#669) by @relaxolotl
- feat(tracing): Allow setting a scope on a span (#667) by @loewenheim
- ref(tracing): Revert name change of sentry_transaction_start (#666) by @loewenheim
- fix: Match sentry-trace header case-insensitively (#665) by @Swatinem
- ref: Make API forward-compatible to Sampling Context (NATIVE-457) (#663) by @Swatinem
- fix: Apply default rate limit (#660) by @Swatinem
- fix: Read Windows Version from Registry (#623) by @Swatinem
- fix: Correct CMake `SENTRY_LIBRARY_TYPE` variable check (#662) by @Mixaill
- feat: Implement distributed trace propagation (NATIVE-304) (#657) by @Swatinem
- feat(tracing): Spans now carry pointers to the Transactions they belong to (#656) by @relaxolotl
- feat: basic object merging (#650) by @flub
- feat(tracing): Allow setting custom span status [NATIVE-441] (#648) by @loewenheim
- ref(tracing): Update name of attached transaction in set_transaction [NATIVE-444] (#652) by @loewenheim
- feat(tracing): Introduce structs for performance monitoring constructs (#649) by @relaxolotl
- feat(tracing): Allow transaction renaming [NATIVE-438] (#651) by @loewenheim
- tracing: Add transaction/span tag methods [NATIVE-442] (#626) by @loewenheim
- fix: Revert to mmap-ing modules in the modulefinder (#642) by @Swatinem
- fix: Read section names safely (#641) by @Swatinem
- fix(tracing): Actually set the operation on a transaction (#647) by @relaxolotl
- feat(tracing): Retroactive unit test improvements (#637) by @relaxolotl
- feat(tracing): Basic span support with nesting (#634) by @relaxolotl

_Plus 12 more_

## 0.4.13

**Features**
Expand Down
2 changes: 1 addition & 1 deletion include/sentry.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ extern "C" {

/* SDK Version */
#define SENTRY_SDK_NAME "sentry.native"
#define SENTRY_SDK_VERSION "0.4.13"
#define SENTRY_SDK_VERSION "0.4.14"
#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 @@ -54,9 +54,9 @@ def assert_meta(
}
expected_sdk = {
"name": "sentry.native",
"version": "0.4.13",
"version": "0.4.14",
"packages": [
{"name": "github:getsentry/sentry-native", "version": "0.4.13"},
{"name": "github:getsentry/sentry-native", "version": "0.4.14"},
],
}
if not is_android:
Expand Down
2 changes: 1 addition & 1 deletion tests/test_integration_http.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

pytestmark = pytest.mark.skipif(not has_http, reason="tests need http")

auth_header = "Sentry sentry_key=uiaeosnrtdy, sentry_version=7, sentry_client=sentry.native/0.4.13"
auth_header = "Sentry sentry_key=uiaeosnrtdy, sentry_version=7, sentry_client=sentry.native/0.4.14"


def test_capture_http(cmake, httpserver):
Expand Down

0 comments on commit 9b2afa9

Please sign in to comment.