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 the nuget group with 7 updates #807

Merged
merged 1 commit into from
Sep 1, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 1, 2024

Bumps the nuget group with 7 updates:

Package From To
CSharpier.MsBuild 0.28.2 0.29.1
Microsoft.NET.Test.Sdk 17.10.0 17.11.0
AsyncImageLoader.Avalonia 3.2.1 3.3.0
Avalonia 11.1.1 11.1.3
Avalonia.Desktop 11.1.1 11.1.3
Avalonia.Diagnostics 11.1.1 11.1.3
CommunityToolkit.Mvvm 8.2.2 8.3.0

Updates CSharpier.MsBuild from 0.28.2 to 0.29.1

Release notes

Sourced from CSharpier.MsBuild's releases.

0.29.1

What's Changed

Sorting of usings with underscore differs from Visual Studio #1327

CSharpier now sorts _ to the bottom of usings.

using SomeCompany.MWord;
using SomeCompany.ZWord;
using SomeCompany._Word;

Process cannot access the file "....net8.0\any\server.log" while running multiple extensions. #1324

CSharpier Server now uses a log file name based on the port that it is starting on to avoid concurrency issues trying to access the same log file

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

0.29.0

Breaking Changes

The formatting command will now exit with an error code of 1 if one of the target files cannot be compiled #1131

Prior to 0.29.0 if csharpier encountered a file that could not be compiled it would treat it as a warning and exit with a code of 0.
As of 0.29.0 a file that cannot be compiled is now treated as an error and csharpier will exit with code 1

What's Changed

Enforce trailing commas in object and collection initializer #668

CSharpier will now add trailing commas automatically where appropriate. It will collapse to a single line and remove the trailing comma in cases where everything fits on one line.

// input
public enum SomeEnum
{
    Value1,
    Value2
}
string[] someArray = new string[]
{
someLongValue_____________________________________________,
someLongValue_____________________________________________
};
string[] someArray = new string[]
{
someValue,
someValue,
};
// 0.29.0
public enum SomeEnum
{
Value1,
Value2,
}
</tr></table>

... (truncated)

Changelog

Sourced from CSharpier.MsBuild's changelog.

# 0.29.1

What's Changed

Sorting of usings with underscore differs from Visual Studio #1327

CSharpier now sorts _ to the bottom of usings.

using SomeCompany.MWord;
using SomeCompany.ZWord;
using SomeCompany._Word;

Process cannot access the file "....net8.0\any\server.log" while running multiple extensions. #1324

CSharpier Server now uses a log file name based on the port that it is starting on to avoid concurrency issues trying to access the same log file

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

0.29.0

Breaking Changes

The formatting command will now exit with an error code of 1 if one of the target files cannot be compiled #1131

Prior to 0.29.0 if csharpier encountered a file that could not be compiled it would treat it as a warning and exit with a code of 0.
As of 0.29.0 a file that cannot be compiled is now treated as an error and csharpier will exit with code 1

What's Changed

Enforce trailing commas in object and collection initializer #668

CSharpier will now add trailing commas automatically where appropriate. It will collapse to a single line and remove the trailing comma in cases where everything fits on one line.

// input
public enum SomeEnum
{
    Value1,
    Value2
}
string[] someArray = new string[]
{
someLongValue_____________________________________________,
someLongValue_____________________________________________
};
string[] someArray = new string[]
{
someValue,
someValue,
};
// 0.29.0
public enum SomeEnum
{
Value1,
Value2,
}
string[] someArray = new string[]
</tr></table>

... (truncated)

Commits
  • b87b4df Releasing 0.29.1 (#1331)
  • 10e0780 Support for multiple csharpier servers running at the same time, have them wr...
  • 2ed8622 Getting _ to sort to the top like it should (#1328)
  • 688aeb7 VS - Use dotnet tool list to find both local and global installs of csharpier...
  • 1cdcf0a fix width
  • c529570 prettier all the java
  • 88383e7 Using dotnet tool list for rider extension (#1325)
  • 2456512 Modify VSCode extension to use dotnet tool list + only warn to instal… (#1323)
  • 6cb3821 Format with 29 (#1322)
  • 0abbc1d fix typo
  • Additional commits viewable in compare view

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

Release notes

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

v17.11.0

What's Changed

New Contributors

Full Changelog: microsoft/vstest@v17.10.0...v17.11.0-release-24352-06

v17.11.0-release-24373-02

What's Changed

... (truncated)

Commits

Updates AsyncImageLoader.Avalonia from 3.2.1 to 3.3.0

Release notes

Sourced from AsyncImageLoader.Avalonia's releases.

v3.3.0

What's Changed

New Contributors

Full Changelog: AvaloniaUtils/AsyncImageLoader.Avalonia@v3.2.1...v3.3.0

Commits
  • 5836120 Exclude demo project from dotnet pack
  • 00edb42 Merge pull request #24 from AvaloniaUtils/addLogging
  • 274706f Add errors logging to loaders
  • f02aaab Migrate to common pipelines, bump dependencies in demo
  • See full diff in compare view

Updates Avalonia from 11.1.1 to 11.1.3

Release notes

Sourced from Avalonia's releases.

11.1.3

What's Changed

Features

Fixes

Infrastructure

Full Changelog: AvaloniaUI/Avalonia@11.1.2...11.1.3

11.1.2

What's Changed

Features

... (truncated)

Commits
  • 45a2d36 Bump version
  • 3316e84 Fix macOS intgr tests bad merge
  • f90a868 Remove unncessary API suppressions
  • 457835f Adjust api diff once more
  • b971a37 add api to allow text input method to trigger common context menu actions (#1...
  • 7b33bdc Reset API validation baseline (#16470)
  • 6b0075d Trying to fix flaky window decorations tests. (#16597)
  • d6f030e Fix macOS intgr test after backports
  • 3e61cdf Added Compositor.CreateCompositionVisualSnapshot API (#16599)
  • cb06181 Always invalidate the visual explicitly when the TextLayout is invalidated (#...
  • Additional commits viewable in compare view

Updates Avalonia.Desktop from 11.1.1 to 11.1.3

Release notes

Sourced from Avalonia.Desktop's releases.

11.1.3

What's Changed

Features

Fixes

Infrastructure

Full Changelog: AvaloniaUI/Avalonia@11.1.2...11.1.3

11.1.2

What's Changed

Features

... (truncated)

Commits
  • 45a2d36 Bump version
  • 3316e84 Fix macOS intgr tests bad merge
  • f90a868 Remove unncessary API suppressions
  • 457835f Adjust api diff once more
  • b971a37 add api to allow text input method to trigger common context menu actions (#1...
  • 7b33bdc Reset API validation baseline (#16470)
  • 6b0075d Trying to fix flaky window decorations tests. (#16597)
  • d6f030e Fix macOS intgr test after backports
  • 3e61cdf Added Compositor.CreateCompositionVisualSnapshot API (#16599)
  • cb06181 Always invalidate the visual explicitly when the TextLayout is invalidated (#...
  • Additional commits viewable in compare view

Updates Avalonia from 11.1.1 to 11.1.3

Release notes

Sourced from Avalonia's releases.

11.1.3

What's Changed

Features

Fixes

Infrastructure

Full Changelog: AvaloniaUI/Avalonia@11.1.2...11.1.3

11.1.2

What's Changed

Features

... (truncated)

Commits
  • 45a2d36 Bump version
  • 3316e84 Fix macOS intgr tests bad merge
  • f90a868 Remove unncessary API suppressions
  • 457835f Adjust api diff once more
  • b971a37 add api to allow text input method to trigger common context menu actions (#1...
  • 7b33bdc Reset API validation baseline (#16470)
  • 6b0075d Trying to fix flaky window decorations tests. (#16597)
  • d6f030e Fix macOS intgr test after backports
  • 3e61cdf Added Compositor.CreateCompositionVisualSnapshot API (#16599)
  • cb06181 Always invalidate the visual explicitly when the TextLayout is invalidated (#...
  • Additional commits viewable in compare view

Updates Avalonia.Diagnostics from 11.1.1 to 11.1.3

Release notes

Sourced from Avalonia.Diagnostics's releases.

11.1.3

What's Changed

Features

Fixes

Infrastructure

Full Changelog: AvaloniaUI/Avalonia@11.1.2...11.1.3

11.1.2

What's Changed

Features

... (truncated)

Commits
  • 45a2d36 Bump version
  • 3316e84 Fix macOS intgr tests bad merge
  • f90a868 Remove unncessary API suppressions
  • 457835f Adjust api diff once more
  • b971a37 add api to allow text input method to trigger common context menu actions (#1...
  • 7b33bdc Reset API validation baseline (#16470)

Bumps the nuget group with 7 updates:

| Package | From | To |
| --- | --- | --- |
| [CSharpier.MsBuild](https://github.com/belav/csharpier) | `0.28.2` | `0.29.1` |
| [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest) | `17.10.0` | `17.11.0` |
| [AsyncImageLoader.Avalonia](https://github.com/AvaloniaUtils/AsyncImageLoader.Avalonia) | `3.2.1` | `3.3.0` |
| [Avalonia](https://github.com/AvaloniaUI/Avalonia) | `11.1.1` | `11.1.3` |
| [Avalonia.Desktop](https://github.com/AvaloniaUI/Avalonia) | `11.1.1` | `11.1.3` |
| [Avalonia.Diagnostics](https://github.com/AvaloniaUI/Avalonia) | `11.1.1` | `11.1.3` |
| [CommunityToolkit.Mvvm](https://github.com/CommunityToolkit/dotnet) | `8.2.2` | `8.3.0` |


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

Updates `Microsoft.NET.Test.Sdk` from 17.10.0 to 17.11.0
- [Release notes](https://github.com/microsoft/vstest/releases)
- [Changelog](https://github.com/microsoft/vstest/blob/main/docs/releases.md)
- [Commits](microsoft/vstest@v17.10.0...v17.11.0)

Updates `AsyncImageLoader.Avalonia` from 3.2.1 to 3.3.0
- [Release notes](https://github.com/AvaloniaUtils/AsyncImageLoader.Avalonia/releases)
- [Commits](AvaloniaUtils/AsyncImageLoader.Avalonia@v3.2.1...v3.3.0)

Updates `Avalonia` from 11.1.1 to 11.1.3
- [Release notes](https://github.com/AvaloniaUI/Avalonia/releases)
- [Commits](AvaloniaUI/Avalonia@11.1.1...11.1.3)

Updates `Avalonia.Desktop` from 11.1.1 to 11.1.3
- [Release notes](https://github.com/AvaloniaUI/Avalonia/releases)
- [Commits](AvaloniaUI/Avalonia@11.1.1...11.1.3)

Updates `Avalonia` from 11.1.1 to 11.1.3
- [Release notes](https://github.com/AvaloniaUI/Avalonia/releases)
- [Commits](AvaloniaUI/Avalonia@11.1.1...11.1.3)

Updates `Avalonia.Diagnostics` from 11.1.1 to 11.1.3
- [Release notes](https://github.com/AvaloniaUI/Avalonia/releases)
- [Commits](AvaloniaUI/Avalonia@11.1.1...11.1.3)

Updates `Avalonia` from 11.1.1 to 11.1.3
- [Release notes](https://github.com/AvaloniaUI/Avalonia/releases)
- [Commits](AvaloniaUI/Avalonia@11.1.1...11.1.3)

Updates `CommunityToolkit.Mvvm` from 8.2.2 to 8.3.0
- [Release notes](https://github.com/CommunityToolkit/dotnet/releases)
- [Commits](CommunityToolkit/dotnet@v8.2.2...v8.3.0)

---
updated-dependencies:
- dependency-name: CSharpier.MsBuild
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget
- dependency-name: Microsoft.NET.Test.Sdk
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget
- dependency-name: AsyncImageLoader.Avalonia
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget
- dependency-name: Avalonia
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget
- dependency-name: Avalonia.Desktop
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget
- dependency-name: Avalonia
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget
- dependency-name: Avalonia.Diagnostics
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget
- dependency-name: Avalonia
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget
- dependency-name: CommunityToolkit.Mvvm
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget
...

Signed-off-by: dependabot[bot] <[email protected]>
@Tyrrrz Tyrrrz merged commit a52ecbb into master Sep 1, 2024
4 of 7 checks passed
@Tyrrrz Tyrrrz deleted the dependabot/nuget/nuget-826bd49956 branch September 1, 2024 16:01
xBaank added a commit to xBaank/YoutubeExplode that referenced this pull request Sep 18, 2024
* Bump the nuget group with 6 updates (Tyrrrz#802)

Bumps the nuget group with 7 updates:

| Package | From | To |
| --- | --- | --- |
| [xunit](https://github.com/xunit/xunit) | `2.8.1` | `2.9.0` |
| [xunit.runner.visualstudio](https://github.com/xunit/visualstudio.xunit) | `2.8.1` | `2.8.2` |
| [Avalonia](https://github.com/AvaloniaUI/Avalonia) | `11.0.11` | `11.1.1` |
| [Avalonia.Desktop](https://github.com/AvaloniaUI/Avalonia) | `11.0.11` | `11.1.1` |
| [Avalonia.Diagnostics](https://github.com/AvaloniaUI/Avalonia) | `11.0.11` | `11.1.1` |
| [Material.Avalonia](https://github.com/AvaloniaCommunity/Material.Avalonia) | `3.6.0` | `3.7.2` |
| [Avalonia](https://github.com/AvaloniaUI/Avalonia) | `11.0.11` | `11.1.0` |


Updates `xunit` from 2.8.1 to 2.9.0
- [Commits](xunit/xunit@2.8.1...2.9.0)

Updates `xunit.runner.visualstudio` from 2.8.1 to 2.8.2
- [Release notes](https://github.com/xunit/visualstudio.xunit/releases)
- [Commits](xunit/visualstudio.xunit@2.8.1...2.8.2)

Updates `Avalonia` from 11.0.11 to 11.1.1
- [Release notes](https://github.com/AvaloniaUI/Avalonia/releases)
- [Commits](AvaloniaUI/Avalonia@11.0.11...11.1.1)

Updates `Avalonia.Desktop` from 11.0.11 to 11.1.1
- [Release notes](https://github.com/AvaloniaUI/Avalonia/releases)
- [Commits](AvaloniaUI/Avalonia@11.0.11...11.1.1)

Updates `Avalonia` from 11.0.11 to 11.1.1
- [Release notes](https://github.com/AvaloniaUI/Avalonia/releases)
- [Commits](AvaloniaUI/Avalonia@11.0.11...11.1.1)

Updates `Avalonia.Diagnostics` from 11.0.11 to 11.1.1
- [Release notes](https://github.com/AvaloniaUI/Avalonia/releases)
- [Commits](AvaloniaUI/Avalonia@11.0.11...11.1.1)

Updates `Avalonia` from 11.0.11 to 11.1.1
- [Release notes](https://github.com/AvaloniaUI/Avalonia/releases)
- [Commits](AvaloniaUI/Avalonia@11.0.11...11.1.1)

Updates `Material.Avalonia` from 3.6.0 to 3.7.2
- [Release notes](https://github.com/AvaloniaCommunity/Material.Avalonia/releases)
- [Commits](AvaloniaCommunity/Material.Avalonia@v3.6.0...v3.7.2)

Updates `Avalonia` from 11.0.11 to 11.1.0
- [Release notes](https://github.com/AvaloniaUI/Avalonia/releases)
- [Commits](AvaloniaUI/Avalonia@11.0.11...11.1.1)

---
updated-dependencies:
- dependency-name: xunit
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget
- dependency-name: xunit.runner.visualstudio
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget
- dependency-name: Avalonia
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget
- dependency-name: Avalonia.Desktop
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget
- dependency-name: Avalonia
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget
- dependency-name: Avalonia.Diagnostics
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget
- dependency-name: Avalonia
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget
- dependency-name: Material.Avalonia
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget
- dependency-name: Avalonia
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Update readme to mention that muxed streams may be unavailable

* Add muxed stream mention in the XML docs

* Update FFmpeg in tests to v7.0

* Use new platform APIs in more places

* Don't use `AppDomain`

* Bump the nuget group with 7 updates (Tyrrrz#807)

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Use .NET 9 features: `Lock` and `Index()` via PolyShim

* Fix formatting

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Oleksii Holub <[email protected]>
xBaank added a commit to xBaank/YoutubeExplode that referenced this pull request Sep 19, 2024
* Bump the nuget group with 6 updates (Tyrrrz#802)

Bumps the nuget group with 7 updates:

| Package | From | To |
| --- | --- | --- |
| [xunit](https://github.com/xunit/xunit) | `2.8.1` | `2.9.0` |
| [xunit.runner.visualstudio](https://github.com/xunit/visualstudio.xunit) | `2.8.1` | `2.8.2` |
| [Avalonia](https://github.com/AvaloniaUI/Avalonia) | `11.0.11` | `11.1.1` |
| [Avalonia.Desktop](https://github.com/AvaloniaUI/Avalonia) | `11.0.11` | `11.1.1` |
| [Avalonia.Diagnostics](https://github.com/AvaloniaUI/Avalonia) | `11.0.11` | `11.1.1` |
| [Material.Avalonia](https://github.com/AvaloniaCommunity/Material.Avalonia) | `3.6.0` | `3.7.2` |
| [Avalonia](https://github.com/AvaloniaUI/Avalonia) | `11.0.11` | `11.1.0` |


Updates `xunit` from 2.8.1 to 2.9.0
- [Commits](xunit/xunit@2.8.1...2.9.0)

Updates `xunit.runner.visualstudio` from 2.8.1 to 2.8.2
- [Release notes](https://github.com/xunit/visualstudio.xunit/releases)
- [Commits](xunit/visualstudio.xunit@2.8.1...2.8.2)

Updates `Avalonia` from 11.0.11 to 11.1.1
- [Release notes](https://github.com/AvaloniaUI/Avalonia/releases)
- [Commits](AvaloniaUI/Avalonia@11.0.11...11.1.1)

Updates `Avalonia.Desktop` from 11.0.11 to 11.1.1
- [Release notes](https://github.com/AvaloniaUI/Avalonia/releases)
- [Commits](AvaloniaUI/Avalonia@11.0.11...11.1.1)

Updates `Avalonia` from 11.0.11 to 11.1.1
- [Release notes](https://github.com/AvaloniaUI/Avalonia/releases)
- [Commits](AvaloniaUI/Avalonia@11.0.11...11.1.1)

Updates `Avalonia.Diagnostics` from 11.0.11 to 11.1.1
- [Release notes](https://github.com/AvaloniaUI/Avalonia/releases)
- [Commits](AvaloniaUI/Avalonia@11.0.11...11.1.1)

Updates `Avalonia` from 11.0.11 to 11.1.1
- [Release notes](https://github.com/AvaloniaUI/Avalonia/releases)
- [Commits](AvaloniaUI/Avalonia@11.0.11...11.1.1)

Updates `Material.Avalonia` from 3.6.0 to 3.7.2
- [Release notes](https://github.com/AvaloniaCommunity/Material.Avalonia/releases)
- [Commits](AvaloniaCommunity/Material.Avalonia@v3.6.0...v3.7.2)

Updates `Avalonia` from 11.0.11 to 11.1.0
- [Release notes](https://github.com/AvaloniaUI/Avalonia/releases)
- [Commits](AvaloniaUI/Avalonia@11.0.11...11.1.1)

---
updated-dependencies:
- dependency-name: xunit
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget
- dependency-name: xunit.runner.visualstudio
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget
- dependency-name: Avalonia
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget
- dependency-name: Avalonia.Desktop
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget
- dependency-name: Avalonia
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget
- dependency-name: Avalonia.Diagnostics
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget
- dependency-name: Avalonia
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget
- dependency-name: Material.Avalonia
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget
- dependency-name: Avalonia
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Update readme to mention that muxed streams may be unavailable

* Add muxed stream mention in the XML docs

* Update FFmpeg in tests to v7.0

* Use new platform APIs in more places

* Don't use `AppDomain`

* Bump the nuget group with 7 updates (Tyrrrz#807)

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Use .NET 9 features: `Lock` and `Index()` via PolyShim

* Fix formatting

* Update cookie value in YoutubeHttpHandler.cs (Tyrrrz#811)

Fixes Tyrrrz#810

* More questionable formatting

* Formatting

* Allow skipping tests on CD for emergency deployments

* Proper fallback for `skip-tests`

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Oleksii Holub <[email protected]>
Co-authored-by: Kacper Tryniecki <[email protected]>
xBaank added a commit to xBaank/YoutubeExplode that referenced this pull request Sep 27, 2024
* Bump the nuget group with 6 updates (Tyrrrz#802)

Bumps the nuget group with 7 updates:

| Package | From | To |
| --- | --- | --- |
| [xunit](https://github.com/xunit/xunit) | `2.8.1` | `2.9.0` |
| [xunit.runner.visualstudio](https://github.com/xunit/visualstudio.xunit) | `2.8.1` | `2.8.2` |
| [Avalonia](https://github.com/AvaloniaUI/Avalonia) | `11.0.11` | `11.1.1` |
| [Avalonia.Desktop](https://github.com/AvaloniaUI/Avalonia) | `11.0.11` | `11.1.1` |
| [Avalonia.Diagnostics](https://github.com/AvaloniaUI/Avalonia) | `11.0.11` | `11.1.1` |
| [Material.Avalonia](https://github.com/AvaloniaCommunity/Material.Avalonia) | `3.6.0` | `3.7.2` |
| [Avalonia](https://github.com/AvaloniaUI/Avalonia) | `11.0.11` | `11.1.0` |


Updates `xunit` from 2.8.1 to 2.9.0
- [Commits](xunit/xunit@2.8.1...2.9.0)

Updates `xunit.runner.visualstudio` from 2.8.1 to 2.8.2
- [Release notes](https://github.com/xunit/visualstudio.xunit/releases)
- [Commits](xunit/visualstudio.xunit@2.8.1...2.8.2)

Updates `Avalonia` from 11.0.11 to 11.1.1
- [Release notes](https://github.com/AvaloniaUI/Avalonia/releases)
- [Commits](AvaloniaUI/Avalonia@11.0.11...11.1.1)

Updates `Avalonia.Desktop` from 11.0.11 to 11.1.1
- [Release notes](https://github.com/AvaloniaUI/Avalonia/releases)
- [Commits](AvaloniaUI/Avalonia@11.0.11...11.1.1)

Updates `Avalonia` from 11.0.11 to 11.1.1
- [Release notes](https://github.com/AvaloniaUI/Avalonia/releases)
- [Commits](AvaloniaUI/Avalonia@11.0.11...11.1.1)

Updates `Avalonia.Diagnostics` from 11.0.11 to 11.1.1
- [Release notes](https://github.com/AvaloniaUI/Avalonia/releases)
- [Commits](AvaloniaUI/Avalonia@11.0.11...11.1.1)

Updates `Avalonia` from 11.0.11 to 11.1.1
- [Release notes](https://github.com/AvaloniaUI/Avalonia/releases)
- [Commits](AvaloniaUI/Avalonia@11.0.11...11.1.1)

Updates `Material.Avalonia` from 3.6.0 to 3.7.2
- [Release notes](https://github.com/AvaloniaCommunity/Material.Avalonia/releases)
- [Commits](AvaloniaCommunity/Material.Avalonia@v3.6.0...v3.7.2)

Updates `Avalonia` from 11.0.11 to 11.1.0
- [Release notes](https://github.com/AvaloniaUI/Avalonia/releases)
- [Commits](AvaloniaUI/Avalonia@11.0.11...11.1.1)

---
updated-dependencies:
- dependency-name: xunit
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget
- dependency-name: xunit.runner.visualstudio
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget
- dependency-name: Avalonia
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget
- dependency-name: Avalonia.Desktop
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget
- dependency-name: Avalonia
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget
- dependency-name: Avalonia.Diagnostics
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget
- dependency-name: Avalonia
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget
- dependency-name: Material.Avalonia
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget
- dependency-name: Avalonia
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Update readme to mention that muxed streams may be unavailable

* Add muxed stream mention in the XML docs

* Update FFmpeg in tests to v7.0

* Use new platform APIs in more places

* Don't use `AppDomain`

* Bump the nuget group with 7 updates (Tyrrrz#807)

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Use .NET 9 features: `Lock` and `Index()` via PolyShim

* Fix formatting

* Update cookie value in YoutubeHttpHandler.cs (Tyrrrz#811)

Fixes Tyrrrz#810

* More questionable formatting

* Formatting

* Allow skipping tests on CD for emergency deployments

* Proper fallback for `skip-tests`

* WIP

* WIP

* WIP

* Use IOS

* Cleanup

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Oleksii Holub <[email protected]>
Co-authored-by: Kacper Tryniecki <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant