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 CSharpier.Core, System.Text.Encodings.Web and System.Text.Json #879

Merged
merged 2 commits into from
Dec 30, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 30, 2024

Bumps CSharpier.Core, System.Text.Encodings.Web and System.Text.Json. These dependencies needed to be updated together.
Updates CSharpier.Core from 0.30.3 to 0.30.4

Release notes

Sourced from CSharpier.Core's releases.

0.30.4

What's Changed

Formatting deletes unsafe modifier #1416

Formatting a using directive with an unsafe modifier resulted in the lose of the unsafe keyword

// input & expected output
using unsafe NvapiQueryInterface = delegate* unmanaged[Cdecl]<uint, nint>;
// 0.30.3
using NvapiQueryInterface = delegate* unmanaged[Cdecl]<uint, nint>;

CSharpier keeps adding a newline every time a file is formatted #1408

In some cases if a file ended with a comment, CSharpier would add a new extra blank line above the comment each time it formatted the file

// input & expected outpet
using System;
namespace MyCompany.MyNamespace;
// Comment block
// 0.30.3
using System;
namespace MyCompany.MyNamespace;
// Comment block

Full Changelog: belav/csharpier@0.30.3...0.30.4

Changelog

Sourced from CSharpier.Core's changelog.

# 0.30.4

What's Changed

Formatting deletes unsafe modifier #1416

Formatting a using directive with an unsafe modifier resulted in the lose of the unsafe keyword

// input & expected output
using unsafe NvapiQueryInterface = delegate* unmanaged[Cdecl]<uint, nint>;
// 0.30.3
using NvapiQueryInterface = delegate* unmanaged[Cdecl]<uint, nint>;

CSharpier keeps adding a newline every time a file is formatted #1408

In some cases if a file ended with a comment, CSharpier would add a new extra blank line above the comment each time it formatted the file

// input & expected outpet
using System;
namespace MyCompany.MyNamespace;
// Comment block
// 0.30.3
using System;
namespace MyCompany.MyNamespace;
// Comment block

Full Changelog: belav/csharpier@0.30.3...0.30.4

Commits
  • 064d35f Releasing 0.30.4 (#1420)
  • cd618ac Fixing a bug introduced by one of the fixes (#1421)
  • 3b88bee Fixing issue with losing unsafe keyword on using statement (#1417)
  • e3b5efb Figuring out a way to prevent the extra line before a file ending comment (#1...
  • baa3138 Some refactoring that was in the csproj branch but didn't really belng there ...
  • bfedce4 Ignoring files in "" when reporting that csharpier needs to be insta… (#1412)
  • 6d285fe Avoid eagerly warming csharpier, doesn't seem to be a good way to delay that ...
  • 5cf6488 Fixing bug for VS2022 options page not working when no solution open. (#1410)
  • 3c6f9ce Adding an option to disable diagnostics for unformatted code. (#1404)
  • See full diff in compare view

Updates System.Text.Encodings.Web from 8.0.0 to 8.0.0

Commits

Updates System.Text.Json from 8.0.5 to 8.0.5

Commits

Most Recent Ignore Conditions Applied to This Pull Request
Dependency Name Ignore Conditions
System.Text.Encodings.Web [>= 9.a, < 10]
System.Text.Json [>= 9.a, < 10]

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 this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [CSharpier.Core](https://github.com/belav/csharpier), [System.Text.Encodings.Web](https://github.com/dotnet/runtime) and [System.Text.Json](https://github.com/dotnet/runtime). These dependencies needed to be updated together.

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

Updates `System.Text.Encodings.Web` from 8.0.0 to 8.0.0
- [Release notes](https://github.com/dotnet/runtime/releases)
- [Commits](dotnet/runtime@v8.0.0...v8.0.0)

Updates `System.Text.Json` from 8.0.5 to 8.0.5
- [Release notes](https://github.com/dotnet/runtime/releases)
- [Commits](dotnet/runtime@v8.0.5...v8.0.5)

---
updated-dependencies:
- dependency-name: CSharpier.Core
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: System.Text.Encodings.Web
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: System.Text.Json
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot requested a review from anirudha as a code owner December 30, 2024 03:03
@dependabot dependabot bot added dependabot dependencies Pull requests that update a dependency file labels Dec 30, 2024
Signed-off-by: Thomas Farr <[email protected]>
@Xtansia Xtansia merged commit 0b7097a into main Dec 30, 2024
46 of 47 checks passed
@dependabot dependabot bot deleted the dependabot/nuget/multi-a7e8999087 branch December 30, 2024 03:48
@Xtansia Xtansia added the backport 1.x Backport to 1.x branch label Dec 30, 2024
opensearch-trigger-bot bot pushed a commit that referenced this pull request Dec 30, 2024
…879)

* Bump CSharpier.Core, System.Text.Encodings.Web and System.Text.Json

Bumps [CSharpier.Core](https://github.com/belav/csharpier), [System.Text.Encodings.Web](https://github.com/dotnet/runtime) and [System.Text.Json](https://github.com/dotnet/runtime). These dependencies needed to be updated together.

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

Updates `System.Text.Encodings.Web` from 8.0.0 to 8.0.0
- [Release notes](https://github.com/dotnet/runtime/releases)
- [Commits](dotnet/runtime@v8.0.0...v8.0.0)

Updates `System.Text.Json` from 8.0.5 to 8.0.5
- [Release notes](https://github.com/dotnet/runtime/releases)
- [Commits](dotnet/runtime@v8.0.5...v8.0.5)

---
updated-dependencies:
- dependency-name: CSharpier.Core
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: System.Text.Encodings.Web
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: System.Text.Json
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* changelog

Signed-off-by: Thomas Farr <[email protected]>

---------

Signed-off-by: dependabot[bot] <[email protected]>
Signed-off-by: Thomas Farr <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Thomas Farr <[email protected]>
(cherry picked from commit 0b7097a)
Xtansia pushed a commit that referenced this pull request Dec 30, 2024
…879) (#880)

* Bump CSharpier.Core, System.Text.Encodings.Web and System.Text.Json

Bumps [CSharpier.Core](https://github.com/belav/csharpier), [System.Text.Encodings.Web](https://github.com/dotnet/runtime) and [System.Text.Json](https://github.com/dotnet/runtime). These dependencies needed to be updated together.

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

Updates `System.Text.Encodings.Web` from 8.0.0 to 8.0.0
- [Release notes](https://github.com/dotnet/runtime/releases)
- [Commits](dotnet/runtime@v8.0.0...v8.0.0)

Updates `System.Text.Json` from 8.0.5 to 8.0.5
- [Release notes](https://github.com/dotnet/runtime/releases)
- [Commits](dotnet/runtime@v8.0.5...v8.0.5)

---
updated-dependencies:
- dependency-name: CSharpier.Core
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: System.Text.Encodings.Web
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: System.Text.Json
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* changelog

Signed-off-by: Thomas Farr <[email protected]>

---------

Signed-off-by: dependabot[bot] <[email protected]>
Signed-off-by: Thomas Farr <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Thomas Farr <[email protected]>
(cherry picked from commit 0b7097a)

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
backport 1.x Backport to 1.x branch dependabot dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant