Skip to content

v0.12.3

Choose a tag to compare

@boxofyellow boxofyellow released this 31 Jul 02:47
· 29 commits to main since this release
3b376d4

v0.12.3

🎨 Renderers 🎨

  • #267: Hide the header row for grid tables (UseGridTables()) that have no header, rendering the first row as data instead of a styled header

    • +---+---+---+
      | 1 | 2 | 3 |
      +---+---+---+
      | 4 | 5 | 6 |
      +---+---+---+
      | 7 | 8 | 9 |
      +---+---+---+
    • Rendered
      +---+---+---+
      | 1 | 2 | 3 |
      +---+---+---+
      | 4 | 5 | 6 |
      +---+---+---+
      | 7 | 8 | 9 |
      +---+---+---+
    • Before
      Image
    • After
      Image
  • #253: Syntax-highlight json fenced code blocks with Spectre.Console.Json

    • ```json
      {
        "name": "value",
        "count": 3,
        "enabled": true,
        "items": [1, 2],
        "extra": null
      }
      ```
    • Rendered
      {
        "name": "value",
        "count": 3,
        "enabled": true,
        "items": [1, 2],
        "extra": null
      }
    • Before
      Image
    • After
      Image
  • #242: Recognize GitHub-style alert blocks nested in lists and other containers

    • 1. Prepare the operation.
         > [!WARNING]
         > This deletes data.
    • Rendered
      1. Prepare the operation.

        [!WARNING]
        This deletes data.

    • Before
      Image
    • After
      Image
  • #241: Fill code block background across full panel width

    • ```C#
      if (a > 5 && a < 10)
      {
        foo();
      }
      ```
    • Rendered
      if (a > 5 && a < 10)
      {
        foo();
      }
    • Before
      Image
    • After
      Image
  • #240: Enable CJK-friendly emphasis parsing in the Markdig pipeline

    • 私は**γ€Œι‡θ¦γ€**だと思う
    • Rendered
      私は**γ€Œι‡θ¦γ€**だと思う
    • Before
      Image
    • After
      Image
  • #239: Respect LineBreakInline.IsHard so soft line breaks render as spaces

    • > line one
      > line two
      > 
      > A real new line
    • Rendered

      line one
      line two

      A real new line

    • Before
      Image
    • After
      Image

:copilot: Agentic Workflows :copilot:

  • #277: Allow the pr-subset-mirror workflow to mirror changes to any file (set create-pull-request protected-files: allowed)
  • #275: Add pr-subset-mirror agentic workflow
  • #265: after running gh aw upgrade

✍️ Documentation ✍️

  • #280: Prep for 0.12.3 release

πŸ“¦ Dependencies πŸ“¦

  • #274: Bump MSTest.TestAdapter and MSTest.TestFramework
  • #278: Mirror subset of #273: Bump the github-actions group across 1 directory with 3 updates (eligible files only)
  • #268: Bump the github-actions group across 1 directory with 4 updates
  • #248: Update CodeQL action to v4.37.0
  • #244: Bump the nuget-dependencies group with 4 updates
  • #258: Bump the nuget-dependencies group with 5 updates

Full Changelog: v0.12.2...v0.12.3