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

Merged
merged 1 commit into from
Sep 16, 2024
Merged

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Sep 16, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
FluentValidation (source) 11.9.2 -> 11.10.0 age adoption passing confidence
FluentValidation.DependencyInjectionExtensions (source) 11.9.2 -> 11.10.0 age adoption passing confidence
Fluxor 6.0.0 -> 6.1.0 age adoption passing confidence
Fluxor.Blazor.Web 6.0.0 -> 6.1.0 age adoption passing confidence
Fluxor.Blazor.Web.ReduxDevTools 6.0.0 -> 6.1.0 age adoption passing confidence
Google.Protobuf 3.28.0 -> 3.28.1 age adoption passing confidence
Microsoft.AspNetCore.Components.WebView.Maui 8.0.82 -> 8.0.90 age adoption passing confidence
Microsoft.Maui.Controls 8.0.82 -> 8.0.90 age adoption passing confidence
OpenAI-DotNet 8.2.2 -> 8.2.5 age adoption passing confidence
Xamarin.Android.Google.BillingClient (source) 7.0.0.1 -> 7.0.0.2 age adoption passing confidence
Xamarin.AndroidX.Annotation (source) 1.8.2 -> 1.8.2.1 age adoption passing confidence
Xamarin.AndroidX.Fragment.Ktx (source) 1.8.3 -> 1.8.3.1 age adoption passing confidence
Xamarin.GooglePlayServices.Base (source) 118.5.0.1 -> 118.5.0.2 age adoption passing confidence
concurrently 9.0.0 -> 9.0.1 age adoption passing confidence
csharpier 0.29.1 -> 0.29.2 age adoption passing confidence
npm-run-all2 6.2.2 -> 6.2.3 age adoption passing confidence
postcss (source) 8.4.45 -> 8.4.47 age adoption passing confidence
rollup (source) 4.21.2 -> 4.21.3 age adoption passing confidence
tailwindcss (source) 3.4.10 -> 3.4.11 age adoption passing confidence

Release Notes

JeremySkinner/fluentvalidation (FluentValidation)

v11.10.0

Compare Source

mrpmorris/Fluxor (Fluxor)

v6.1.0

Compare Source

protocolbuffers/protobuf (Google.Protobuf)

v3.28.1

RageAgainstThePixel/OpenAI-DotNet (OpenAI-DotNet)

v8.2.5: OpenAI-DotNet 8.2.5

What's Changed

Full Changelog: RageAgainstThePixel/OpenAI-DotNet@v8.2.4...v8.2.5

v8.2.4: OpenAI-DotNet 8.2.4

What's Changed

Full Changelog: RageAgainstThePixel/OpenAI-DotNet@v8.2.2...v8.2.4

open-cli-tools/concurrently (concurrently)

v9.0.1

Compare Source

What's Changed

Full Changelog: open-cli-tools/concurrently@v9.0.0...v9.0.1

belav/csharpier (csharpier)

v0.29.2

Compare Source

What's Changed

Comments don't follow tabs indent style #​1343

Prior to 0.29.2 CSharpier was converting any tabs within the block of a multiline comment to spaces.

public void SomeFunction()
{
	/*
	The following line is an example with an indent:
		This line is indented by one tab. (prior to 0.29.2 this would end up as a tab followed by 4 spaces)
	*/
	/*
	The following line is an example with an indent:
		This line is indented by 4 spaces but will be converted to 1 tab (prior to 0.29.2 this would end up as a tab followed by 4 spaces)
	*/
	/*
	The following line is an example with an indent:
	   This line is indented by 3 spaces but will be left as 3 spaces
	*/
}
csharpier-ignore-start now supported in object initializers #​1342
// input & expected output
return new SomeClass
{
    // csharpier-ignore-start
    SomeProperty =     someValue,
    SomeProperty2 =     someValue
    // csharpier-ignore-end
};

// 0.29.1
return new SomeClass
{
    // csharpier-ignore-start
    SomeProperty = someValue,
    SomeProperty2 = someValue
    // csharpier-ignore-end
};
Fixed extra new line between cast and collection expression. #​1334
// input & expected output
CallMethod(
    (string[])
        [
            longerValue_____________________________________________,
            longerValue_____________________________________________,
        ]
);

// 0.29.1
CallMethod(
    (string[])

        [
            longerValue_____________________________________________,
            longerValue_____________________________________________,
        ]
);
Support custom extensions in .editorconfig #​1273

As of 0.29.0 CSharpier could format non-standard file extensions, but only if configured in the csharpierrc file. This is now supported with an .editorconfig

[*.cst]
csharpier_formatter = csharp
indent_style = space
indent_size = 2
max_line_length = 80

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

bcomnes/npm-run-all2 (npm-run-all2)

v6.2.3

Compare Source

Commits
  • Merge pull request #​151 from bcomnes/fix-pnpm-agian c43fa2b
  • Avoid passing config fields as flags for pnpm dc2d7da
postcss/postcss (postcss)

v8.4.47

Compare Source

  • Removed debug code.

v8.4.46

Compare Source

  • Fixed Cannot read properties of undefined (reading 'before').
rollup/rollup (rollup)

v4.21.3

Compare Source

2024-09-12

Bug Fixes
  • Always respect side effects in left-hand side of optional chain (#​5642)
  • Update stack trace for augmented errors to not hide relevant information (#​5640)
Pull Requests
tailwindlabs/tailwindcss (tailwindcss)

v3.4.11

Compare Source


Configuration

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

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, 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 merged commit 770c807 into main Sep 16, 2024
9 checks passed
@renovate renovate bot deleted the renovate/all-minor-patch branch September 16, 2024 04:43
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