Skip to content

Bump the all-dependencies group with 6 updates - #43

Merged
mmuffins merged 1 commit into
mainfrom
dependabot/nuget/dot-config/all-dependencies-272d2541a3
Mar 1, 2026
Merged

Bump the all-dependencies group with 6 updates#43
mmuffins merged 1 commit into
mainfrom
dependabot/nuget/dot-config/all-dependencies-272d2541a3

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Mar 1, 2026

Copy link
Copy Markdown
Contributor

Updated csharpier from 1.2.5 to 1.2.6.

Release notes

Sourced from csharpier's releases.

1.2.6

What's Changed

[Bug]: XML with DOCTYPE results in "invalid xml" warning #​1809

CSharpier was not formatting xml that included a doctype and instead reporting that it was invalid xml.

<?xml version="1.0"?>
<!DOCTYPE staff SYSTEM "staff.dtd"[
    <!ENTITY ent1 "es">
]>
<staff></staff>

[Bug]: Initializing a span using stackalloc leads to different formatting compared to new #​1808

When initializing a spacn using stackalloc, it was not being formatting consistently with other code

// input & expected output
Span<int> metatable = new int[]
{
    00000000000000000000000001,
    00000000000000000000000002,
    00000000000000000000000003,
};

Span<int> metatable = stackalloc int[]
{
    00000000000000000000000001,
    00000000000000000000000002,
    00000000000000000000000003,
};

// 1.2.5
Span<int> metatable = new int[]
{
    00000000000000000000000001,
    00000000000000000000000002,
    00000000000000000000000003,
};

Span<int> metatable =
    stackalloc int[] {
        00000000000000000000000001,
        00000000000000000000000002,
        00000000000000000000000003,
    };

[Bug]: Comments in otherwise empty object pattern disappear when formatting #​1804

CSharpier was removing comments if they were the only content of an object pattern.

// input & expected output
var match = obj is {
    //Property: 123
 ... (truncated)

Commits viewable in [compare view](https://github.com/belav/csharpier/compare/1.2.5...1.2.6).
</details>

Updated [Microsoft.Extensions.Configuration](https://github.com/dotnet/dotnet) from 10.0.2 to 10.0.3.

<details>
<summary>Release notes</summary>

_Sourced from [Microsoft.Extensions.Configuration's releases](https://github.com/dotnet/dotnet/releases)._

No release notes found for this version range.

Commits viewable in [compare view](https://github.com/dotnet/dotnet/commits).
</details>

Updated [Microsoft.Extensions.Configuration.Json](https://github.com/dotnet/dotnet) from 10.0.2 to 10.0.3.

<details>
<summary>Release notes</summary>

_Sourced from [Microsoft.Extensions.Configuration.Json's releases](https://github.com/dotnet/dotnet/releases)._

No release notes found for this version range.

Commits viewable in [compare view](https://github.com/dotnet/dotnet/commits).
</details>

Updated [Microsoft.Extensions.Hosting.Systemd](https://github.com/dotnet/dotnet) from 10.0.2 to 10.0.3.

<details>
<summary>Release notes</summary>

_Sourced from [Microsoft.Extensions.Hosting.Systemd's releases](https://github.com/dotnet/dotnet/releases)._

No release notes found for this version range.

Commits viewable in [compare view](https://github.com/dotnet/dotnet/commits).
</details>

Updated [Tmds.DBus](https://github.com/tmds/Tmds.DBus) from 0.23.0 to 0.90.3.

<details>
<summary>Release notes</summary>

_Sourced from [Tmds.DBus's releases](https://github.com/tmds/Tmds.DBus/releases)._

## 0.90.3

* Revert the 0.90.0 change that passes reader/handler exceptions back to the handler. (https://github.com/tmds/Tmds.DBus/pull/403)

## 0.90.2

Tmds.DBus.Generator/Tmds.DBus.Tool:
* ProtocolGenerator: fix codegen causing (string?)null-conversion instead of returning default(ObjectPath?) for ObjectPath properties. (https://github.com/tmds/Tmds.DBus/pull/402)

## 0.90.1

Tmds.DBus.Generator:
* Lower expected version of Microsoft.CodeAnalysis.CSharp to 4.12.0 (https://github.com/tmds/Tmds.DBus/pull/400)

## 0.90.0

## Tmds.DBus.Protocol

This release does some refactoring which requires changes from the user. The version is binary compatible with the previous version. `Obsolete` attributes indicate what changes a user should make.

- These types have been renamed to be less generic:

Connection -> DBusConnection (tmds/Tmds.DBus#373)
Address -> DBusAddress (tmds/Tmds.DBus#372)
ActionException -> ObserverHandler (tmds/Tmds.DBus#371)


When you have code that requires the `Connection` type, you can call `DBusConnection.AsConnection()`.

- The exception types have been refactored. A base type is introduced for connection related errors, and one for errors related to a received message. These base types also share a common base. (https://github.com/tmds/Tmds.DBus/pull/370, https://github.com/tmds/Tmds.DBus/pull/385, https://github.com/tmds/Tmds.DBus/pull/386, https://github.com/tmds/Tmds.DBus/pull/387).

DBusExceptionBase
├── DBusConnectionException
│ ├── DBusConnectionClosedException
│ │ └── DisconnectedException (obsolete -> DBusConnectionClosedException)
│ └── DBusConnectFailedException
│ └── ConnectException (obsolete -> DBusConnectFailedException)
└── DBusMessageException
├── DBusReadException
├── DBusErrorReplyException
│ └── DBusException (obsolete -> DBusErrorReplyException)
└── DBusUnexpectedValueException
└── ProtocolException (obsolete -> DBusUnexpectedValueException)


Behavioral changes:

- The `Reader` throws `DBusReadException` when the message body and the read operations mismatch. When trying to read a handle that was already read, it throws `DBusUnexpectedValueException`. (https://github.com/tmds/Tmds.DBus/pull/385, https://github.com/tmds/Tmds.DBus/pull/399)
- When an observer reader/handler throws, we stop observing and pass the exception to the handler. (https://github.com/tmds/Tmds.DBus/pull/395)
- `Message.SignatureAsString` return an empty string when the signature header is omitted. (https://github.com/tmds/Tmds.DBus/pull/384)
- `Reader.ReadHandle` methods return a non-null handle to avoid user having to do null-handling. (https://github.com/tmds/Tmds.DBus/pull/364)

New APIs:

- A new `DBusService` type represents a peer reachable via the connection. (https://github.com/tmds/Tmds.DBus/pull/374)
- A new `DBusObject` type may be used as a base class for proxy classes. (https://github.com/tmds/Tmds.DBus/pull/376)
- A new `SkipSafeHandle` type may be used with the `Reader.ReadHandle`/`VariantValue.ReadHandle` method to indicate a handle should not be read. This enables letting the user decide to skip reading the handle or not through what generic argument they are passing. (https://github.com/tmds/Tmds.DBus/pull/363)
- New methods are added to `DBusConnection` for watching signals and property changes. (https://github.com/tmds/Tmds.DBus/pull/376)

## Tmds.DBus.Generator

- This new package provides a Roslyn source generator that performs code generation for the `Tmds.DBus.Protocol` API. Only proxies are supported. (https://github.com/tmds/Tmds.DBus/pull/378)

## Documentation
 ... (truncated)

Commits viewable in [compare view](https://github.com/tmds/Tmds.DBus/compare/rel/0.23.0...rel/0.90.3).
</details>

Updated [Tmds.DBus.Protocol](https://github.com/tmds/Tmds.DBus) from 0.23.0 to 0.90.3.

<details>
<summary>Release notes</summary>

_Sourced from [Tmds.DBus.Protocol's releases](https://github.com/tmds/Tmds.DBus/releases)._

## 0.90.3

* Revert the 0.90.0 change that passes reader/handler exceptions back to the handler. (https://github.com/tmds/Tmds.DBus/pull/403)

## 0.90.2

Tmds.DBus.Generator/Tmds.DBus.Tool:
* ProtocolGenerator: fix codegen causing (string?)null-conversion instead of returning default(ObjectPath?) for ObjectPath properties. (https://github.com/tmds/Tmds.DBus/pull/402)

## 0.90.1

Tmds.DBus.Generator:
* Lower expected version of Microsoft.CodeAnalysis.CSharp to 4.12.0 (https://github.com/tmds/Tmds.DBus/pull/400)

## 0.90.0

## Tmds.DBus.Protocol

This release does some refactoring which requires changes from the user. The version is binary compatible with the previous version. `Obsolete` attributes indicate what changes a user should make.

- These types have been renamed to be less generic:

Connection -> DBusConnection (tmds/Tmds.DBus#373)
Address -> DBusAddress (tmds/Tmds.DBus#372)
ActionException -> ObserverHandler (tmds/Tmds.DBus#371)


When you have code that requires the `Connection` type, you can call `DBusConnection.AsConnection()`.

- The exception types have been refactored. A base type is introduced for connection related errors, and one for errors related to a received message. These base types also share a common base. (https://github.com/tmds/Tmds.DBus/pull/370, https://github.com/tmds/Tmds.DBus/pull/385, https://github.com/tmds/Tmds.DBus/pull/386, https://github.com/tmds/Tmds.DBus/pull/387).

DBusExceptionBase
├── DBusConnectionException
│ ├── DBusConnectionClosedException
│ │ └── DisconnectedException (obsolete -> DBusConnectionClosedException)
│ └── DBusConnectFailedException
│ └── ConnectException (obsolete -> DBusConnectFailedException)
└── DBusMessageException
├── DBusReadException
├── DBusErrorReplyException
│ └── DBusException (obsolete -> DBusErrorReplyException)
└── DBusUnexpectedValueException
└── ProtocolException (obsolete -> DBusUnexpectedValueException)


Behavioral changes:

- The `Reader` throws `DBusReadException` when the message body and the read operations mismatch. When trying to read a handle that was already read, it throws `DBusUnexpectedValueException`. (https://github.com/tmds/Tmds.DBus/pull/385, https://github.com/tmds/Tmds.DBus/pull/399)
- When an observer reader/handler throws, we stop observing and pass the exception to the handler. (https://github.com/tmds/Tmds.DBus/pull/395)
- `Message.SignatureAsString` return an empty string when the signature header is omitted. (https://github.com/tmds/Tmds.DBus/pull/384)
- `Reader.ReadHandle` methods return a non-null handle to avoid user having to do null-handling. (https://github.com/tmds/Tmds.DBus/pull/364)

New APIs:

- A new `DBusService` type represents a peer reachable via the connection. (https://github.com/tmds/Tmds.DBus/pull/374)
- A new `DBusObject` type may be used as a base class for proxy classes. (https://github.com/tmds/Tmds.DBus/pull/376)
- A new `SkipSafeHandle` type may be used with the `Reader.ReadHandle`/`VariantValue.ReadHandle` method to indicate a handle should not be read. This enables letting the user decide to skip reading the handle or not through what generic argument they are passing. (https://github.com/tmds/Tmds.DBus/pull/363)
- New methods are added to `DBusConnection` for watching signals and property changes. (https://github.com/tmds/Tmds.DBus/pull/376)

## Tmds.DBus.Generator

- This new package provides a Roslyn source generator that performs code generation for the `Tmds.DBus.Protocol` API. Only proxies are supported. (https://github.com/tmds/Tmds.DBus/pull/378)

## Documentation
 ... (truncated)

Commits viewable in [compare view](https://github.com/tmds/Tmds.DBus/compare/rel/0.23.0...rel/0.90.3).
</details>

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-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

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 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


</details>

Bumps csharpier from 1.2.5 to 1.2.6
Bumps Microsoft.Extensions.Configuration from 10.0.2 to 10.0.3
Bumps Microsoft.Extensions.Configuration.Json from 10.0.2 to 10.0.3
Bumps Microsoft.Extensions.Hosting.Systemd from 10.0.2 to 10.0.3
Bumps Tmds.DBus from 0.23.0 to 0.90.3
Bumps Tmds.DBus.Protocol from 0.23.0 to 0.90.3

---
updated-dependencies:
- dependency-name: csharpier
  dependency-version: 1.2.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: Microsoft.Extensions.Configuration
  dependency-version: 10.0.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: Microsoft.Extensions.Configuration.Json
  dependency-version: 10.0.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: Microsoft.Extensions.Hosting.Systemd
  dependency-version: 10.0.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: Tmds.DBus
  dependency-version: 0.90.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: Tmds.DBus.Protocol
  dependency-version: 0.90.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-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 Mar 1, 2026
@mmuffins
mmuffins merged commit e2e6395 into main Mar 1, 2026
4 checks passed
@dependabot
dependabot Bot deleted the dependabot/nuget/dot-config/all-dependencies-272d2541a3 branch March 1, 2026 22:16
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