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

chore(deps): update nuget non-major dependencies #211

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Mar 20, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
Altinn.App.Api (source) 8.3.7 -> 8.3.8 age adoption passing confidence
Altinn.App.Core 8.3.7 -> 8.3.8 age adoption passing confidence
CSharpier.MsBuild 0.29.2 -> 0.30.3 age adoption passing confidence

Release Notes

Altinn/app-lib-dotnet (Altinn.App.Api)

v8.3.8

What's Changed

New Features 🎉

Full Changelog: Altinn/app-lib-dotnet@v8.3.7...v8.3.8

belav/csharpier (CSharpier.MsBuild)

v0.30.3

Compare Source

What's Changed

CSharpier.MsBuild doesn't fail the github action anymore #​1357

The changes for 1311 caused CSharpier.MsBuild to not report unformatted files as errors on linux.

Thanks go to @​PetSerAl for the fix

v0.30.2

Compare Source

What's Changed
Collection expression inside a dictionary adds unexpected new line #​1390
// input & expected output
Dictionary<string, string[]> dictionary = new()
{
    {
        "Key",
        [
            "SomeValue__________________________________________",
            "SomeValue__________________________________________",
        ]
    },
};

// 0.30.1
Dictionary<string, string[]> dictionary = new()
{
    {
        "Key",

        [
            "SomeValue__________________________________________",
            "SomeValue__________________________________________",
        ]
    },
};
Failed syntax tree validation reported when trailing comma added before a trailing comment #​1388

With the following code, CSharpier will add a trailing comma before the trailing comment.
CSharpier's syntax tree validation was incorrectly reporting this as a failure.

// input
var someObject = new SomeObject()
{
    Property1 = 1,
    Property2 = 2 // Trailing Comment
};

// output
var someObject = new SomeObject()
{
    Property1 = 1,
    Property2 = 2, // Trailing Comment
};

v0.30.1

Compare Source

What's Changed

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

v0.30.0

Compare Source

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 =
    $@&#8203;"
{someValue.GetValue().Name} someLongText________________________________________________________________";

// 0.29.2
var someStringWithLineBreakAndLongValue =
    $@&#8203;"
        {someValue .GetValue() .Name} someLongText________________________________________________________________";
Inserting trailing comma with trailing comment causes problems. #​1354

CSharpier would insert a trailing comma after a trailing comment and format the end result poorly.

// input
var someObject = new SomeObject()
{
    Property1 = 1,
    Property2 = 2 // Trailing Comment
};

// 0.29.2
var someObject = new SomeObject()
{
    Property1 = 1,
    Property2 =
        2 // Trailing Comment
    ,
};

// 0.30.0
var someObject = new SomeObject()
{
    Property1 = 1,
    Property2 = 2, // Trailing Comment
};
Double line break before collection expression in field #​1351

CSharpier was inserting an extra line break on a long field name followed by a collection expression to initialize it.

// input & expected output
class ClassName
{
    public SomeType[] LongName____________________________________________________________________________ =
    [
        someLongValue___________________________________________________,
        someLongValue___________________________________________________,
    ];
}

// 0.29.2
class ClassName
{
    public SomeType[] LongName____________________________________________________________________________ =

        [
            someLongValue___________________________________________________,
            someLongValue___________________________________________________,
        ];
}

Full Changelog: belav/csharpier@0.29.2...0.30.0


Configuration

📅 Schedule: Branch creation - "before 07:00 on Thursday" in timezone Europe/Oslo, Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

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 was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/nuget-minor-patch branch from 15f02d7 to d282496 Compare April 12, 2024 19:12
@renovate renovate bot changed the title chore(deps): update dependency microsoft.aspnetcore.mvc.testing to v6.0.28 chore(deps): update dependency microsoft.aspnetcore.mvc.testing to v6.0.29 Apr 12, 2024
@renovate renovate bot force-pushed the renovate/nuget-minor-patch branch from d282496 to e885dde Compare April 15, 2024 00:11
@renovate renovate bot changed the title chore(deps): update dependency microsoft.aspnetcore.mvc.testing to v6.0.29 chore(deps): update nuget non-major dependencies Apr 15, 2024
@renovate renovate bot force-pushed the renovate/nuget-minor-patch branch 3 times, most recently from 7542189 to b0ad7e2 Compare April 30, 2024 22:10
@renovate renovate bot force-pushed the renovate/nuget-minor-patch branch 2 times, most recently from 0f5153a to 59a80b5 Compare May 17, 2024 21:04
@renovate renovate bot force-pushed the renovate/nuget-minor-patch branch 6 times, most recently from 9325357 to bcc0f9c Compare May 31, 2024 18:27
@renovate renovate bot force-pushed the renovate/nuget-minor-patch branch from bcc0f9c to d954b12 Compare June 2, 2024 19:26
@renovate renovate bot force-pushed the renovate/nuget-minor-patch branch from d954b12 to 8edc853 Compare June 16, 2024 09:49
@renovate renovate bot force-pushed the renovate/nuget-minor-patch branch from 8edc853 to 823e48a Compare June 27, 2024 15:02
@renovate renovate bot force-pushed the renovate/nuget-minor-patch branch 4 times, most recently from 0f09e9d to 3cc5dde Compare July 12, 2024 14:03
@renovate renovate bot force-pushed the renovate/nuget-minor-patch branch from 3cc5dde to b8e75d3 Compare July 13, 2024 16:33
@renovate renovate bot force-pushed the renovate/nuget-minor-patch branch 3 times, most recently from 189ad7d to 7ff11a0 Compare August 10, 2024 16:07
@renovate renovate bot force-pushed the renovate/nuget-minor-patch branch 4 times, most recently from b5658ff to bdb5734 Compare August 23, 2024 13:01
@renovate renovate bot force-pushed the renovate/nuget-minor-patch branch 2 times, most recently from cc99579 to d99d12d Compare August 29, 2024 11:42
@renovate renovate bot force-pushed the renovate/nuget-minor-patch branch 4 times, most recently from 817c7bd to 6974a35 Compare September 12, 2024 17:26
@renovate renovate bot force-pushed the renovate/nuget-minor-patch branch from 6974a35 to 2545164 Compare September 15, 2024 08:12
@renovate renovate bot force-pushed the renovate/nuget-minor-patch branch 4 times, most recently from ec61da4 to d032000 Compare September 30, 2024 03:58
@renovate renovate bot force-pushed the renovate/nuget-minor-patch branch from d032000 to 536cf2d Compare October 3, 2024 10:44
@renovate renovate bot force-pushed the renovate/nuget-minor-patch branch 2 times, most recently from 0e4aed6 to 2e9f456 Compare October 18, 2024 12:50
@renovate renovate bot force-pushed the renovate/nuget-minor-patch branch from 2e9f456 to 4d5cd9e Compare October 20, 2024 10:04
@renovate renovate bot changed the title chore(deps): update nuget non-major dependencies chore(deps): update nuget non-major dependencies - autoclosed Nov 7, 2024
@renovate renovate bot closed this Nov 7, 2024
@renovate renovate bot deleted the renovate/nuget-minor-patch branch November 7, 2024 08:00
@renovate renovate bot changed the title chore(deps): update nuget non-major dependencies - autoclosed chore(deps): update nuget non-major dependencies Nov 14, 2024
@renovate renovate bot reopened this Nov 14, 2024
@renovate renovate bot force-pushed the renovate/nuget-minor-patch branch from 909973b to 4d5cd9e Compare November 14, 2024 01:59
@renovate renovate bot changed the title chore(deps): update nuget non-major dependencies chore(deps): update nuget non-major dependencies to 8.3.8 Nov 14, 2024
@renovate renovate bot force-pushed the renovate/nuget-minor-patch branch 2 times, most recently from 38f8afe to 04de130 Compare November 20, 2024 17:11
@renovate renovate bot changed the title chore(deps): update nuget non-major dependencies to 8.3.8 chore(deps): update nuget non-major dependencies Nov 20, 2024
@renovate renovate bot force-pushed the renovate/nuget-minor-patch branch 2 times, most recently from 6923550 to 26408d6 Compare November 25, 2024 18:45
@renovate renovate bot force-pushed the renovate/nuget-minor-patch branch from 26408d6 to ebeaff0 Compare December 10, 2024 20:08
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.

0 participants