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

Bump Serilog.Settings.Configuration and Serilog #39

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Dec 21, 2023

Bumps Serilog.Settings.Configuration and Serilog. These dependencies needed to be updated together.
Updates Serilog.Settings.Configuration from 3.1.0 to 8.0.0

Release notes

Sourced from Serilog.Settings.Configuration's releases.

v8.0.0

v7.0.1

  • #388 - case-insensitive parsing for level overrides (@​sungam3r)
  • #391 - relax check for existence of Using section in configuration when publishing in single-file mode (@​0xced)

v7.0.0

v3.4.0

  • #291 - fix static member access for parameters of concrete types (@​skomis-mm)
  • #307 - enable ExtensionAttribute polyfills (@​sajagi)
  • #310 - accept list of sink/configuration assemblies directly in ReadFrom.Configuration() (@​0xced)
  • #311 - remove out of support target frameworks from tests and samples (@​0xced)
  • #312 - fix ReSharper/Rider inspection warnings (@​0xced)

... (truncated)

Changelog

Sourced from Serilog.Settings.Configuration's changelog.

Changelog

3.3.1

  • #287 - Fix static member access for concrete type parameters

3.3.0

  • #276, #225, #167 - added support for constructors with arguments for complex types

3.2.0

  • #162 - LoggingFilterSwitch support
  • #202 - added support to AuditTo.Logger
  • #203 - added support for custom types in arrays and custom collections
  • #218 - fixed an issue with dotnet restore with rid specified if referenced from netstandard project
  • #219 - reduced search graph for configuration dlls to avoid native assets
  • #221 - added support for conditional/leveled enrichers from Serilog 2.9+
  • #222 - updated Microsoft.Extensions.DependencyModel
  • #231 - make '$' sign optional for minimum level / filter switch declarations
  • #237 - DependencyContextAssemblyFinder fix: check serilog at the start of the name for any dependent package
  • #239 - handle NotSupportedException for .net 5.0 single file applications
  • #260 - skip static constructor on binding for complex parameters types
Commits
  • 014b42c Merge pull request #402 from serilog/dev
  • 717a458 Merge pull request #397 from 0xced/nuget-metadata
  • 7fc0d58 Merge pull request #401 from nblumhardt/dotnet-8
  • 41bc33d Use the regular dotnet test command invocation
  • b56af24 Remove generated files
  • c9b46f3 Hitting some test runner issues in CI, falling back to matching 2.5.3 version...
  • a234c68 Update to .NET 8 RTM and Serilog 3.1.1
  • 0ea70d3 Update publishing key
  • b174dd2 Merge pull request #400 from nblumhardt/net-80-rc2
  • 7ae61e6 Review feedback
  • Additional commits viewable in compare view

Updates Serilog from 2.9.0 to 3.1.1

Release notes

Sourced from Serilog's releases.

v3.1.1

  • #1977 - don't stack overflow when disposing ReusableStringWriter with large renderings (@​nblumhardt)

This is a bugfix for release 3.1.0.

v3.1.0

Built-in trace and span id support

This release adds two new first-class properties to LogEvent: TraceId and SpanId. These are set automatically in Logger.Write() to the corresponding property values from System.Diagnostics.Activity.Current.

The major benefit of this change is that sinks, once updated, can reliably propagate trace and span ids through to back-ends that support them (in much the same way that first-class timestamps, messages, levels, and exceptions are used today).

The sinks maintained under serilog/serilog, along with formatting helpers such as Serilog.Formatting.Compact and Serilog.Expressions, are already compatible with this change or have pending releases that add compatibility.

Dropped .NET Core 2.1 and 3.0 support

On .NET Core 2.1 and 3.0, projects targeting Serilog 3.1+ will fail to build, with:

/project/packages/system.runtime.compilerservices.unsafe/6.0.0/buildTransitive/netcoreapp2.0
/System.Runtime.CompilerServices.Unsafe.targets(4,5): error : System.Runtime.CompilerServices.Unsafe
doesn't support netcoreapp2.1. Consider updating your TargetFramework to netcoreapp3.1 or later.

Affected consumers should continue to use Serilog 3.0 or earlier. See serilog/serilog#1983 for a discussion of this issue.

Technical breaking change

Trace and span id collection includes support for {TraceId} and {SpanId} placeholders in output templates (commonly used when formatting text log files). Where previously these names resolved to user-defined properties, they now resolve to the built-in LogEvent.TraceId and LogEvent.SpanId values, respectively.

Impact is expected to be low/zero, because the trace and span id values in any user-added properties are almost certainly identical to the built-in ones.

v3.0.1

v3.0.0

What's new in 3.0.0?

Target framework changes - Serilog no longer targets netstandard1.x or .NET Framework versions earlier than .NET 4.6.2. Users on affected frameworks should continue to target Serilog 2.12.x.

... (truncated)

Commits
  • 999d686 Merge pull request #1978 from serilog/dev
  • 16739f0 Don't stack overflow when disposing ReusableStringWriter (#1977)
  • ca4efda Dev version bump [skip ci]
  • 765a046 Merge pull request #1975 from serilog/dev
  • e37837e chore(docs): Markdown housekeeping (#1969)
  • a493ffd chore: Drop test coverage for out of support .NET Core vers (#1971)
  • e059e9f Make StringBuilderCapacityThreshold the even power of two that was intended
  • 8d0e2ed ReusableStringWriter: Dispose instance with too big buffer (#1964)
  • 88f76a8 By reference string comparison in template cache (#1947)
  • d6e80e6 Removed temporary array allocations for properties (#1948)
  • 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

Bumps [Serilog.Settings.Configuration](https://github.com/serilog/serilog-settings-configuration) and [Serilog](https://github.com/serilog/serilog). These dependencies needed to be updated together.

Updates `Serilog.Settings.Configuration` from 3.1.0 to 8.0.0
- [Release notes](https://github.com/serilog/serilog-settings-configuration/releases)
- [Changelog](https://github.com/serilog/serilog-settings-configuration/blob/dev/CHANGES.md)
- [Commits](serilog/serilog-settings-configuration@v3.1.0...v8.0.0)

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

---
updated-dependencies:
- dependency-name: Serilog.Settings.Configuration
  dependency-type: direct:production
  update-type: version-update:semver-major
- dependency-name: Serilog
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added .NET Pull requests that update .net code dependencies Pull requests that update a dependency file labels Dec 21, 2023
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.

None yet

0 participants