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

build(deps): bump the dependencies group in /server with 10 updates #293

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

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 18, 2024

Bumps the dependencies group in /server with 10 updates:

Package From To
Verify.Xunit 28.2.0 28.3.2
Microsoft.Extensions.Hosting.Abstractions 8.0.1 9.0.0
Vogen 5.0.3 5.0.5
Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 8.0.10 8.0.11
Microsoft.AspNetCore.Authentication.JwtBearer 8.0.10 8.0.11
Microsoft.EntityFrameworkCore.Design 8.0.10 9.0.0
Swashbuckle.AspNetCore 6.9.0 7.0.0
csharpier 0.29.2 0.30.1
dotnet-ef 8.0.10 9.0.0
swashbuckle.aspnetcore.cli 6.9.0 7.0.0

Updates Verify.Xunit from 28.2.0 to 28.3.2

Commits

Updates Microsoft.Extensions.Hosting.Abstractions from 8.0.1 to 9.0.0

Release notes

Sourced from Microsoft.Extensions.Hosting.Abstractions's releases.

.NET 9.0.0

Release

What's Changed

... (truncated)

Commits

Updates Vogen from 5.0.3 to 5.0.5

Release notes

Sourced from Vogen's releases.

5.0.5

What's Changed

Full Changelog: SteveDunn/Vogen@5.0.3...5.0.5

5.0.5-rc.2

Minor fix to triple-slash comments Full Changelog: SteveDunn/Vogen@5.0.5-rc.1...5.0.5-rc.2

5.0.5-rc.1

What's Changed

Full Changelog: SteveDunn/Vogen@5.0.5-beta.3...5.0.5-rc.1

5.0.5-beta.3

What's Changed

Full Changelog: SteveDunn/Vogen@5.0.5-beta.2...5.0.5-beta.3

5.0.5-beta.2

What's Changed

Full Changelog: SteveDunn/Vogen@5.0.4-beta.1...5.0.5-beta.2

5.0.5-beta1

What's Changed

Full Changelog: SteveDunn/Vogen@5.0.3...5.0.4-beta.1

Commits

Updates Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore from 8.0.10 to 8.0.11

Release notes

Sourced from Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore's releases.

.NET 8.0.11

Release

What's Changed

Full Changelog: dotnet/aspnetcore@v8.0.10...v8.0.11

Commits

Updates Microsoft.AspNetCore.Authentication.JwtBearer from 8.0.10 to 8.0.11

Release notes

Sourced from Microsoft.AspNetCore.Authentication.JwtBearer's releases.

.NET 8.0.11

Release

What's Changed

Full Changelog: dotnet/aspnetcore@v8.0.10...v8.0.11

Commits

Updates Microsoft.EntityFrameworkCore.Design from 8.0.10 to 9.0.0

Release notes

Sourced from Microsoft.EntityFrameworkCore.Design's releases.

.NET 9.0.0

Release

What's Changed

... (truncated)

Commits

Updates Swashbuckle.AspNetCore from 6.9.0 to 7.0.0

Release notes

Sourced from Swashbuckle.AspNetCore's releases.

v7.0.0

What's Changed

New Contributors

Full Changelog: domaindrivendev/Swashbuckle.AspNetCore@v6.9.0...v7.0.0

Commits

Updates csharpier from 0.29.2 to 0.30.1

Release notes

Sourced from csharpier's releases.

0.30.0

Breaking Changes

The CSharpier dotnet tool no longer supports net6 & net7.

What's Changed

Support C# 13 & dotnet 9. #1318

CSharpier now supports dotnet 9 along with formatting all C# 13 language features.

Inconsistent Formatting for new() Operator Compared to Explicit Object Constructors #1364

Implicit and explicit object initialization with constructors was not formatted consistently

// input & expected output
SomeObject someObject = new(
    someLongParameter___________________,
    someLongParameter___________________
)
{
    Property = longValue_______________________________________________________________________,
};
SomeObject someObject = new SomeObject(
someLongParameter___________________,
someLongParameter___________________
)
{
Property = longValue_______________________________________________________________________,
};
// 0.29.2
SomeObject someObject =
new(someLongParameter___________________, someLongParameter___________________)
{
Property = longValue_______________________________________________________________________,
};
SomeObject someObject = new SomeObject(
someLongParameter___________________,
someLongParameter___________________
)
{
Property = longValue_______________________________________________________________________,
};

Adds additional space before each member access in verbatim interpolated multiline string #1358

When an interpolated verbatim string contained line breaks, the code within the interpolations would contain extra spaces.

// input & expected output
var someStringWithLineBreakAndLongValue =
    $@"
{someValue.GetValue().Name} someLongText________________________________________________________________";
</tr></table>

... (truncated)

Changelog

Sourced from csharpier's changelog.

# 0.30.1

What's Changed

Revert tool command back to dotnet-csharpier, it was supposed to be changed to csharpier for 1.0.0

0.30.0

Breaking Changes

The CSharpier dotnet tool no longer supports net6 & net7.

What's Changed

Support C# 13 & dotnet 9. #1318

CSharpier now supports dotnet 9 along with formatting all C# 13 language features.

Inconsistent Formatting for new() Operator Compared to Explicit Object Constructors #1364

Implicit and explicit object initialization with constructors was not formatted consistently

// input & expected output
SomeObject someObject = new(
    someLongParameter___________________,
    someLongParameter___________________
)
{
    Property = longValue_______________________________________________________________________,
};
SomeObject someObject = new SomeObject(
someLongParameter___________________,
someLongParameter___________________
)
{
Property = longValue_______________________________________________________________________,
};
// 0.29.2
SomeObject someObject =
new(someLongParameter___________________, someLongParameter___________________)
{
Property = longValue_______________________________________________________________________,
};
SomeObject someObject = new SomeObject(
someLongParameter___________________,
someLongParameter___________________
)
{
Property = longValue_______________________________________________________________________,
};

Adds additional space before each member access in verbatim interpolated multiline string #1358

When an interpolated verbatim string contained line breaks, the code within the interpolations would contain extra spaces.

// input & expected output
</tr></table> 

... (truncated)

Commits
  • fedc791 Releasing 0.30.1 (#1384)
  • 6375fab revert tool command, this was supposed to be in 1.0.0 only (#1383)
  • 0425539 Releasing 0.30.0 (#1381)
  • 4dfa243 Ensure we are ready for the next major version. (#1380)
  • 1c76620 Update Editors.md with conform.nvim suggestion for Neovim (#1379)
  • cfb0a03 use 0.29.2 and fix the 0.0.1 warning
  • 91bbafb Fixing extra line + indent with collection expression on fields (#1371)
  • b14d79f Fixing issue with a trailing comma being added after a trailing comment (#1370)
  • 13cd0c0 fix: remove extra hyphen in troubleshooting step file (#1372)
  • 42622cd fix extra space being added in invocation that is inside verbatim str… (#1373)
  • Additional commits viewable in compare view

Updates dotnet-ef from 8.0.10 to 9.0.0

Release notes

Sourced from dotnet-ef's releases.

.NET 9.0.0

Release

What's Changed

Bumps the dependencies group in /server with 10 updates:

| Package | From | To |
| --- | --- | --- |
| [Verify.Xunit](https://github.com/VerifyTests/Verify) | `28.2.0` | `28.3.2` |
| [Microsoft.Extensions.Hosting.Abstractions](https://github.com/dotnet/runtime) | `8.0.1` | `9.0.0` |
| [Vogen](https://github.com/SteveDunn/Vogen) | `5.0.3` | `5.0.5` |
| [Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore](https://github.com/dotnet/aspnetcore) | `8.0.10` | `8.0.11` |
| [Microsoft.AspNetCore.Authentication.JwtBearer](https://github.com/dotnet/aspnetcore) | `8.0.10` | `8.0.11` |
| [Microsoft.EntityFrameworkCore.Design](https://github.com/dotnet/efcore) | `8.0.10` | `9.0.0` |
| [Swashbuckle.AspNetCore](https://github.com/domaindrivendev/Swashbuckle.AspNetCore) | `6.9.0` | `7.0.0` |
| [csharpier](https://github.com/belav/csharpier) | `0.29.2` | `0.30.1` |
| [dotnet-ef](https://github.com/dotnet/efcore) | `8.0.10` | `9.0.0` |
| [swashbuckle.aspnetcore.cli](https://github.com/domaindrivendev/Swashbuckle.AspNetCore) | `6.9.0` | `7.0.0` |


Updates `Verify.Xunit` from 28.2.0 to 28.3.2
- [Release notes](https://github.com/VerifyTests/Verify/releases)
- [Commits](VerifyTests/Verify@28.2.0...28.3.2)

Updates `Microsoft.Extensions.Hosting.Abstractions` from 8.0.1 to 9.0.0
- [Release notes](https://github.com/dotnet/runtime/releases)
- [Commits](dotnet/runtime@v8.0.1...v9.0.0)

Updates `Vogen` from 5.0.3 to 5.0.5
- [Release notes](https://github.com/SteveDunn/Vogen/releases)
- [Commits](SteveDunn/Vogen@5.0.3...5.0.5)

Updates `Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore` from 8.0.10 to 8.0.11
- [Release notes](https://github.com/dotnet/aspnetcore/releases)
- [Changelog](https://github.com/dotnet/aspnetcore/blob/main/docs/ReleasePlanning.md)
- [Commits](dotnet/aspnetcore@v8.0.10...v8.0.11)

Updates `Microsoft.AspNetCore.Authentication.JwtBearer` from 8.0.10 to 8.0.11
- [Release notes](https://github.com/dotnet/aspnetcore/releases)
- [Changelog](https://github.com/dotnet/aspnetcore/blob/main/docs/ReleasePlanning.md)
- [Commits](dotnet/aspnetcore@v8.0.10...v8.0.11)

Updates `Microsoft.EntityFrameworkCore.Design` from 8.0.10 to 9.0.0
- [Release notes](https://github.com/dotnet/efcore/releases)
- [Commits](dotnet/efcore@v8.0.10...v9.0.0)

Updates `Swashbuckle.AspNetCore` from 6.9.0 to 7.0.0
- [Release notes](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/releases)
- [Commits](domaindrivendev/Swashbuckle.AspNetCore@v6.9.0...v7.0.0)

Updates `csharpier` from 0.29.2 to 0.30.1
- [Release notes](https://github.com/belav/csharpier/releases)
- [Changelog](https://github.com/belav/csharpier/blob/main/CHANGELOG.md)
- [Commits](belav/csharpier@0.29.2...0.30.1)

Updates `dotnet-ef` from 8.0.10 to 9.0.0
- [Release notes](https://github.com/dotnet/efcore/releases)
- [Commits](dotnet/efcore@v8.0.10...v9.0.0)

Updates `swashbuckle.aspnetcore.cli` from 6.9.0 to 7.0.0
- [Release notes](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/releases)
- [Commits](domaindrivendev/Swashbuckle.AspNetCore@v6.9.0...v7.0.0)

---
updated-dependencies:
- dependency-name: Verify.Xunit
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: Microsoft.Extensions.Hosting.Abstractions
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: Vogen
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: Microsoft.AspNetCore.Authentication.JwtBearer
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: Microsoft.EntityFrameworkCore.Design
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: Swashbuckle.AspNetCore
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: csharpier
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: dotnet-ef
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: swashbuckle.aspnetcore.cli
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies nuget nuget package-ecosystem labels Nov 18, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies nuget nuget package-ecosystem
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants