Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
45 commits
Select commit Hold shift + click to select a range
c64ca21
Add net9.0 support
jamescrosswell Oct 22, 2024
582045d
Workaround CastleProxy errors in device tests
jamescrosswell Oct 22, 2024
d3c40ca
Skip SystemDiagnosticsMetricsListenerTests in DeviceTests (will depre…
jamescrosswell Oct 22, 2024
df2cd5e
Disabled Handle_UnobservedTaskException_CaptureEvent (flaky test)
jamescrosswell Oct 22, 2024
1154070
Update CHANGELOG.md
jamescrosswell Oct 22, 2024
10550f7
Merge branch 'version-5.0.0' into net9
jamescrosswell Oct 22, 2024
f013b99
Made logic for detecting net8.0 or later more robust in Sentry.target…
jamescrosswell Oct 22, 2024
bdca1bb
Bump device tests to Xcode 16
jamescrosswell Oct 22, 2024
8150ca8
Moved error from runtime to compile time in SingleFileApp
jamescrosswell Oct 22, 2024
968e87b
Bump to XHarness 10 (prerelease)
jamescrosswell Oct 22, 2024
c3231da
Format code
getsentry-bot Oct 22, 2024
93a950b
Merge branch 'version-5.0.0' into net9
jamescrosswell Oct 27, 2024
ba88d7e
Removed reference to obsolete member (Java SDK)
jamescrosswell Oct 28, 2024
4a30dfd
Disabled iOS device tests
jamescrosswell Oct 28, 2024
813a119
Removed hard coded alpha VersionSuffix
jamescrosswell Oct 28, 2024
5efc0d5
Update ApiApprovalTests.Run.DotNet9_0.verified.txt
jamescrosswell Oct 28, 2024
5beafd0
Debug native library references in integration tests on CI
jamescrosswell Oct 28, 2024
196d00d
Reenable iOS device tests
jamescrosswell Oct 29, 2024
c9f3bc3
Fixed typo in MS Build condition on FrameworkSupportsNative
jamescrosswell Oct 29, 2024
faad873
Added temporary diagnostic logging to device-tests-ios.yml
jamescrosswell Oct 29, 2024
306eefc
Update Sentry.Samples.Maui.csproj
jamescrosswell Oct 29, 2024
301a854
Update device-tests-ios.yml
jamescrosswell Oct 29, 2024
ec2335e
Update device-test.ps1
jamescrosswell Oct 29, 2024
58206a9
Update device-tests-ios.yml
jamescrosswell Oct 30, 2024
7261983
Update build.yml
jamescrosswell Oct 30, 2024
bcc3f00
Disable Flaky tests
jamescrosswell Oct 30, 2024
d45ea42
Update Sentry.Native.targets
jamescrosswell Oct 30, 2024
830ba36
Update Sentry.Native.targets
jamescrosswell Oct 30, 2024
867073e
Merge branch 'version-5.0.0' into net9
jamescrosswell Oct 30, 2024
4f59199
Update verify tests
jamescrosswell Oct 30, 2024
bab8ee7
Update SentryOptionsTests.Integrations_default_ones_are_properly_regi…
jamescrosswell Oct 31, 2024
8699018
Update CHANGELOG.md
jamescrosswell Oct 31, 2024
97b8a65
Update LocalDbFixture.cs
jamescrosswell Oct 31, 2024
3da79c2
Merge branch 'net9' of github.com:getsentry/sentry-dotnet into net9
jamescrosswell Oct 31, 2024
480814b
Format code
getsentry-bot Oct 31, 2024
e0ceb09
Update HubTests.cs
jamescrosswell Oct 31, 2024
ef82fb9
Merge branch 'net9' of github.com:getsentry/sentry-dotnet into net9
jamescrosswell Oct 31, 2024
6cdb228
Fixed alignment in libsentrysupplemental.so
jamescrosswell Oct 31, 2024
26c5906
Update CHANGELOG.md
jamescrosswell Nov 4, 2024
12bfdee
Merge branch 'version-5.0.0' into align-libsentry
jamescrosswell Nov 4, 2024
cdf2106
Update CHANGELOG.md
jamescrosswell Nov 4, 2024
8669e4c
Update action.yml
jamescrosswell Nov 4, 2024
a225f26
Revert "Update action.yml"
jamescrosswell Nov 4, 2024
4dc5488
Update action.yml
jamescrosswell Nov 4, 2024
d5a1ae2
Update CHANGELOG.md
jamescrosswell Nov 5, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update verify tests
  • Loading branch information
jamescrosswell committed Oct 30, 2024
commit 4f59199f9201406efc31aa5c5e85ee0350b4a0d9
24 changes: 0 additions & 24 deletions test/Sentry.Tests/ApiApprovalTests.Run.DotNet9_0.verified.txt
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,6 @@ namespace Sentry
public interface IHub : Sentry.ISentryClient, Sentry.ISentryScopeManager
{
Sentry.SentryId LastEventId { get; }
Sentry.IMetricAggregator Metrics { get; }
void BindException(System.Exception exception, Sentry.ISpan span);
Sentry.SentryId CaptureEvent(Sentry.SentryEvent evt, System.Action<Sentry.Scope> configureScope);
Sentry.SentryId CaptureEvent(Sentry.SentryEvent evt, Sentry.SentryHint? hint, System.Action<Sentry.Scope> configureScope);
Expand All @@ -209,17 +208,6 @@ namespace Sentry
void StartSession();
Sentry.ITransactionTracer StartTransaction(Sentry.ITransactionContext context, System.Collections.Generic.IReadOnlyDictionary<string, object?> customSamplingContext);
}
public interface IMetricAggregator : System.IDisposable
{
void Distribution(string key, double value = 1, Sentry.MeasurementUnit? unit = default, System.Collections.Generic.IDictionary<string, string>? tags = null, System.DateTimeOffset? timestamp = default, int stackLevel = 1);
System.Threading.Tasks.Task FlushAsync(bool force = true, System.Threading.CancellationToken cancellationToken = default);
void Gauge(string key, double value = 1, Sentry.MeasurementUnit? unit = default, System.Collections.Generic.IDictionary<string, string>? tags = null, System.DateTimeOffset? timestamp = default, int stackLevel = 1);
void Increment(string key, double value = 1, Sentry.MeasurementUnit? unit = default, System.Collections.Generic.IDictionary<string, string>? tags = null, System.DateTimeOffset? timestamp = default, int stackLevel = 1);
void Set(string key, int value, Sentry.MeasurementUnit? unit = default, System.Collections.Generic.IDictionary<string, string>? tags = null, System.DateTimeOffset? timestamp = default, int stackLevel = 1);
void Set(string key, string value, Sentry.MeasurementUnit? unit = default, System.Collections.Generic.IDictionary<string, string>? tags = null, System.DateTimeOffset? timestamp = default, int stackLevel = 1);
System.IDisposable StartTimer(string key, Sentry.MeasurementUnit.Duration unit = 3, System.Collections.Generic.IDictionary<string, string>? tags = null, int stackLevel = 1);
void Timing(string key, double value, Sentry.MeasurementUnit.Duration unit = 3, System.Collections.Generic.IDictionary<string, string>? tags = null, System.DateTimeOffset? timestamp = default, int stackLevel = 1);
}
public interface IScopeObserver
{
void AddBreadcrumb(Sentry.Breadcrumb breadcrumb);
Expand Down Expand Up @@ -671,7 +659,6 @@ namespace Sentry
public bool EnableScopeSync { get; set; }
public bool EnableSpotlight { get; set; }
public string? Environment { get; set; }
public Sentry.ExperimentalMetricsOptions? ExperimentalMetrics { get; set; }
public System.Collections.Generic.IList<Sentry.HttpStatusCodeRange> FailedRequestStatusCodes { get; set; }
public System.Collections.Generic.IList<Sentry.StringOrRegex> FailedRequestTargets { get; set; }
public System.TimeSpan FlushTimeout { get; set; }
Expand Down Expand Up @@ -784,11 +771,6 @@ namespace Sentry
{
public static bool IsEnabled { get; }
public static Sentry.SentryId LastEventId { get; }
[System.Obsolete("The SentrySdk.Metrics module is deprecated and will be removed in the next major " +
"release. Sentry will reject all metrics sent after October 7, 2024.Learn more: h" +
"ttps://sentry.zendesk.com/hc/en-us/articles/26369339769883-Upcoming-API-Changes-" +
"to-Metrics")]
public static Sentry.IMetricAggregator Metrics { get; }
public static void AddBreadcrumb(Sentry.Breadcrumb breadcrumb, Sentry.SentryHint? hint = null) { }
public static void AddBreadcrumb(string message, string? category = null, string? type = null, System.Collections.Generic.IDictionary<string, string>? data = null, Sentry.BreadcrumbLevel level = 0) { }
public static void AddBreadcrumb(Sentry.Infrastructure.ISystemClock? clock, string message, string? category = null, string? type = null, System.Collections.Generic.IDictionary<string, string>? data = null, Sentry.BreadcrumbLevel level = 0) { }
Expand Down Expand Up @@ -1285,7 +1267,6 @@ namespace Sentry.Extensibility
public static readonly Sentry.Extensibility.DisabledHub Instance;
public bool IsEnabled { get; }
public Sentry.SentryId LastEventId { get; }
public Sentry.IMetricAggregator Metrics { get; }
public void BindClient(Sentry.ISentryClient client) { }
public void BindException(System.Exception exception, Sentry.ISpan span) { }
public Sentry.SentryId CaptureCheckIn(string monitorSlug, Sentry.CheckInStatus status, Sentry.SentryId? sentryId = default, System.TimeSpan? duration = default, Sentry.Scope? scope = null, System.Action<Sentry.SentryMonitorOptions>? configureMonitorOptions = null) { }
Expand Down Expand Up @@ -1325,11 +1306,6 @@ namespace Sentry.Extensibility
public static readonly Sentry.Extensibility.HubAdapter Instance;
public bool IsEnabled { get; }
public Sentry.SentryId LastEventId { get; }
[System.Obsolete("The SentrySdk.Metrics module is deprecated and will be removed in the next major " +
"release. Sentry will reject all metrics sent after October 7, 2024.Learn more: h" +
"ttps://sentry.zendesk.com/hc/en-us/articles/26369339769883-Upcoming-API-Changes-" +
"to-Metrics")]
public Sentry.IMetricAggregator Metrics { get; }
public void AddBreadcrumb(string message, string? category = null, string? type = null, System.Collections.Generic.IDictionary<string, string>? data = null, Sentry.BreadcrumbLevel level = 0) { }
public void AddBreadcrumb(Sentry.Infrastructure.ISystemClock clock, string message, string? category = null, string? type = null, System.Collections.Generic.IDictionary<string, string>? data = null, Sentry.BreadcrumbLevel level = 0) { }
public void BindClient(Sentry.ISentryClient client) { }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,15 +34,5 @@
Args: [
SentryDiagnosticListenerIntegration
]
},
{
Message: Registering integration: '{0}'.,
Args: [
SystemDiagnosticsMetricsIntegration
]
},
{
Level: info,
Message: System.Diagnostics.Metrics Integration is disabled because no listeners are configured.
}
]