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

Update all non-major dependencies #143

Merged
merged 3 commits into from
Apr 10, 2024
Merged

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Apr 8, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
Blazor-ApexCharts (source) 3.1.0 -> 3.2.0 age adoption passing confidence nuget minor
Google.Apis.AndroidPublisher.v3 1.67.0.3373 -> 1.67.0.3374 age adoption passing confidence nuget patch
Microsoft.AspNetCore.Components.Web (source) 8.0.3 -> 8.0.4 age adoption passing confidence nuget patch
Microsoft.AspNetCore.Components.WebAssembly (source) 8.0.3 -> 8.0.4 age adoption passing confidence nuget patch
Microsoft.AspNetCore.Components.WebAssembly.DevServer (source) 8.0.3 -> 8.0.4 age adoption passing confidence nuget patch
Microsoft.AspNetCore.Components.WebView.Maui 8.0.14 -> 8.0.20 age adoption passing confidence nuget patch
Microsoft.EntityFrameworkCore.Design (source) 8.0.3 -> 8.0.4 age adoption passing confidence nuget patch
Microsoft.Maui.Controls 8.0.14 -> 8.0.20 age adoption passing confidence nuget patch
Microsoft.TypeScript.MSBuild (source) 5.4.3 -> 5.4.4 age adoption passing confidence nuget patch
android-actions/setup-android v3.2.0 -> v3.2.1 age adoption passing confidence action patch
csharpier 0.27.3 -> 0.28.0 age adoption passing confidence nuget minor
cypress (source) 13.7.1 -> 13.7.2 age adoption passing confidence devDependencies patch
rollup (source) 4.13.2 -> 4.14.1 age adoption passing confidence dependencies minor

Release Notes

apexcharts/Blazor-ApexCharts (Blazor-ApexCharts)

v3.2.0

What's Changed

Full Changelog: apexcharts/Blazor-ApexCharts@v3.1.0...v3.2.0

dotnet/aspnetcore (Microsoft.AspNetCore.Components.Web)

v8.0.4

dotnet/maui (Microsoft.AspNetCore.Components.WebView.Maui)

v8.0.20

Compare Source

What's Changed
Tests
Docs
Dependency Updates
New Contributors

Full Changelog: dotnet/maui@8.0.14...8.0.20

dotnet/efcore (Microsoft.EntityFrameworkCore.Design)

v8.0.4: .NET 8.0.4

Release

android-actions/setup-android (android-actions/setup-android)

v3.2.1

Compare Source

Updated dependencies

belav/csharpier (csharpier)

v0.28.0

Compare Source

What's Changed
Fix dedented method call if there is a long chain #​1154

In some cases of method chains, the first invocation would end up dedented.

// 0.27.3
o.Property.CallMethod(
    someParameter_____________________________,
    someParameter_____________________________
)
    .CallMethod()
    .CallMethod();

// 0.28.0
o.Property.CallMethod(
        someParameter_____________________________,
        someParameter_____________________________
    )
    .CallMethod()
    .CallMethod();
Extra newline in switch case statement with curly braces [#​1192][https://github.com/belav/csharpier/issues/1192](https://togithub.com/belav/csharpier/issues/1192)2

If a case statement started with a block it would get an extra new line

// 0.27.3
switch (someValue)
{
    case 0:
    {
        // dedented because the only statement is a block
        break;
    }

    case 1:

        {
            // indented because there are two statements, a block then a break
        }
        break;
}

// 0.28.0
// 0.27.3
switch (someValue)
{
    case 0:
    {
        // dedented because the only statement is a block
        break;
    }

    case 1:
        {
            // indented because there are two statements, a block then a break
        }
        break;
}

Thanks go to @​emberTrev for reporting the bug.

Handle more editorconfig glob patterns. #​1214

The editorconfig parsing was not handling glob patterns that contained braces.

##### worked in 0.27.3
[*.cs]
indent_size = 4
tab_width = 4

##### did not work in 0.27.3
[*.{cs,csx}]
indent_size = 4
tab_width = 4

##### did not work in 0.27.3
[*.{cs}]
indent_size = 4
tab_width = 4

Thanks go to @​kada-v for reporting the bug

Ignore-start combined with regions throws exception #​1197

The following code would throw an exception, it is now working as expected.

class ClassName
{
    #region Region
    // csharpier-ignore-start
    public string   Field;
    // csharpier-ignore-end
    #endregion
}

Thanks go to @​davidescapolan01 for reporting the bug

Cannot format project containing editorconfig #​1194

On some OSs the following would cause an exception.

dotnet new console -n foo
cd foo
dotnet new editorconfig
dotnet csharpier ./

Thanks go to @​hashitaku for contributing the fix.

Expose IncludeGenerated in CodeFormatterOptions #​1215

CodeFormatterOptions.IncludeGenerated is now available for the SDK.

Returning errors + status from csharpier http server #​1191

Improved the http server that CSharpier will soon use to facilitate formatting by plugins. The formatting request now returns errors and a status for each file formatted.
This allows the plugin to provide more information to the user when they attempt to format a file. The plugins will be updated to use the http server option for CSharpier 0.28.0+

Full Changelog: belav/csharpier@0.27.3...0.28.0

cypress-io/cypress (cypress)

v13.7.2

Compare Source

Changelog: https://docs.cypress.io/guides/references/changelog#13-7-2

rollup/rollup (rollup)

v4.14.1

Compare Source

2024-04-07

Bug Fixes
  • Show better error when running on musl Linux where the musl build is not supported (#​5454)
Pull Requests

v4.14.0

Compare Source

2024-04-03

Features
  • Display error causes in Rollup CLI (#​5422)
  • Add basic support for explicit resource management via "using" and "await using" (#​5423)
Pull Requests

Configuration

📅 Schedule: Branch creation - "before 4am on monday" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 75eb196 to 25d020a Compare April 9, 2024 22:46
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 25d020a to 36c378a Compare April 10, 2024 07:34
Copy link
Contributor Author

renovate bot commented Apr 10, 2024

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

Warning: custom changes will be lost.

@LiamMorrow LiamMorrow merged commit c09314b into main Apr 10, 2024
5 of 6 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant