Skip to content

Bump the major-minor-dependencies group across 2 directories with 5 updates #436

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

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jun 25, 2024

Bumps the major-minor-dependencies group with 2 updates in the /backend/ILSpyX.Backend.LSP directory: Serilog and Serilog.Sinks.Debug.
Bumps the major-minor-dependencies group with 5 updates in the /backend/ILSpyX.Backend.Tests directory:

Package From To
Serilog 3.1.1 4.0.0
Serilog 3.1.1 4.0.0
Serilog.Sinks.Debug 2.0.0 3.0.0
Serilog 3.1.1 4.0.0
Microsoft.NET.Test.Sdk 17.8.0 17.10.0
xunit 2.6.2 2.8.1
xunit.runner.visualstudio 2.5.4 2.8.1

Updates Serilog from 3.1.1 to 4.0.0

Release notes

Sourced from Serilog's releases.

v4.0.0

What's new in Serilog 4.0.0?

If you're deploying to .NET Framework, note that Serilog's assembly version number has been unpinned from the long-running historical 2.0.0 default, and now matches the package version precisely. If you encounter issues, ensure your build is generating valid assembly binding redirects.

Simple, robust, built-in batching support

Sinks that need batching functionality can now be easily written, without any additional package dependencies, by implementing IBatchedLogEventSink:

class MyBatchedSink: IBatchedLogEventSink
{
    public Task EmitBatchAsync(IReadOnlyCollection<LogEvent> batch)
    {
        // Send a batch of log events...
    }
}

Batched sinks can be added using WriteTo.Sink(IBatchedLogEventSink, ...) - they're given first-class consideration just like regular un-batched sinks.

The built-in batching implementation is based on System.Threading.Channels and draws on the original Serilog.Sinks.PeriodicBatching package (now in maintenance-mode), to provide a full-featured, efficient, async-native batching implementation.

Experimental dotted name capturing

By setting an experimental AppContext switch, message templates can be used to capture dotted names, which are required when using some logging schemas.

AppContext.SetSwitch("Serilog.Parsing.MessageTemplateParser.AcceptDottedPropertyNames", true);
Log.Information("Running as {user.name}", Environment.UserName);
// Captures {"user.name": "nblumhardt"}

While currently experimental and unsupported, this flag is intended to help the ecosystem evaluate and prepare for dotted name support in a future Serilog release.

Changes

... (truncated)

Commits
  • 573a628 Merge pull request #2067 from serilog/dev
  • e963475 Attempt to make tests more robust on slow CI machines by increasing time steps
  • 5e18faf Update all dependencies, fix new xUnit lints
  • 9fcf795 Move TrimConfiguration to Capturing namespace, 'Configuration' namespace is j...
  • 4ef3a87 Remove noop byte cast
  • 9d3a088 fix: only disallows '}' in format strings, use byte comparison
  • 920b8c8 fix: allows all printable characters as format values
  • e1a0047 Typo - to -> do
  • 921eccc Scope back to only considering dots; improve tests
  • 592a124 Improve comment
  • Additional commits viewable in compare view

Updates Serilog.Sinks.Debug from 2.0.0 to 3.0.0

Release notes

Sourced from Serilog.Sinks.Debug's releases.

v3.0.0

  • Build on VS2022 (@​SimonCropp)
  • #14 - updates for Serilog 4 (@​Numpsy)
    • Update version to 3.0.0
    • Update TFMs to match Serilog 4
    • Update Serilog to v4 and all other deps to latest
    • Enable SourceLink and publish a snupkg file
    • Put the readme.md in the nuget package
    • Seal the Sink class
Commits
  • ee5eca4 Merge pull request #15 from serilog/dev
  • d21bcbc Remove obsolete Gitter link [skip ci]
  • 3aad4a8 Publish from main
  • b114384 Publish from main; new key
  • aaba502 Merge pull request #14 from Numpsy/updates
  • 19e25de Set ContinuousIntegrationBuild=true in the CI build
  • 615152c Set version to 3
  • 60ba0f2 Enable SourceLink, with a snupkg file
  • 590a963 Include the readme file in the nuget package
  • da0abab Seal the sink class
  • Additional commits viewable in compare view

Updates Serilog from 3.1.1 to 4.0.0

Release notes

Sourced from Serilog's releases.

v4.0.0

What's new in Serilog 4.0.0?

If you're deploying to .NET Framework, note that Serilog's assembly version number has been unpinned from the long-running historical 2.0.0 default, and now matches the package version precisely. If you encounter issues, ensure your build is generating valid assembly binding redirects.

Simple, robust, built-in batching support

Sinks that need batching functionality can now be easily written, without any additional package dependencies, by implementing IBatchedLogEventSink:

class MyBatchedSink: IBatchedLogEventSink
{
    public Task EmitBatchAsync(IReadOnlyCollection<LogEvent> batch)
    {
        // Send a batch of log events...
    }
}

Batched sinks can be added using WriteTo.Sink(IBatchedLogEventSink, ...) - they're given first-class consideration just like regular un-batched sinks.

The built-in batching implementation is based on System.Threading.Channels and draws on the original Serilog.Sinks.PeriodicBatching package (now in maintenance-mode), to provide a full-featured, efficient, async-native batching implementation.

Experimental dotted name capturing

By setting an experimental AppContext switch, message templates can be used to capture dotted names, which are required when using some logging schemas.

AppContext.SetSwitch("Serilog.Parsing.MessageTemplateParser.AcceptDottedPropertyNames", true);
Log.Information("Running as {user.name}", Environment.UserName);
// Captures {"user.name": "nblumhardt"}

While currently experimental and unsupported, this flag is intended to help the ecosystem evaluate and prepare for dotted name support in a future Serilog release.

Changes

... (truncated)

Commits
  • 573a628 Merge pull request #2067 from serilog/dev
  • e963475 Attempt to make tests more robust on slow CI machines by increasing time steps
  • 5e18faf Update all dependencies, fix new xUnit lints
  • 9fcf795 Move TrimConfiguration to Capturing namespace, 'Configuration' namespace is j...
  • 4ef3a87 Remove noop byte cast
  • 9d3a088 fix: only disallows '}' in format strings, use byte comparison
  • 920b8c8 fix: allows all printable characters as format values
  • e1a0047 Typo - to -> do
  • 921eccc Scope back to only considering dots; improve tests
  • 592a124 Improve comment
  • Additional commits viewable in compare view

Updates Serilog from 3.1.1 to 4.0.0

Release notes

Sourced from Serilog's releases.

v4.0.0

What's new in Serilog 4.0.0?

If you're deploying to .NET Framework, note that Serilog's assembly version number has been unpinned from the long-running historical 2.0.0 default, and now matches the package version precisely. If you encounter issues, ensure your build is generating valid assembly binding redirects.

Simple, robust, built-in batching support

Sinks that need batching functionality can now be easily written, without any additional package dependencies, by implementing IBatchedLogEventSink:

class MyBatchedSink: IBatchedLogEventSink
{
    public Task EmitBatchAsync(IReadOnlyCollection<LogEvent> batch)
    {
        // Send a batch of log events...
    }
}

Batched sinks can be added using WriteTo.Sink(IBatchedLogEventSink, ...) - they're given first-class consideration just like regular un-batched sinks.

The built-in batching implementation is based on System.Threading.Channels and draws on the original Serilog.Sinks.PeriodicBatching package (now in maintenance-mode), to provide a full-featured, efficient, async-native batching implementation.

Experimental dotted name capturing

By setting an experimental AppContext switch, message templates can be used to capture dotted names, which are required when using some logging schemas.

AppContext.SetSwitch("Serilog.Parsing.MessageTemplateParser.AcceptDottedPropertyNames", true);
Log.Information("Running as {user.name}", Environment.UserName);
// Captures {"user.name": "nblumhardt"}

While currently experimental and unsupported, this flag is intended to help the ecosystem evaluate and prepare for dotted name support in a future Serilog release.

Changes

... (truncated)

Commits
  • 573a628 Merge pull request #2067 from serilog/dev
  • e963475 Attempt to make tests more robust on slow CI machines by increasing time steps
  • 5e18faf Update all dependencies, fix new xUnit lints
  • 9fcf795 Move TrimConfiguration to Capturing namespace, 'Configuration' namespace is j...
  • 4ef3a87 Remove noop byte cast
  • 9d3a088 fix: only disallows '}' in format strings, use byte comparison
  • 920b8c8 fix: allows all printable characters as format values
  • e1a0047 Typo - to -> do
  • 921eccc Scope back to only considering dots; improve tests
  • 592a124 Improve comment
  • Additional commits viewable in compare view

Updates Serilog.Sinks.Debug from 2.0.0 to 3.0.0

Release notes

Sourced from Serilog.Sinks.Debug's releases.

v3.0.0

  • Build on VS2022 (@​SimonCropp)
  • #14 - updates for Serilog 4 (@​Numpsy)
    • Update version to 3.0.0
    • Update TFMs to match Serilog 4
    • Update Serilog to v4 and all other deps to latest
    • Enable SourceLink and publish a snupkg file
    • Put the readme.md in the nuget package
    • Seal the Sink class
Commits
  • ee5eca4 Merge pull request #15 from serilog/dev
  • d21bcbc Remove obsolete Gitter link [skip ci]
  • 3aad4a8 Publish from main
  • b114384 Publish from main; new key
  • aaba502 Merge pull request #14 from Numpsy/updates
  • 19e25de Set ContinuousIntegrationBuild=true in the CI build
  • 615152c Set version to 3
  • 60ba0f2 Enable SourceLink, with a snupkg file
  • 590a963 Include the readme file in the nuget package
  • da0abab Seal the sink class
  • Additional commits viewable in compare view

Updates Serilog from 3.1.1 to 4.0.0

Release notes

Sourced from Serilog's releases.

v4.0.0

What's new in Serilog 4.0.0?

If you're deploying to .NET Framework, note that Serilog's assembly version number has been unpinned from the long-running historical 2.0.0 default, and now matches the package version precisely. If you encounter issues, ensure your build is generating valid assembly binding redirects.

Simple, robust, built-in batching support

Sinks that need batching functionality can now be easily written, without any additional package dependencies, by implementing IBatchedLogEventSink:

class MyBatchedSink: IBatchedLogEventSink
{
    public Task EmitBatchAsync(IReadOnlyCollection<LogEvent> batch)
    {
        // Send a batch of log events...
    }
}

Batched sinks can be added using WriteTo.Sink(IBatchedLogEventSink, ...) - they're given first-class consideration just like regular un-batched sinks.

The built-in batching implementation is based on System.Threading.Channels and draws on the original Serilog.Sinks.PeriodicBatching package (now in maintenance-mode), to provide a full-featured, efficient, async-native batching implementation.

Experimental dotted name capturing

By setting an experimental AppContext switch, message templates can be used to capture dotted names, which are required when using some logging schemas.

AppContext.SetSwitch("Serilog.Parsing.MessageTemplateParser.AcceptDottedPropertyNames", true);
Log.Information("Running as {user.name}", Environment.UserName);
// Captures {"user.name": "nblumhardt"}

While currently experimental and unsupported, this flag is intended to help the ecosystem evaluate and prepare for dotted name support in a future Serilog release.

Changes

... (truncated)

Commits
  • 573a628 Merge pull request #2067 from serilog/dev
  • e963475 Attempt to make tests more robust on slow CI machines by increasing time steps
  • 5e18faf Update all dependencies, fix new xUnit lints
  • 9fcf795 Move TrimConfiguration to Capturing namespace, 'Configuration' namespace is j...
  • 4ef3a87 Remove noop byte cast
  • 9d3a088 fix: only disallows '}' in format strings, use byte comparison
  • 920b8c8 fix: allows all printable characters as format values
  • e1a0047 Typo - to -> do
  • 921eccc Scope back to only considering dots; improve tests
  • 592a124 Improve comment
  • Additional commits viewable in compare view

Updates Microsoft.NET.Test.Sdk from 17.8.0 to 17.10.0

Release notes

Sourced from Microsoft.NET.Test.Sdk's releases.

v17.10.0

What's Changed

And many infrastructure related changes and updates.

New Contributors

Full Changelog: microsoft/vstest@v17.9.0...v17.10.0

v17.10.0-release-24177-07

What's Changed

... (truncated)

Commits

Updates xunit from 2.6.2 to 2.8.1

Commits
  • ba2ae9b v2.8.1
  • 151b8d0 Use 'dotnet format' instead of 'dotnet dotnet-format'
  • be6db6f #2931: Tighten up types to prevent accidentically calling AddOrGet with a Con...
  • f466d81 #2927: Misleading error message when class used in IClassFixture<> throws exc...
  • 1911ea7 Missed unit test updates
  • f497d65 Cannot use full assembly path as dictionary key for execution options lookup,...
  • c2f2d47 Add ability to provide live output messages from running tests
  • 013093b Polyfill in StringSyntaxAttribute
  • e1e4c2e #2719: Class with custom Fact with throwing Skip should fail appropriately
  • 8b0b13c Clarify naming
  • Additional commits viewable in compare view

Updates xunit.runner.visualstudio from 2.5.4 to 2.8.1

Commits
  • ce9211e v2.8.1
  • 3656cb8 Use 'dotnet format' instead of 'dotnet dotnet-format'
  • 45eb783 Pull in output printing bug fix from core
  • e205244 #408: Add ability to print live output messages
  • 06087e3 Latest actions versions
  • 075f3ff Bump up to 2.8.1-pre
  • 6438bb8 v2.8.0
  • 2afd4cd Pick up latest dependencies
  • b8be108 Add multiplier format support to RunSettings
  • 3c2e493 Update to 2.7.2-pre.17 and support Xunit.ParallelAlgorithm in RunSetttings
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

…pdates

Bumps the major-minor-dependencies group with 2 updates in the /backend/ILSpyX.Backend.LSP directory: [Serilog](https://github.com/serilog/serilog) and [Serilog.Sinks.Debug](https://github.com/serilog/serilog-sinks-debug).
Bumps the major-minor-dependencies group with 5 updates in the /backend/ILSpyX.Backend.Tests directory:

| Package | From | To |
| --- | --- | --- |
| [Serilog](https://github.com/serilog/serilog) | `3.1.1` | `4.0.0` |
| [Serilog](https://github.com/serilog/serilog) | `3.1.1` | `4.0.0` |
| [Serilog.Sinks.Debug](https://github.com/serilog/serilog-sinks-debug) | `2.0.0` | `3.0.0` |
| [Serilog](https://github.com/serilog/serilog) | `3.1.1` | `4.0.0` |
| [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest) | `17.8.0` | `17.10.0` |
| [xunit](https://github.com/xunit/xunit) | `2.6.2` | `2.8.1` |
| [xunit.runner.visualstudio](https://github.com/xunit/visualstudio.xunit) | `2.5.4` | `2.8.1` |



Updates `Serilog` from 3.1.1 to 4.0.0
- [Release notes](https://github.com/serilog/serilog/releases)
- [Commits](serilog/serilog@v3.1.1...v4.0.0)

Updates `Serilog.Sinks.Debug` from 2.0.0 to 3.0.0
- [Release notes](https://github.com/serilog/serilog-sinks-debug/releases)
- [Commits](serilog/serilog-sinks-debug@v2.0.0...v3.0.0)

Updates `Serilog` from 3.1.1 to 4.0.0
- [Release notes](https://github.com/serilog/serilog/releases)
- [Commits](serilog/serilog@v3.1.1...v4.0.0)

Updates `Serilog` from 3.1.1 to 4.0.0
- [Release notes](https://github.com/serilog/serilog/releases)
- [Commits](serilog/serilog@v3.1.1...v4.0.0)

Updates `Serilog.Sinks.Debug` from 2.0.0 to 3.0.0
- [Release notes](https://github.com/serilog/serilog-sinks-debug/releases)
- [Commits](serilog/serilog-sinks-debug@v2.0.0...v3.0.0)

Updates `Serilog` from 3.1.1 to 4.0.0
- [Release notes](https://github.com/serilog/serilog/releases)
- [Commits](serilog/serilog@v3.1.1...v4.0.0)

Updates `Microsoft.NET.Test.Sdk` from 17.8.0 to 17.10.0
- [Release notes](https://github.com/microsoft/vstest/releases)
- [Changelog](https://github.com/microsoft/vstest/blob/main/docs/releases.md)
- [Commits](microsoft/vstest@v17.8.0...v17.10.0)

Updates `xunit` from 2.6.2 to 2.8.1
- [Commits](xunit/xunit@2.6.2...2.8.1)

Updates `xunit.runner.visualstudio` from 2.5.4 to 2.8.1
- [Release notes](https://github.com/xunit/visualstudio.xunit/releases)
- [Commits](xunit/visualstudio.xunit@2.5.4...2.8.1)

---
updated-dependencies:
- dependency-name: Serilog
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: major-minor-dependencies
- dependency-name: Serilog.Sinks.Debug
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: major-minor-dependencies
- dependency-name: Serilog
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: major-minor-dependencies
- dependency-name: Serilog
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: major-minor-dependencies
- dependency-name: Serilog.Sinks.Debug
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: major-minor-dependencies
- dependency-name: Serilog
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: major-minor-dependencies
- dependency-name: Microsoft.NET.Test.Sdk
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: major-minor-dependencies
- dependency-name: xunit
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: major-minor-dependencies
- dependency-name: xunit.runner.visualstudio
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: major-minor-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added .NET Pull requests that update .net code dependencies Pull requests that update a dependency file labels Jun 25, 2024
@Rpinski Rpinski merged commit 663295a into master Jun 26, 2024
1 check passed
@dependabot dependabot bot deleted the dependabot/nuget/backend/ILSpyX.Backend.LSP/major-minor-dependencies-a90a00ba06 branch June 26, 2024 21:46
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file .NET Pull requests that update .net code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant