Skip to content

Bump Statiq.Yaml from 1.0.0-beta.48 to 1.0.0-beta.62#17

Closed
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/nuget/main/Statiq.Yaml-1.0.0-beta.62
Closed

Bump Statiq.Yaml from 1.0.0-beta.48 to 1.0.0-beta.62#17
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/nuget/main/Statiq.Yaml-1.0.0-beta.62

Conversation

@dependabot
Copy link

@dependabot dependabot bot commented on behalf of github Jul 9, 2022

Bumps Statiq.Yaml from 1.0.0-beta.48 to 1.0.0-beta.62.

Release notes

Sourced from Statiq.Yaml's releases.

1.0.0-beta.62

  • Changed Statiq.App.props to Statiq.App.targets to resolve some import ordering bugs.
  • Added a Keys.IgnoreExternalDestinations setting to ignore when document destinations are not relative to the output path since some use cases may require writing documents elsewhere.

1.0.0-beta.61

1.0.0-beta.60

  • Added support for surfacing tuple information in the AnalyzeCSharp module.

1.0.0-beta.59

  • Added support for regular expressions to the ExtractFrontMatter module (#231).
  • Added IPipelineOutputs.ExceptPipelines() extension method to get outputs from all but a set of specified pipelines.
  • IPipelineOutputs.ExceptPipeline() now returns documents in natural order like IPipelineOutputs.FromPipeline() does.
  • Added AnalyzeCSharp.IncludeEmptyNamespaces() option to control whether recursively empty namespaces are output.

1.0.0-beta.58

  • Updated Buildalyzer in Statiq.CodeAnalysis to 4.1.0 which removes some dependencies on .NET Framework and resolves some package resolution problems.

1.0.0-beta.57

  • Added support for "raw" code fences to the RenderMarkdown module that bypasses markdown processing.
  • Fixed a bug when instantiating a ShortcodeResult from the bootstrapper due to lack of availability of an execution context (since the engine hasn't been created yet).
  • Added WithNestedElements() to the GatherHeadings module to control whether nested HTML element content is included in the heading text (the default is now that it is not, other than links).
  • Fixed a bug with certain modules double-encoding character references (statiqdev/Statiq.Web#981).
  • Added a new StartProcessArgument class and WithArgument()/WithArguments() methods to the StartProcess module that makes it easier to define multiple arguments inside a single config delegate.

1.0.0-beta.56

  • Added DocumentList<TDocument>.GetDestination(NormalizedPath destinationPath), .GetSource(NormalizedPath sourcePath), and .GetRelativeSource(NormalizedPath sourcePath) to better provide single document results from a document list.
  • Added IPipelineOutputs.GetDestination(NormalizedPath destinationPath), .GetSource(NormalizedPath sourcePath), and .GetRelativeSource(NormalizedPath sourcePath) to better provide single document results from pipeline output collections.
  • Added IDocument.Timestamp that holds a timestamp of document instantiation and is useful for ordering documents based on "most recent" semantics.
  • Uses the new IDocument.Timestamp property to order certain document results like the PipelineOutputs enumerator, PipelineOutputs.ExceptPipeline(), IEnumerable<IDocument>.FilterDestinations(), and IEnumerable<IDocument>.FilterSources() in descending creation order (in other words, document results that otherwise don't have a natural order are ordered by timestamp now) (#226).
  • Fixed a bug when multiple modules call IEngine.GetJavaScriptEnginePool() for the first time concurrently.
  • Added CodeAnalysisKeys.Implements to the documents produced by the AnalyzeCSharp module to represent the interface member(s) being implemented by properties, events, and methods.
  • Added the ability to inject Sass variables via metadata by prefixing with "Sass_" which should make providing theme customizations a lot easier.

1.0.0-beta.55

  • Added a new MarkdownExtensions metadata key that can add Markdown (I.e. Markdig) extension types per-document or per-execution using metadata/settings (#222).
  • Removed the recently added PathCollection.RemoveDefault() method and instead allow optionally specifying whether paths that get added to a PathCollection are removable (the default is true).
  • Removed the recently added notion of "initial settings" due to being confusing and instead moved settings initialization up in the order of bootstrapper operations (this shouldn't result in a breaking change, but be on the lookout for problems).

1.0.0-beta.54

  • Added a new RetryModules module that provides simple retry behavior for it's child modules (it essentially wraps module execution with Polly).
  • Added a new PathCollection.RemoveDefault() method that only removes the default paths, and used it to clear only default paths when alternate input paths are specified on the command line.

1.0.0-beta.53

  • Breaking change: IFileSystem must now be injected and passed to BaseCommand when creating custom commands that derive from it.
  • Breaking change: IEngine.FileSystem is now a IReadOnlyFileSystem instead of IFileSystem (I.e. the file system can no longer be edited one the engine has been created).
  • Breaking change: The file system can no longer be configured through Bootstrapper.ConfigureEngine() and must be done through Bootstrapper.ConfigureFileSystem() or one of the other more specific file system bootstrapper extensions like Bootstrapper.SetRootPath().
  • Changed the Statiq.Razor Razor compilers to use collectible assemblies in a custom load context for better memory usage and caching behavior. This isn't a breaking change but was somewhat risky so keep an eye out for any problems related to Razor compilation and please open issues if you notice any regressions.

... (truncated)

Changelog

Sourced from Statiq.Yaml's changelog.

1.0.0-beta.62

  • Changed Statiq.App.props to Statiq.App.targets to resolve some import ordering bugs.
  • Added a Keys.IgnoreExternalDestinations setting to ignore when document destinations are not relative to the output path since some use cases may require writing documents elsewhere.

1.0.0-beta.61

1.0.0-beta.60

  • Added support for surfacing tuple information in the AnalyzeCSharp module.

1.0.0-beta.59

  • Added support for regular expressions to the ExtractFrontMatter module (#231).
  • Added IPipelineOutputs.ExceptPipelines() extension method to get outputs from all but a set of specified pipelines.
  • IPipelineOutputs.ExceptPipeline() now returns documents in natural order like IPipelineOutputs.FromPipeline() does.
  • Added AnalyzeCSharp.IncludeEmptyNamespaces() option to control whether recursively empty namespaces are output.

1.0.0-beta.58

  • Updated Buildalyzer in Statiq.CodeAnalysis to 4.1.0 which removes some dependencies on .NET Framework and resolves some package resolution problems.

1.0.0-beta.57

  • Added support for "raw" code fences to the RenderMarkdown module that bypasses markdown processing.
  • Fixed a bug when instantiating a ShortcodeResult from the bootstrapper due to lack of availability of an execution context (since the engine hasn't been created yet).
  • Added WithNestedElements() to the GatherHeadings module to control whether nested HTML element content is included in the heading text (the default is now that it is not, other than links).
  • Fixed a bug with certain modules double-encoding character references (statiqdev/Statiq.Web#981).
  • Added a new StartProcessArgument class and WithArgument()/WithArguments() methods to the StartProcess module that makes it easier to define multiple arguments inside a single config delegate.

1.0.0-beta.56

  • Added DocumentList<TDocument>.GetDestination(NormalizedPath destinationPath), .GetSource(NormalizedPath sourcePath), and .GetRelativeSource(NormalizedPath sourcePath) to better provide single document results from a document list.
  • Added IPipelineOutputs.GetDestination(NormalizedPath destinationPath), .GetSource(NormalizedPath sourcePath), and .GetRelativeSource(NormalizedPath sourcePath) to better provide single document results from pipeline output collections.
  • Added IDocument.Timestamp that holds a timestamp of document instantiation and is useful for ordering documents based on "most recent" semantics.
  • Uses the new IDocument.Timestamp property to order certain document results like the PipelineOutputs enumerator, PipelineOutputs.ExceptPipeline(), IEnumerable<IDocument>.FilterDestinations(), and IEnumerable<IDocument>.FilterSources() in descending creation order (in other words, document results that otherwise don't have a natural order are ordered by timestamp now) (#226).
  • Fixed a bug when multiple modules call IEngine.GetJavaScriptEnginePool() for the first time concurrently.
  • Added CodeAnalysisKeys.Implements to the documents produced by the AnalyzeCSharp module to represent the interface member(s) being implemented by properties, events, and methods.
  • Added the ability to inject Sass variables via metadata by prefixing with "Sass_" which should make providing theme customizations a lot easier.

1.0.0-beta.55

  • Added a new MarkdownExtensions metadata key that can add Markdown (I.e. Markdig) extension types per-document or per-execution using metadata/settings (#222).
  • Removed the recently added PathCollection.RemoveDefault() method and instead allow optionally specifying whether paths that get added to a PathCollection are removable (the default is true).
  • Removed the recently added notion of "initial settings" due to being confusing and instead moved settings initialization up in the order of bootstrapper operations (this shouldn't result in a breaking change, but be on the lookout for problems).

1.0.0-beta.54

... (truncated)

Commits
  • 2f019b2 Changed the .props files to .targets for correct ordering
  • 0274ba2 Added Keys.IgnoreExternalDestinations to prevent throwing for external docume...
  • bd681da Release notes
  • 697682d Bump version of SixLabors ImageSharp
  • 154110c Fix value of obsolete HtmlKeys
  • d857f96 Remove build.cmd
  • ce98081 More licensing stuff and other housekeeping
  • df1ec4f License updates
  • ea55317 Added support for surfacing tuple information in the AnalyzeCSharp module
  • 3002759 Added workflow_dispatch to the action
  • Additional commits viewable in compare view

Dependabot compatibility score

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 ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Jul 9, 2022
Bumps [Statiq.Yaml](https://github.com/statiqdev/Statiq.Framework) from 1.0.0-beta.48 to 1.0.0-beta.62.
- [Release notes](https://github.com/statiqdev/Statiq.Framework/releases)
- [Changelog](https://github.com/statiqdev/Statiq.Framework/blob/main/RELEASE.md)
- [Commits](statiqdev/Statiq.Framework@v1.0.0-beta.48...v1.0.0-beta.62)

---
updated-dependencies:
- dependency-name: Statiq.Yaml
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/nuget/main/Statiq.Yaml-1.0.0-beta.62 branch from 280cf0d to 3e73066 Compare November 6, 2022 12:36
@dependabot @github
Copy link
Author

dependabot bot commented on behalf of github Dec 1, 2022

Superseded by #26.

@dependabot dependabot bot closed this Dec 1, 2022
@dependabot dependabot bot deleted the dependabot/nuget/main/Statiq.Yaml-1.0.0-beta.62 branch December 1, 2022 09:02
roeyskoe pushed a commit that referenced this pull request Jun 25, 2024
* Update all the submodules

* Regenerate bindings (OpenXR broky)

* Update SPIRV-Reflect binaries (dotnet#1996)

Co-authored-by: The Silk.NET Automaton <9011267+dotnet-bot@users.noreply.github.com>

* Update Vulkan Loader binaries (dotnet#1994)

Co-authored-by: The Silk.NET Automaton <9011267+dotnet-bot@users.noreply.github.com>

* Update GLFW binaries (dotnet#1997)

Co-authored-by: The Silk.NET Automaton <9011267+dotnet-bot@users.noreply.github.com>

* Update Wgpu binaries (dotnet#1995)

Co-authored-by: The Silk.NET Automaton <9011267+dotnet-bot@users.noreply.github.com>

* Update SDL2 binaries (dotnet#1998)

Co-authored-by: The Silk.NET Automaton <9011267+dotnet-bot@users.noreply.github.com>

* DXVK: Install .NET 7

* Install libwayland-dev for wayland-scanner

* Fix SPIRVCross build script

* Update DXVK binaries (dotnet#2002)

Co-authored-by: The Silk.NET Automaton <9011267+dotnet-bot@users.noreply.github.com>

* Fix shaderc build script

* g lfw xkb common

* Update SPIRV-Cross binaries (dotnet#2003)

Co-authored-by: The Silk.NET Automaton <9011267+dotnet-bot@users.noreply.github.com>

* a crime????

* average typo user

* how deep will this have to go before i win

* Fix MoltenVK build

* modernize our vkd3d shader compiler build

* Update GLFW binaries (dotnet#2001)

Co-authored-by: The Silk.NET Automaton <9011267+dotnet-bot@users.noreply.github.com>

* Update Shaderc binaries (dotnet#2004)

Co-authored-by: The Silk.NET Automaton <9011267+dotnet-bot@users.noreply.github.com>

* Vkd3dCompiler: Add vulkan include paths

* Vkd3dCompiler: Clone vulkan headers

* static lonking

* Update Vkd3d binaries (dotnet#2013)

Co-authored-by: The Silk.NET Automaton <9011267+dotnet-bot@users.noreply.github.com>

* Fix MoltenVK native build failures due to file overwrite. (dotnet#2022)

* New binaries for MoltenVK on Darwin 22.6.0 Darwin Kernel Version 22.6.0: Mon Feb 19 19:42:47 PST 2024; root:xnu-8796.141.3.704.6~1/RELEASE_ARM64_VMAPPLE (dotnet#2023)

Co-authored-by: The Silk.NET Automaton <9011267+dotnet-bot@users.noreply.github.com>

* Add support for specifying multiple profiles in BuildTools

* tomo sona moku la mi pali e moku Sutolokanopu tan lipu musi la sina sona e moku Sutolokanopu o tu e kili selo tan sewi ona o tu e kili loje tan poka ona o wan e ko pan e moku soweli mi ken kepeken ala soweli mani ni la o lon kili selo e soko a telo walo li open seli la o pini pali kepeken namako telo namako la moku pona li lon mije ale li sona ala e ona a mi sona (a mi sona) ni li pona (ni li pona) moku Sutolokanopu mu! tomo sona moku la mi pali e moku Sutolokanopu tan lipu musi la sina sona e moku Sutolokanpu mu!

* No harm in globbing harder?

* Update Wgpu binaries (dotnet#2031)

* New binaries for Wgpu on Linux 6.5.0-1017-azure #17~22.04.1-Ubuntu SMP Sat Mar  9 04:50:38 UTC 2024

* New binaries for Wgpu on Darwin 21.6.0 Darwin Kernel Version 21.6.0: Mon Feb 19 20:24:34 PST 2024; root:xnu-8020.240.18.707.4~1/RELEASE_X86_64

* New binaries for Wgpu on Microsoft Windows 10.0.20348

---------

Co-authored-by: The Silk.NET Automaton <9011267+dotnet-bot@users.noreply.github.com>

* New binaries for Shaderc on Linux 6.5.0-1017-azure #17~22.04.1-Ubuntu SMP Sat Mar  9 04:50:38 UTC 2024 (dotnet#2040)

Co-authored-by: The Silk.NET Automaton <9011267+dotnet-bot@users.noreply.github.com>

* New binaries for DXVK on Linux 6.5.0-1017-azure #17~22.04.1-Ubuntu SMP Sat Mar  9 04:50:38 UTC 2024 (dotnet#2039)

Co-authored-by: The Silk.NET Automaton <9011267+dotnet-bot@users.noreply.github.com>

* New binaries for MoltenVK on Darwin 22.6.0 Darwin Kernel Version 22.6.0: Mon Feb 19 19:42:47 PST 2024; root:xnu-8796.141.3.704.6~1/RELEASE_ARM64_VMAPPLE (dotnet#2038)

Co-authored-by: The Silk.NET Automaton <9011267+dotnet-bot@users.noreply.github.com>

* Update Assimp binaries (dotnet#2037)

* New binaries for Assimp on Microsoft Windows 10.0.20348

* New binaries for Assimp on Darwin 21.6.0 Darwin Kernel Version 21.6.0: Mon Feb 19 20:24:34 PST 2024; root:xnu-8020.240.18.707.4~1/RELEASE_X86_64

---------

Co-authored-by: The Silk.NET Automaton <9011267+dotnet-bot@users.noreply.github.com>

* New binaries for SPIRV-Cross on Linux 6.5.0-1017-azure #17~22.04.1-Ubuntu SMP Sat Mar  9 04:50:38 UTC 2024 (dotnet#2036)

Co-authored-by: The Silk.NET Automaton <9011267+dotnet-bot@users.noreply.github.com>

* Update SDL2 binaries (dotnet#2035)

* New binaries for SDL2 on Microsoft Windows 10.0.20348

* New binaries for SDL2 on Darwin 21.6.0 Darwin Kernel Version 21.6.0: Mon Feb 19 20:24:34 PST 2024; root:xnu-8020.240.18.707.4~1/RELEASE_X86_64

---------

Co-authored-by: The Silk.NET Automaton <9011267+dotnet-bot@users.noreply.github.com>

* New binaries for SPIRV-Reflect on Linux 6.5.0-1017-azure #17~22.04.1-Ubuntu SMP Sat Mar  9 04:50:38 UTC 2024 (dotnet#2034)

Co-authored-by: The Silk.NET Automaton <9011267+dotnet-bot@users.noreply.github.com>

* Update GLFW binaries (dotnet#2033)

* New binaries for GLFW on Microsoft Windows 10.0.20348

* New binaries for GLFW on Darwin 21.6.0 Darwin Kernel Version 21.6.0: Mon Feb 19 20:24:34 PST 2024; root:xnu-8020.240.18.707.4~1/RELEASE_X86_64

---------

Co-authored-by: The Silk.NET Automaton <9011267+dotnet-bot@users.noreply.github.com>

* New binaries for Vulkan Loader on Microsoft Windows 10.0.20348 (dotnet#2032)

Co-authored-by: The Silk.NET Automaton <9011267+dotnet-bot@users.noreply.github.com>

* hello yes I am beyley

---------

Co-authored-by: silkdotnet <85832961+silkdotnet@users.noreply.github.com>
Co-authored-by: The Silk.NET Automaton <9011267+dotnet-bot@users.noreply.github.com>
Co-authored-by: Dylan Perks <dylanperks23@gmail.com>
Co-authored-by: Alex Rønne Petersen <alex@alexrp.com>
Co-authored-by: Dylan Perks <11160611+Perksey@users.noreply.github.com>
roeyskoe pushed a commit that referenced this pull request Jun 25, 2024
* Native: Add CMake toolchain files for Linux cross-compilation.

These will mainly be used in CI workflows, so they're specific to Ubuntu 18.04 and 22.04.

* Native/Assimp: Build for linux-arm, linux-arm64, and win-arm64.

Also clean up the build script.

* Native/Assimp: Don't build tests.

* Native/Assimp: Strip Linux/macOS binaries after build.

* Native/GLFW: Build for linux-arm and linux-arm64.

Also clean up the build script.

* Native/GLFW: Don't build examples, tests, and docs.

* Native/GLFW: Strip Linux/macOS binaries after build.

* Native/OpenAL Soft: Add submodule tracking 1.23.1.

* Native/OpenAL Soft: Add build script and workflow.

* Native/SDL: Build for linux-arm and linux-arm64.

Also clean up the Linux/Windows build script logic.

* Native/SDL: Drop linux-x86 support.

This has never been officially supported by .NET.

* Native/SDL: Build with dynamically-loaded Wayland and X11 support.

* Native/SDL: Disable assertions when building on Windows/Linux.

* Native/SDL: Don't build static libraries on Linux.

* Native/SDL: Strip macOS binaries after build.

* Native/Shaderc: Build for linux-arm.

* Native/Shaderc: Drop linux-x86 support.

This has never been officially supported by .NET.

* Native/Shaderc: Build with -O3 instead of -Os.

* Native/SPIRV-Cross: Build for linux-arm.

* Native/SPIRV-Cross: Drop linux-x86 support.

This has never been officially supported by .NET.

* Native/SPIRV-Cross: Build with -O3 instead of -Os.

* Native/SPIRV-Reflect: Build for linux-arm.

* Native/SPIRV-Reflect: Drop linux-x86 support.

This has never been officially supported by .NET.

* Native/SPIRV-Reflect: Build with -O3 instead of -Os.

* Native/SwiftShader: Build for linux-arm, linux-arm64, osx-arm64, and win-x86.

Also clean up the build script.

* Native/SwiftShader: Don't build tests.

* Native/SwiftShader: Strip Linux/macOS binaries after build.

* Native/Vkd3d: Build with -O3 instead of -Os.

* Native/Vulkan Loader: Build for linux-arm64, osx-arm64, and win-x86.

Also clean up the build script.

* Native/Vulkan Loader: Strip Linux/macOS binaries after build.

* Native/wgpu-native: Build for linux-arm and linux-arm64.

Also clean up the build script to be table-driven.

* Native/wgpu-native: Drop linux-x86 support.

This has never been officially supported by .NET.

* New binaries for GLFW on Darwin 23.4.0 Darwin Kernel Version 23.4.0: Fri Mar 15 00:10:50 PDT 2024; root:xnu-10063.101.17~1/RELEASE_ARM64_VMAPPLE

* New binaries for Vulkan Loader on Darwin 23.4.0 Darwin Kernel Version 23.4.0: Fri Mar 15 00:10:50 PDT 2024; root:xnu-10063.101.17~1/RELEASE_ARM64_VMAPPLE

* New binaries for Wgpu on Darwin 23.4.0 Darwin Kernel Version 23.4.0: Fri Mar 15 00:10:50 PDT 2024; root:xnu-10063.101.17~1/RELEASE_ARM64_VMAPPLE

* New binaries for GLFW on Darwin 23.4.0 Darwin Kernel Version 23.4.0: Fri Mar 15 00:10:50 PDT 2024; root:xnu-10063.101.17~1/RELEASE_ARM64_VMAPPLE

* New binaries for SPIRV-Reflect on Linux 6.5.0-1017-azure #17~22.04.1-Ubuntu SMP Sat Mar  9 04:50:38 UTC 2024

* New binaries for GLFW on Linux 6.5.0-1017-azure #17~22.04.1-Ubuntu SMP Sat Mar  9 04:50:38 UTC 2024

* New binaries for Vulkan Loader on Linux 6.5.0-1017-azure #17~22.04.1-Ubuntu SMP Sat Mar  9 04:50:38 UTC 2024

* New binaries for GLFW on Microsoft Windows 10.0.20348

* New binaries for Wgpu on Linux 6.5.0-1017-azure #17~22.04.1-Ubuntu SMP Sat Mar  9 04:50:38 UTC 2024

* New binaries for SDL2 on Darwin 23.4.0 Darwin Kernel Version 23.4.0: Fri Mar 15 00:10:50 PDT 2024; root:xnu-10063.101.17~1/RELEASE_ARM64_VMAPPLE

* New binaries for Assimp on Darwin 23.4.0 Darwin Kernel Version 23.4.0: Fri Mar 15 00:10:50 PDT 2024; root:xnu-10063.101.17~1/RELEASE_ARM64_VMAPPLE

* New binaries for SDL2 on Microsoft Windows 10.0.20348

* New binaries for GLFW on Linux 6.5.0-1017-azure #17~22.04.1-Ubuntu SMP Sat Mar  9 04:50:38 UTC 2024

* New binaries for GLFW on Microsoft Windows 10.0.20348

* New binaries for SDL2 on Linux 6.5.0-1017-azure #17~22.04.1-Ubuntu SMP Sat Mar  9 04:50:38 UTC 2024

* New binaries for Wgpu on Microsoft Windows 10.0.20348

* New binaries for SPIRV-Cross on Linux 6.5.0-1017-azure #17~22.04.1-Ubuntu SMP Sat Mar  9 04:50:38 UTC 2024

* New binaries for Assimp on Microsoft Windows 10.0.20348

* New binaries for Vkd3d on Linux 6.5.0-1017-azure #17~22.04.1-Ubuntu SMP Sat Mar  9 04:50:38 UTC 2024

* New binaries for MoltenVK on Darwin 22.6.0 Darwin Kernel Version 22.6.0: Mon Feb 19 19:42:47 PST 2024; root:xnu-8796.141.3.704.6~1/RELEASE_ARM64_VMAPPLE

* New binaries for Vulkan Loader on Microsoft Windows 10.0.20348

* New binaries for Assimp on Linux 6.5.0-1017-azure #17~22.04.1-Ubuntu SMP Sat Mar  9 04:50:38 UTC 2024

* New binaries for DXVK on Linux 6.5.0-1017-azure #17~22.04.1-Ubuntu SMP Sat Mar  9 04:50:38 UTC 2024

* New binaries for SwiftShader on Darwin 23.4.0 Darwin Kernel Version 23.4.0: Fri Mar 15 00:10:50 PDT 2024; root:xnu-10063.101.17~1/RELEASE_ARM64_VMAPPLE

* New binaries for SwiftShader on Microsoft Windows 10.0.20348

* New binaries for Shaderc on Linux 6.5.0-1017-azure #17~22.04.1-Ubuntu SMP Sat Mar  9 04:50:38 UTC 2024

* New binaries for SwiftShader on Linux 6.5.0-1017-azure #17~22.04.1-Ubuntu SMP Sat Mar  9 04:50:38 UTC 2024

* Native/GLFW: Fix incorrect library file name in package.

* New binaries for GLFW on Linux 6.5.0-1017-azure #17~22.04.1-Ubuntu SMP Sat Mar  9 04:50:38 UTC 2024

* New binaries for GLFW on Microsoft Windows 10.0.20348

* Native/OpenAL Soft: Explicitly disable sndio support.

The sndio backend takes a hard dependency on libsndio.so, unlike most other
backends which load libraries dynamically. We don't want our libopenal.so to
require users to install sndio.

* Native/OpenAL Soft: Ensure that D-Bus libraries are installed in CI.

This allows the build to pick them up and enable support.

* Native/OpenAL Soft: Fix library/PR name.

* Native/OpenAL Soft: Only install JACK for amd64 in the workflow.

This package is not multiarch-compatible in 22.04, so prioritize amd64.

* Native/SDL: Only install JACK for amd64 in the workflow.

This package is not multiarch-compatible in 22.04, so prioritize amd64.

* New binaries for SDL2 on Darwin 23.4.0 Darwin Kernel Version 23.4.0: Fri Mar 15 00:10:50 PDT 2024; root:xnu-10063.101.17~1/RELEASE_ARM64_VMAPPLE

* New binaries for SDL2 on Microsoft Windows 10.0.20348

* New binaries for OpenALSoft on Microsoft Windows 10.0.20348

* New binaries for SDL2 on Linux 6.5.0-1017-azure #17~22.04.1-Ubuntu SMP Sat Mar  9 04:50:38 UTC 2024

* New binaries for OpenALSoft on Linux 6.5.0-1017-azure #17~22.04.1-Ubuntu SMP Sat Mar  9 04:50:38 UTC 2024

* Native/Workflows: Add comments explaining APT sources.

---------

Co-authored-by: The Silk.NET Automaton <9011267+dotnet-bot@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants