Skip to content

Commit

Permalink
deps: update perfview (#3492)
Browse files Browse the repository at this point in the history
  • Loading branch information
vaind authored Oct 2, 2024
1 parent 7da3cf3 commit b8849ac
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

### API Changes

- The `SentrySdk.Metrics` module is deprecated and will be removed in the next major release.
- 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: https://sentry.zendesk.com/hc/en-us/articles/26369339769883-Upcoming-API-Changes-to-Metrics ([#3619](https://github.com/getsentry/sentry-dotnet/pull/3619))

Expand All @@ -24,6 +24,7 @@
- Bump CLI from v2.36.1 to v2.36.4 ([#3624](https://github.com/getsentry/sentry-dotnet/pull/3624), [#3634](https://github.com/getsentry/sentry-dotnet/pull/3634), [#3642](https://github.com/getsentry/sentry-dotnet/pull/3642))
- [changelog](https://github.com/getsentry/sentry-cli/blob/master/CHANGELOG.md#2364)
- [diff](https://github.com/getsentry/sentry-cli/compare/2.36.1...2.36.4)
- Update Perfview/TraceEvent to e343a0c ([#3492](https://github.com/getsentry/sentry-dotnet/pull/3492))

## 4.11.0

Expand Down
2 changes: 1 addition & 1 deletion modules/perfview
Submodule perfview updated 71 files
+6 −1 .pipelines/mirror.yml
+2 −1 .pipelines/perfview-job.yml
+15 −0 .vsconfig
+65 −4 PerfView.sln
+36 −42 README.md
+1 −1 documentation/Downloading.md
+0 −84 documentation/MakingSupportFilesNugetPackages.md
+20 −0 documentation/Scenarios.md
+11 −17 src/Directory.Build.props
+2 −0 src/EtwClrProfiler/ETWClrProfilerX64.vcxproj
+2 −0 src/EtwClrProfiler/ETWClrProfilerX86.vcxproj
+5 −0 src/EtwHeapDump/EtwHeapDump.csproj
+14 −8 src/HeapDump/GCHeapDumper.cs
+5 −0 src/HeapDump/HeapDump.csproj
+12 −2 src/HeapDump/Program.cs
+5 −0 src/HeapDumpDLL/HeapDumpDLL.csproj
+12 −0 src/NuGetPackageSigning/NuGetPackageSigning.csproj
+0 −3 src/NugetSupportFiles/.gitignore
+0 −6 src/NugetSupportFiles/Microsoft.Diagnostics.Tracing.TraceEvent.SupportFiles.MakeNuget.bat
+0 −35 src/NugetSupportFiles/Microsoft.Diagnostics.Tracing.TraceEvent.SupportFiles.Populate.bat
+0 −16 ...ft.Diagnostics.Tracing.TraceEvent.SupportFiles/Microsoft.Diagnostics.Tracing.TraceEvent.SupportFiles.nuspec
+0 −6 ...agnostics.Tracing.TraceEvent.SupportFiles/build/Microsoft.Diagnostics.Tracing.TraceEvent.SupportFiles.props
+0 −6 src/NugetSupportFiles/PerfView.SupportFiles.MakeNuget.bat
+0 −25 src/NugetSupportFiles/PerfView.SupportFiles.Populate.bat
+0 −17 src/NugetSupportFiles/PerfView.SupportFiles/PerfView.SupportFiles.nuspec
+0 −6 src/NugetSupportFiles/PerfView.SupportFiles/build/PerfView.SupportFiles.props
+0 −4 src/PerfView.TestUtilities/ThrowingTraceListener.cs
+1 −56 src/PerfView.Tests/AuthenticationTests.cs
+27 −0 src/PerfView.Tutorial/PerfView.Tutorial.csproj
+0 −0 src/PerfView.Tutorial/Tutorial.cs
+25 −1 src/PerfView/App.cs
+81 −4 src/PerfView/Authentication.cs
+0 −24 src/PerfView/GcStats.cs
+29 −18 src/PerfView/MainWindow.xaml.cs
+28 −18 src/PerfView/PerfView.csproj
+ src/PerfView/SupportFiles/Tutorial.exe
+ src/PerfView/SupportFiles/Tutorial.pdb
+11 −11 src/PerfView/SupportFiles/UsersGuide.htm
+5 −715 src/PerfView/SymbolReaderHttpHandler.cs
+10 −1 src/PerfView/Utilities/SupportFiles.cs
+39 −0 src/PerfView/cgmanifest.json
+67 −0 src/SymbolsAuth.Tests/AuthenticationTests.cs
+47 −0 src/SymbolsAuth.Tests/SymbolsAuth.Tests.csproj
+11 −0 src/SymbolsAuth.Tests/app.config
+4 −0 src/SymbolsAuth.Tests/xunit.runner.json
+35 −0 src/SymbolsAuth/Microsoft.Diagnostics.Tracing.TraceEvent.SymbolsAuthentication.nuspec
+69 −0 src/SymbolsAuth/Samples/1_InteractivePopupAuth.cs
+71 −0 src/SymbolsAuth/Samples/2_ManagedIdentityAuth.cs
+55 −0 src/SymbolsAuth/Samples/Program.cs
+12 −0 src/SymbolsAuth/Samples/SymbolsAuth.Samples.csproj
+669 −0 src/SymbolsAuth/SymbolReaderAuthenticationHandler.cs
+86 −0 src/SymbolsAuth/SymbolsAuth.csproj
+162 −0 src/SymbolsAuth/SymwebHandler.cs
+170 −183 src/TraceEvent/Computers/ActivityComputer.cs
+4 −1 src/TraceEvent/Computers/StartStopLatencyComputer.cs
+31 −50 src/TraceEvent/Computers/TraceManagedProcess.cs
+6 −2 src/TraceEvent/DynamicTraceEventParser.cs
+7 −4 src/TraceEvent/EventPipe/EventPipeEventSource.cs
+1 −10 src/TraceEvent/Microsoft.Diagnostics.Tracing.TraceEvent.nuspec
+42 −250 src/TraceEvent/Parsers/GCDynamicTraceEventParser.cs
+21 −11 src/TraceEvent/Stacks/Linux/LinuxPerfScriptProcessNameBuilder.cs
+2 −38 src/TraceEvent/Symbols/NativeSymbolModule.cs
+1 −3 src/TraceEvent/Symbols/SymbolPath.cs
+3 −3 src/TraceEvent/Symbols/SymbolReader.cs
+5 −1 src/TraceEvent/TraceEvent.Tests/TraceEvent.Tests.csproj
+2 −2 src/TraceEvent/TraceEvent.Tests/inputs/netcore.3.1.x64.twocontainers.baseline.txt
+33 −37 src/TraceEvent/TraceEvent.cs
+3 −22 src/TraceEvent/TraceEvent.csproj
+10 −4 src/TraceEvent/TraceLog.cs
+28 −0 src/TraceEvent/cgmanifest.json
+7 −142 src/perfcollect/perfcollect

0 comments on commit b8849ac

Please sign in to comment.