Tyrrrz / DiscordChatExporter

Exports Discord chat logs to a file
MIT License
7.65k stars 699 forks source link

Bump the nuget group with 8 updates #1302

Closed dependabot[bot] closed 2 weeks ago

dependabot[bot] commented 2 weeks ago

Bumps the nuget group with 8 updates:

Package From To
CSharpier.MsBuild 0.29.1 0.29.2
FluentAssertions 6.12.0 6.12.1
Microsoft.NET.Test.Sdk 17.11.0 17.11.1
xunit 2.9.0 2.9.2
Polly 8.4.1 8.4.2
YoutubeExplode 6.4.0 6.4.2
CommunityToolkit.Mvvm 8.3.0 8.3.2
Material.Avalonia 3.7.2 3.7.4

Updates CSharpier.MsBuild from 0.29.1 to 0.29.2

Release notes

Sourced from CSharpier.MsBuild's releases.

0.29.2

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_____________________________________________,
</tr></table> 

... (truncated)

Changelog

Sourced from CSharpier.MsBuild's changelog.

# 0.29.2

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_____________________________________________,
</tr></table> 

... (truncated)

Commits
  • 57c3ca1 Releasing 0.29.2 (#1347)
  • 861f281 Support custom file extensions with editor config (#1346)
  • e90022e fixing issue when formatting with tabs that would convert tabs in com… (#1344)
  • 3fd7faa Adding support for csharpier-ignore-start in object initializers (#1345)
  • 8bca3ce fixing issue with extra line before collection expression within a ca… (#1335)
  • 4d51407 Tweak the logic around validating installs so it doesn't bomb out and… (#1339)
  • 12fb058 Possible fix for issue on osx (#1338)
  • 90c6c28 proper indent size
  • See full diff in compare view


Updates FluentAssertions from 6.12.0 to 6.12.1

Release notes

Sourced from FluentAssertions's releases.

6.12.1

What's Changed

Improvements

  • Improve BeEmpty() and BeNullOrEmpty() performance for IEnumerable<T>, by materializing only the first item - #2530

Fixes

  • Fixed formatting error when checking nullable DateTimeOffset with BeWithin(...).Before(...) - #2312
  • BeEquivalentTo will now find and can map subject properties that are implemented through an explicitly-implemented interface - #2152
  • Fixed that the because and becauseArgs were not passed down the equivalency tree - #2318
  • BeEquivalentTo can again compare a non-generic IDictionary with a generic one - #2358
  • Fixed that the FormattingOptions were not respected in inner AssertionScope - #2329
  • Capitalize true and false in failure messages and make them formattable to a custom BooleanFormatter - #2390, #2393
  • Improved the failure message for NotBeOfType when wrapped in an AssertionScope and the subject is null - #2399
  • Improved the failure message for BeWritable/BeReadable when wrapped in an AssertionScope and the subject is read-only/write-only - #2399
  • Improved the failure message for ThrowExactly[Async] when wrapped in an AssertionScope and no exception is thrown - #2398
  • Improved the failure message for [Not]HaveExplicitProperty when wrapped in an AssertionScope and not implementing the interface - #2403
  • Improved the failure message for [Not]HaveExplicitMethod when wrapped in an AssertionScope and not implementing the interface - #2403
  • Changed BeEquivalentTo to exclude private protected members from the comparison - #2417
  • Fixed using BeEquivalentTo on an empty ArraySegment - #2445, #2511
  • BeEquivalentTo with a custom comparer can now handle null values - #2489
  • Ensured that nested calls to AssertionScope(context) create a chained context - #2607
  • One overload of the AssertionScope constructor would not create an actual scope associated with the thread - #2607
  • Fixed ThrowWithinAsync not respecting OperationCanceledException - #2614
  • Fixed using BeEquivalentTo with an IEqualityComparer targeting nullable types - #2648

Full Changelog: https://github.com/fluentassertions/fluentassertions/compare/6.12.0...6.12.1

Commits
  • a8e7f17 Update qodana
  • d58e0b5 Turn off RoslynAnalyzers in Qodana WF (#2504)
  • 2181217 Remove unused usings
  • 2c3a012 Make implicit usage more explicit
  • 1d5d64f Do not use UsingLineBreaks for [Not]BeSameAs
  • c30fc7a Fixed BeEquivalentTo when using a custom comparer targeting nullable types ...
  • f9b770b Make ThrowWithinAsync respect canceled tasks (#2614)
  • f204cf3 Simplify deferred allocation with local function
  • a3644b0 Only allocate Lazy<> and lambda when necessary
  • f3b4564 Ensured that nested assertion scopes produce a nested context (#2607)
  • Additional commits viewable in compare view


Updates Microsoft.NET.Test.Sdk from 17.11.0 to 17.11.1

Release notes

Sourced from Microsoft.NET.Test.Sdk's releases.

v17.11.1

What's Changed

Full Changelog: https://github.com/microsoft/vstest/compare/v17.11.0...v17.11.1

Commits
  • 58dbd02 Revert "Do not publish to BAR when RTM version is built"
  • aa62848 Do not publish to BAR when RTM version is built
  • d824a2f Bump 17.11.1
  • ed4ac92 Forward error output from testhost as info (#5193)
  • See full diff in compare view


Updates xunit from 2.9.0 to 2.9.2

Commits
  • 82543a6 v2.9.2
  • 0f8f156 #3031: Changes to TheoryData break tests with arrays of objects
  • 502f6d1 Bump up to v2.9.2-pre
  • bb7c3e4 v2.9.1
  • 5d70d25 #3028: Support IGrouping<TKey,TValue> in Assert.Equivalent (v2)
  • ed6e05b Add support for IGrouping<,> in ArgumentFormatter, assuming it's safe to re-e...
  • d97c7f8 Restore TestInvoker<T>.GetTaskFromResult (forwards to AsyncUtility.TryConvert...
  • 416ed81 #3021: Add overload of Assert.Equal to resolve compiler ambiguity
  • 6b86235 Add Assert.Equivalent support for evaluating Lazy<T>
  • aadff05 Updated build table in README
  • Additional commits viewable in compare view


Updates Polly from 8.4.1 to 8.4.2

Release notes

Sourced from Polly's releases.

8.4.2

What's Changed

... (truncated)

Changelog

Sourced from Polly's changelog.

8.4.2

... (truncated)

Commits


Updates YoutubeExplode from 6.4.0 to 6.4.2

Release notes

Sourced from YoutubeExplode's releases.

6.4.2

What's Changed

⚠️ Due to the recent changes by YouTube, muxed streams are no longer provided. Please make sure to use audio-only and video-only streams and combine them as needed.

Full Changelog: https://github.com/Tyrrrz/YoutubeExplode/compare/6.4.1...6.4.2

6.4.1

What's Changed

New Contributors

Full Changelog: https://github.com/Tyrrrz/YoutubeExplode/compare/6.4...6.4.1

Commits
  • 40cf581 Update readme to discourage muxed streams
  • e343d44 Use the IOS client to pull closed captions, instead of TVHTML5 (#819)
  • 9a5ba50 Clarify comments
  • 6d1fb0b Skip the pessimistic HLS test
  • e03edfc Always skip tests on CI for the time being
  • f1038b3 Impersonate the IOS client to replace the deprecated ANDROID_TESTSUITE (#...
  • 1c66110 Proper fallback for skip-tests
  • 3513192 Allow skipping tests on CD for emergency deployments
  • e467006 Formatting
  • a28ddba More questionable formatting
  • Additional commits viewable in compare view


Updates CommunityToolkit.Mvvm from 8.3.0 to 8.3.2

Release notes

Sourced from CommunityToolkit.Mvvm's releases.

8.3.2

This hotfix release updates the build time validation for the Windows SDK projections, when using the .NET 9 SDK.

What's Changed 🆕

8.3.1

This hotfix release includes build time validation for the Windows SDK projections, to improve the developer experience.

What's Changed 🆕

Commits
  • 5320d4f Set version.json to 8.3.2
  • 760c8aa Merge pull request #952 from CommunityToolkit/dev/update-framework-reference-...
  • 3c74216 Set version.json to 8.3.1
  • 3c7ef2f Merge pull request #942 from CommunityToolkit/dev/windows-sdk-validation
  • See full diff in compare view


Updates Material.Avalonia from 3.7.2 to 3.7.4

Release notes

Sourced from Material.Avalonia's releases.

v3.7.4

What's Changed

Full Changelog: https://github.com/AvaloniaCommunity/Material.Avalonia/compare/v3.7.3...v3.7.4

v3.7.3

What's Changed

New Contributors

Full Changelog: https://github.com/AvaloniaCommunity/Material.Avalonia/compare/v3.7.2...v3.7.3

Commits
  • dcd9914 Merge pull request #403 from AvaloniaCommunity/fixDataValidationErrorsDisplay
  • e34fa26 Fixes missing DataValidationErrors. Fix #402
  • 0e584d0 Merge pull request #400 from AvaloniaCommunity/warningsCleanup
  • c64e7e2 Add nullability to many places in Material.Avalonia.Dialogs, resolves a lot o...
  • 2f1deda Make SideSheet.SideSheetOpened two way binding by default
  • ebf54d6 Removes the Numerge.MSBuild since it migrated to common pipelines (fuck MSBuild)
  • 0219dda Upgrade Numerge package to resolve pipeline issues
  • f957cdf Upgrade Numerge package to resolve pipeline issues
  • f6f5c24 Merge pull request #399 from AvaloniaCommunity/iconButtonsBackgroundFix
  • c360887 Replace Theme for MaterialIconButton in SideSheet closing button
  • Additional commits viewable in compare view


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 ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore ` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore ` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore ` will remove the ignore condition of the specified dependency and ignore conditions