Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): bump Sentry.Serilog from 3.41.1 to 3.41.2 #1310

Merged
merged 1 commit into from
Nov 24, 2023
Merged
Changes from all commits
Commits
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
chore(deps): bump Sentry.Serilog from 3.41.1 to 3.41.2
Bumps [Sentry.Serilog](https://github.com/getsentry/sentry-dotnet) from 3.41.1 to 3.41.2.
- [Release notes](https://github.com/getsentry/sentry-dotnet/releases)
- [Changelog](https://github.com/getsentry/sentry-dotnet/blob/main/CHANGELOG.md)
- [Commits](getsentry/sentry-dotnet@3.41.1...3.41.2)

---
updated-dependencies:
- dependency-name: Sentry.Serilog
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
dependabot[bot] authored Nov 24, 2023
commit 66a6dc0e15e7779b49fb8291266e14b9f66158f5
2 changes: 1 addition & 1 deletion SoundSwitch/SoundSwitch.csproj
Original file line number Diff line number Diff line change
@@ -54,7 +54,7 @@
<PackageReference Include="Markdig" Version="0.33.0" />
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
<PackageReference Include="RailSharp" Version="1.0.0" />
<PackageReference Include="Sentry.Serilog" Version="3.41.1" />
<PackageReference Include="Sentry.Serilog" Version="3.41.2" />
<PackageReference Include="Serilog" Version="3.1.1" />
<PackageReference Include="Serilog.Enrichers.Environment" Version="2.3.0" />
<PackageReference Include="Serilog.Exceptions" Version="8.4.0+build.694" />

Unchanged files with check annotations Beta

return _nameClean;
}
var match = NameSplitterRegex.Match(Name);

Check warning on line 35 in SoundSwitch.Common/Framework/Audio/Device/DeviceInfo.cs

GitHub Actions / Analyze (csharp)

'DeviceInfo.Name' is obsolete: 'Use NameClean'

Check warning on line 35 in SoundSwitch.Common/Framework/Audio/Device/DeviceInfo.cs

GitHub Actions / build

'DeviceInfo.Name' is obsolete: 'Use NameClean'
//Old naming, can't do anything about this
if (!match.Success)
{
return _nameClean = Name;

Check warning on line 39 in SoundSwitch.Common/Framework/Audio/Device/DeviceInfo.cs

GitHub Actions / Analyze (csharp)

'DeviceInfo.Name' is obsolete: 'Use NameClean'

Check warning on line 39 in SoundSwitch.Common/Framework/Audio/Device/DeviceInfo.cs

GitHub Actions / build

'DeviceInfo.Name' is obsolete: 'Use NameClean'
}
var friendlyName = match.Groups["friendlyName"].Value;
public DeviceInfo(MMDevice device)
{
Name = device.FriendlyName;

Check warning on line 50 in SoundSwitch.Common/Framework/Audio/Device/DeviceInfo.cs

GitHub Actions / Analyze (csharp)

'DeviceInfo.Name' is obsolete: 'Use NameClean'

Check warning on line 50 in SoundSwitch.Common/Framework/Audio/Device/DeviceInfo.cs

GitHub Actions / build

'DeviceInfo.Name' is obsolete: 'Use NameClean'
Id = device.ID;
Type = device.DataFlow;
var deviceProperties = device.Properties;
[JsonConstructor]
public DeviceInfo(string name, string id, DataFlow type, bool isUsb, DateTime discoveredAt)
{
Name = name;

Check warning on line 61 in SoundSwitch.Common/Framework/Audio/Device/DeviceInfo.cs

GitHub Actions / Analyze (csharp)

'DeviceInfo.Name' is obsolete: 'Use NameClean'

Check warning on line 61 in SoundSwitch.Common/Framework/Audio/Device/DeviceInfo.cs

GitHub Actions / build

'DeviceInfo.Name' is obsolete: 'Use NameClean'
Id = id;
Type = type;
IsUsb = isUsb;
public int Volume { get; private set; } = 0;
[JsonConstructor]
public DeviceFullInfo(string name, string id, DataFlow type, string iconPath, DeviceState state, bool isUsb) : base(name, id, type, isUsb, DateTime.UtcNow)

Check warning on line 27 in SoundSwitch.Common/Framework/Audio/Device/DeviceFullInfo.cs

GitHub Actions / Analyze (csharp)

Non-nullable field '_device' must contain a non-null value when exiting constructor. Consider declaring the field as nullable.

Check warning on line 27 in SoundSwitch.Common/Framework/Audio/Device/DeviceFullInfo.cs

GitHub Actions / build

Non-nullable field '_device' must contain a non-null value when exiting constructor. Consider declaring the field as nullable.
{
IconPath = iconPath;
State = state;
/// <param name="param">optional parameter</param>
/// <param name="priority">optional priorty for the dispatcher</param>
/// <param name="disp">optional dispatcher. If not passed or null CurrentDispatcher is used.</param>
public void Debounce<T>(TimeSpan interval, Action<T> action, T param = default)

Check warning on line 42 in SoundSwitch.UI.Menu/Util/Timer/DebounceDispatcher.cs

GitHub Actions / Analyze (csharp)

Possible null reference assignment.

Check warning on line 42 in SoundSwitch.UI.Menu/Util/Timer/DebounceDispatcher.cs

GitHub Actions / build

Possible null reference assignment.
{
lock (_lockDebounce)
{
/// <param name="param">optional parameter</param>
/// <param name="priority">optional priorty for the dispatcher</param>
/// <param name="disp">optional dispatcher. If not passed or null CurrentDispatcher is used.</param>
public void Throttle<T>(TimeSpan delay, Action<T> action, T param = default)

Check warning on line 78 in SoundSwitch.UI.Menu/Util/Timer/DebounceDispatcher.cs

GitHub Actions / Analyze (csharp)

Possible null reference assignment.

Check warning on line 78 in SoundSwitch.UI.Menu/Util/Timer/DebounceDispatcher.cs

GitHub Actions / build

Possible null reference assignment.
{
lock (_lockThrottle)
{
protected override bool ShowWithoutActivation => true;
internal QuickMenu()

Check warning on line 35 in SoundSwitch.UI.Menu/Form/QuickMenu.cs

GitHub Actions / Analyze (csharp)

Non-nullable event 'ItemClicked' must contain a non-null value when exiting constructor. Consider declaring the event as nullable.

Check warning on line 35 in SoundSwitch.UI.Menu/Form/QuickMenu.cs

GitHub Actions / Analyze (csharp)

Non-nullable event 'SelectionChanged' must contain a non-null value when exiting constructor. Consider declaring the event as nullable.

Check warning on line 35 in SoundSwitch.UI.Menu/Form/QuickMenu.cs

GitHub Actions / build

Non-nullable event 'ItemClicked' must contain a non-null value when exiting constructor. Consider declaring the event as nullable.

Check warning on line 35 in SoundSwitch.UI.Menu/Form/QuickMenu.cs

GitHub Actions / build

Non-nullable event 'SelectionChanged' must contain a non-null value when exiting constructor. Consider declaring the event as nullable.
{
InitializeComponent();
_hideDisposeMethod = HideDispose;