Skip to content
This repository was archived by the owner on Jul 19, 2026. It is now read-only.

chore(deps.nuget): Bump the minor-and-patch group with 3 updates#66

Merged
mf366-dev merged 1 commit into
devfrom
dependabot/nuget/src/RSML.CLI/dev/minor-and-patch-201f68194b
Jul 15, 2026
Merged

chore(deps.nuget): Bump the minor-and-patch group with 3 updates#66
mf366-dev merged 1 commit into
devfrom
dependabot/nuget/src/RSML.CLI/dev/minor-and-patch-201f68194b

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 15, 2026

Copy link
Copy Markdown
Contributor

Updated SixLabors.ImageSharp from 3.1.11 to 3.1.12.

Release notes

Sourced from SixLabors.ImageSharp's releases.

3.1.12

What's Changed

Full Changelog: SixLabors/ImageSharp@v3.1.11...v3.1.12

Commits viewable in compare view.

Updated Spectre.Console from 0.50.1-preview.0.24 to 0.57.2.

Release notes

Sourced from Spectre.Console's releases.

0.57.2

What's Change

Full Changelog: spectreconsole/spectre.console@0.57.1...0.57.2

0.57.1

What's Changed

  • GH2153: Fix async stack traces rendering as MoveNext() instead of source methods by @​devlead in #​2154

Full Changelog: spectreconsole/spectre.console@0.57.0...0.57.1

0.57.0

What's Changed

Full Changelog: spectreconsole/spectre.console@0.56.0...0.57.0

0.56.0

What's Changed

New Contributors

Full Changelog: spectreconsole/spectre.console@0.55.2...0.56.0

0.55.2

What's Changed

New Contributors

Full Changelog: spectreconsole/spectre.console@0.55.1...0.55.2

0.55.1

What's Changed

New Contributors

Full Changelog: spectreconsole/spectre.console@0.55.0...0.55.1

0.55.0

This release brings new features, performance improvements, bug fixes, and some important architectural changes.

[!CAUTION]
There are breaking changes in this release, so make sure you review the release notes and try things out before upgrading in production.

New Spectre.Console.Ansi Library

One of the biggest changes in this release is the introduction of
Spectre.Console.Ansi,
a new standalone library for writing ANSI escape
sequences to the terminal without taking a full dependency on Spectre.Console.

This makes it easy to add ANSI support to lightweight tools and libraries where
pulling in the full Spectre.Console package would be overkill. Spectre.Console
itself now depends on this library internally.

We've also added some nice convenience methods for the .NET Console class:

using Spectre.Console.Ansi;

Console.Markup("[yellow]Hello[/] ");
Console.MarkupLine("[blue]World[/]");
  
Console.Ansi(writer => writer
    .BeginLink("https://spectreconsole.net", linkId: 123)
    .Decoration(Decoration.Bold | Decoration.Italic)
    .Foreground(Color.Yellow)
    .Write("Spectre Console")
    .ResetStyle()
    .EndLink());

Style Is Now a Struct

Style has been converted from a class to a struct, and link/URL information
has been extracted into a separate Link type. This improves allocation
performance, especially in rendering-heavy scenarios, but is a breaking change
for code that relies on reference semantics.

Progress Improvements

The Progress widget received a lot of love in this release. It now uses
TimeProvider instead of the wall clock, making it significantly easier to
write deterministic tests. ProgressTask has a new Tag property for attaching
arbitrary metadata, and you can now override the global hide-when-completed
behavior on individual tasks. Tasks can also be removed from the progress
context entirely.

Speed calculations have been improved with configurable max sampling age and
... (truncated)

0.54.0

Version 0.54.0 of Spectre.Console has been released!

Spectre.Console.Cli has a new home!

We've decided to move Spectre.Console.Cli to its own repository, where we will prepare it for a 1.0 release. This means that the Spectre.Console.Cli NuGet packages will no longer be versioned together with Spectre.Console. They will now have a preview version such as 1.0.0-alpha-0.x.

There should be no issues staying on version 0.53.0 of Spectre.Console.Cli until we release a stable version if you prefer not to use a pre-release dependency.

New unit testing package for Spectre.Console.Cli

There is now a new testing package for Spectre.Console.Cli called Spectre.Console.Cli.Testing. This is where you will find the CommandAppTester from now on.

You can find more information about unit testing in the documentation.

What's Changed

Full Changelog: spectreconsole/spectre.console@0.53.0...0.54.0

0.53.1

This is a hotfix release for 0.53.0, which accidentally included OpenCli.Sources as a dependency, instead of being included in the package.

As a bonus, a fix for panels was also included in this release 😄

What's Changed

Full Changelog: spectreconsole/spectre.console@0.53.0...0.53.1

0.53.0

What's Changed

  • Add top-level CancellationToken support to Spectre.Console.Cli by @​0xced in #​1911
  • Update the Spectre.Console.Cli documentation with CancellationToken by @​0xced in #​1920

Full Changelog: spectreconsole/spectre.console@0.52.0...0.53.0

0.52.0

What's Changed

Full Changelog: spectreconsole/spectre.console@0.51.1...0.52.0

0.51.1

What's Changed

New Contributors

Full Changelog: spectreconsole/spectre.console@0.50.0...0.51.1

Commits viewable in compare view.

Updated System.CommandLine from 2.0.0-beta6.25358.103 to 2.0.10.

Release notes

Sourced from System.CommandLine's releases.

No release notes found for this version range.

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 show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> 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 <dependency name> 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 <dependency name> 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 <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps SixLabors.ImageSharp from 3.1.11 to 3.1.12
Bumps Spectre.Console from 0.50.1-preview.0.24 to 0.57.2
Bumps System.CommandLine from 2.0.0-beta6.25358.103 to 2.0.10

---
updated-dependencies:
- dependency-name: SixLabors.ImageSharp
  dependency-version: 3.1.12
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: Spectre.Console
  dependency-version: 0.57.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: System.CommandLine
  dependency-version: 2.0.10
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot
dependabot Bot requested a review from a team as a code owner July 15, 2026 06:10
@dependabot dependabot Bot added the Dependencies Updating dependencies label Jul 15, 2026
@dependabot
dependabot Bot requested a review from mf366-dev July 15, 2026 06:10
@dependabot dependabot Bot added the Dependencies Updating dependencies label Jul 15, 2026

@mf366-dev mf366-dev left a comment

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't know if ImageSharp will be necessary for much longer, gotta be honest. With the new CLI and everything. Approved nonetheless.

@mf366-dev
mf366-dev merged commit d6f0991 into dev Jul 15, 2026
2 checks passed
@dependabot
dependabot Bot deleted the dependabot/nuget/src/RSML.CLI/dev/minor-and-patch-201f68194b branch July 15, 2026 09:03
mf366-dev added a commit that referenced this pull request Jul 19, 2026
* ci: Update release workflow to use Trusted Publishers over API keys

* chore: Update changelog with latest available data

* fix(buffer): Made a condition more obvious on what the consequences are

* chore: Remove SDK project and have the SDK in the RSML project instead

* fix(buffer)!: Fix `CountUntilLineSeparator` returning off-by-one and negative results

* test(buffer): Heavily test several buffer functions related to counting

* refactor: Move types around namespaces and add directories to have code in the future
Refactored the lexer's namespaces and organization, and added a bunch of useful directories that will have code in them in the near future.

* chore: Remove useless comments and update security policy
Remove useless comments from to-be-implemented lexer interfaces (#49) and updated the security policy.

Signed-off-by: Matthew

* feat(extensions): Start working on extension support little by little
This works on #61 and we're geting there with #65. I officially started working on supporting extensions. Code is a bit messy right now, but you can expect then when we're still laying foundations for extensibility in RSML's SDK. So many things to do and so little time...

* chore: Update changelogs with latest commits

* refactor(sdk): Reorganized the RSML API and SDK
Reorganized and renamed some items in both the RSML API (toolchain) and SDK (extensibility) to allow for a better organization.

* refactor(sdk): Remove `IInjectable` for not being necessary anymore

* fix(buffer): Fix out of range calculations not taking negative indexes into account

* feat(buffer): Add more equality checks for the buffers

* test(buffer): Test more counting functions and further test `CountWhile`
Added several tests for all counting methods, including extra test methods for `CountWhile`.

* refactor: Use C# 14 extension blocks instead of static extension methods
This was changed because extension blocks look cleaner, when there's more than one extension method per type. If one type only has one extension method and it doesn't need the additional behaviors of extension blocks, it's best to use a static extension method.

* refactor: Rename `InternalUtils` to `Constants` and move the OAS item interface to a better namespace
Also suppressed a minor code style issue, which does not affect functionality.

* test(buffer): Add tests for equality checks within the read-only string buffer

* test(buffer): Add tests for verifying if `GetLengthOfLine` thrown when empty or out of range

* chore: Update git attributes with new content and normalize file encodings

* tets: Further test the read-only string buffer
Taking a small break cuz brain hurts. sorry

Signed-off-by: Matthew
Refs: #60

* refactor: Rename `CountUntilLineSeparator` to `CountUntilEndOfLine`

* fix(buffer): Fix last line specific logic when counting until the end of the line
There was a bug where `CountUntilEndOfLine` would not count correctly when at the last line and it did not contain any newline characters.

Signed-off-by: Matthew
Refs: #60

* docs(buffer): Add notes about EOF conventions in XML documentation of some methods
Some methods didn't make it clear whether EOF was accepted and what the conventions were. Now fixed.

Signed-off-by: Matthew
Refs: #21

* test(buffers): Test fixed version of `CountUntilEndOfLine` and add more tests for it
Added a few more tests for said method, to make sure it's working, even with the recently introduced features.

Signed-off-by: Matthew
Refs: #60

* docs(buffer): Document `GetLine`'s EOF conventions

Refs: #21

* test(buffer): Test error-throwing buffer logic
Improved tests for checking whether an out of range index or line number ends in an error-throwing operation.

Signed-off-by: Matthew
Refs: #60

* style(docs): Improved light theme for the documentation website
Improved the overall feel of the light theme, by making the sidebar slightly darker and adding a version of the "article" alert for light mode.

Signed-off-by: Matthew
Refs: #21

* docs(blog): Add article explaining the amount of tests implemented

* docs(api): Update .NET API documentation
Updated the documentation for RSML's .NET API.

Signed-off-by: Matthew
Refs: #21

* docs(buffer): Document behavior where EOF convention is not followed by location-finding method
`GetSourceLocation` does not adhere to EOF convention because EOF is not considered an actual location in the buffer, meaning it would not make sense for the method to return a valid location for EOF.

Signed-off-by: Matthew
Refs: #21

* ci: Reduce GitHub Actions usage time by running automated tests only on .NET 10.0
RSML is becoming a unit test beast, with more than 1000 tests if you count the two targetted frameworks (.NET 8.0 and .NET 10.0). To avoid consuming a lot of GitHub Actions usage time, we're only running the workflow on .NET 10.0 from now on.

* test(buffer): Implement tests for `GetLineFromIndex` and `GetSourceLocation`
Implement 6 test methods for the methods mentioned above. Also improved some of the naming on the other test methods. Oh, and I nearly forgot: I added inline data that used negative indexes to see if RSML normalized them correctly: it did!!

Signed-off-by: Matthew
Refs: #60

* chore(deps.nuget): Bump the minor-and-patch group with 3 updates (#66)

Bumps SixLabors.ImageSharp from 3.1.11 to 3.1.12
Bumps Spectre.Console from 0.50.1-preview.0.24 to 0.57.2
Bumps System.CommandLine from 2.0.0-beta6.25358.103 to 2.0.10

---
updated-dependencies:
- dependency-name: SixLabors.ImageSharp
  dependency-version: 3.1.12
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: Spectre.Console
  dependency-version: 0.57.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: System.CommandLine
  dependency-version: 2.0.10
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
...

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

* refactor(buffer): Add `GetSourceSpan` method and remove variations of `GetWord`
We strongly believe `GetWord`is nowhere near as important as, for example, `GetLine` for this language, hence the change.

Signed-off-by: Matthew <matthew@oceanapocalypsestudios.org>

* fix!: Fixed major bug where `SourceSpan` did not check if the start index was less than the end index
For a span to be correct, the start index must be less than the end index, yet `SourceSpan` did not bother with that check, leading to faulty code.
Now fixed.

Signed-off-by: Matthew <matthew@oceanapocalypsestudios.org>

* docs(buffer): Document exceptions thrown by methods and EOF conventions
There were still some methods that didn't maske it obvious enough what was thrown, why and in which situation.

Signed-off-by: Matthew <matthew@oceanapocalypsestudios.org>
Refs: #21

* feat(buffer): Remove `GetWord`-like methods and implement `GetSourceSpan` in the read-only string buffer
Removed the `GetWord`-like methods for reasons stated in commit 38a48fa and implemented `GetSourceSpan` in the `ReadOnlyStringBuffer` class.

Signed-off-by: Matthew <matthew@oceanapocalypsestudios.org>

* test(buffer): Test constructors and slicing methods for the read-only string buffer

Signed-off-by: Matthew <matthew@oceanapocalypsestudios.org>
Refs: #60

* test(buffer): Finish testing the read-only string buffer and fix some faulty behaviors while computing line starts
There was a small bug that was discovered and fixed, where, while computing line starts, RSML would skip a line separator - which was intended - but would only skip 1 meaning that in CRLF, only LF was skipped.
Other than that, this commit closes #60, as the read-only string buffer has been fully tested, with all tests passing for both frameworks.

Signed-off-by: Matthew <matthew@oceanapocalypsestudios.org>
Refs: #60

* perf(buffer)!: Use result value types over exceptions for performance
This helps with performance, as catching exceptions is extremely expensive. This way, we can enjoy better performance while still keeping everything tidy and convenient. This commit introduces `Result<TValue>` as the alternative, which is based on a similar type in Rust. The tests were also adapted to drop the previous use of exceptions. All tests are still passing. Some types were also renamed to better fit their purpose.

Signed-off-by: Matthew <matthew@oceanapocalypsestudios.org>

* refactor(buffer): Rename the read-only string buffer to `ReadOnlyCharBuffer` to indicate `TItem` is `System.Char` instead of `System.String`
Just a minor change.

* feat(toolchain): Implement all members from `IToolchainComponent` in the classes that implement it

* refactor: Suppress minor issues and remove unnecessary extension methods

* feat(buffer)!: Implement the read-only span buffer for minimum allocations
Implemented an alternative to the read-only string buffer that keeps allocations to a minimum. In fact, if you don't count caching, it would allocate a round zero of bytes. Fully tested too.

Signed-off-by: Matthew <matthew@oceanapocalypsestudios.org>

* chore: Include new extensibility project to security information

* refactor: Place all internal-use extension members in a single file

* feat(api)!: Add the extensibility project

Added the extensibility project, to be fully implemented in pre-release 4.
Signed-off-by: Matthew <matthew@oceanapocalypsestudios.org>

* chore: Update changelog

* ci: Improve current release workflow

* ci: Fix release workflow

* fix: Fix release workflow and build errors

* ci: Fix workflow for cross-compilation

* ci: Fix typo

* ci: Fix workflow overall

* ci: Update release workflow

* ci: Fix workflow again

* ci: Fix workflow and end pain

* ci: Finally fix existing cross compilation issue

* ci: Add job permissions

* ci: Debug release workflow

* ci: Add permissions to workflows

* chore(build): Mark RSML and RSML.Extensibility projects as AOT compatible

This way, analyzers that check for trimming, AOT and others are enabled. This commit also disables packing for the benchmarks.
Refs: #67 #68

* refactor(buffer): Rename `ReadOnlyCharBuffer` back to `ReadOnlyStringBuffer` (1/2)

* refactor(buffer): Rename `ReadOnlyCharBuffer` back to `ReadOnlyStringBuffer` (2/2)

* chore: Improve README file

* refactor!: Remove currently unused extensibility code

* docs!: Remove third party DocFX templates and restructure site

Refs: #21

* chore: Add editor configurations and concurrency settings

* feat: Improve support for .NET Framework and add support for .NET Framework 4.6.1

* chore: Drop support for .NET Standard 2.0 and .NET 6.0

* refactor: Move some code around to better organize the API

This includes getting rid of IBufferReader and instead having an IStream because Buffer implies a seekable and indexable region of memory.

* perf(buffer): Benchmark the performance of a given buffer method

Compared the string buffer with the span buffer. Benchmark currently running.

* chore: Push content

* chore: Add archival notice

---------

Signed-off-by: Matthew
Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: Matthew <matthew@oceanapocalypsestudios.org>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Labels

Dependencies Updating dependencies

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant