From b00c9f18527042a81fb1ee5c31059d3c7de9dd49 Mon Sep 17 00:00:00 2001 From: Tom Longhurst <30480171+thomhurst@users.noreply.github.com> Date: Mon, 29 Dec 2025 18:39:05 +0000 Subject: [PATCH 1/5] chore: Add .worktrees/ to .gitignore for parallel development MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- .gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 88f3ca33fc..6a72d69cea 100644 --- a/.gitignore +++ b/.gitignore @@ -399,4 +399,4 @@ FodyWeavers.xsd requirements .claude/settings.local.json -nul \ No newline at end of file +nul.worktrees/ From 1ca0530b16565f2635e800693d2278e7dc45b91b Mon Sep 17 00:00:00 2001 From: Tom Longhurst <30480171+thomhurst@users.noreply.github.com> Date: Tue, 30 Dec 2025 12:09:21 +0000 Subject: [PATCH 2/5] docs: Fix 'bas64' typo in IBase64.cs (#1604) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- src/ModularPipelines/Context/IBase64.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ModularPipelines/Context/IBase64.cs b/src/ModularPipelines/Context/IBase64.cs index c41f7da324..c98582c990 100644 --- a/src/ModularPipelines/Context/IBase64.cs +++ b/src/ModularPipelines/Context/IBase64.cs @@ -27,14 +27,14 @@ public interface IBase64 string ToBase64String(byte[] bytes); /// - /// Converts a bas64 encoded string to a decoded standard string. + /// Converts a base64 encoded string to a decoded standard string. /// /// The base64 string to decode. /// The unencoded string. string FromBase64String(string base64Input) => FromBase64String(base64Input, Encoding.UTF8); /// - /// Converts a bas64 encoded string to a decoded standard string. + /// Converts a base64 encoded string to a decoded standard string. /// /// The base64 string to decode. /// The string encoding. From bea9f398188887ef879a6a4d40f8fdb34131eb00 Mon Sep 17 00:00:00 2001 From: Tom Longhurst <30480171+thomhurst@users.noreply.github.com> Date: Tue, 30 Dec 2025 12:09:29 +0000 Subject: [PATCH 3/5] docs: Fix 'convering' typos in IPipelineEncoding.cs (#1638) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- src/ModularPipelines/Context/IPipelineEncoding.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ModularPipelines/Context/IPipelineEncoding.cs b/src/ModularPipelines/Context/IPipelineEncoding.cs index 9441b55b51..9bad219b59 100644 --- a/src/ModularPipelines/Context/IPipelineEncoding.cs +++ b/src/ModularPipelines/Context/IPipelineEncoding.cs @@ -17,12 +17,12 @@ public interface IPipelineEncoding IJson Json { get; } /// - /// Gets helpers for convering XML. + /// Gets helpers for converting XML. /// IXml Xml { get; } /// - /// Gets helpers for convering YAML. + /// Gets helpers for converting YAML. /// IYaml Yaml { get; } From 43b22493d585b1368b15fd6f07ff38126d068a56 Mon Sep 17 00:00:00 2001 From: Tom Longhurst <30480171+thomhurst@users.noreply.github.com> Date: Tue, 30 Dec 2025 12:09:37 +0000 Subject: [PATCH 4/5] docs: Fix duplicate 'whether' and '64 bit' in IEnvironmentContext.cs (#1646) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- src/ModularPipelines/Context/IEnvironmentContext.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ModularPipelines/Context/IEnvironmentContext.cs b/src/ModularPipelines/Context/IEnvironmentContext.cs index f3a7ca6527..a329d88176 100644 --- a/src/ModularPipelines/Context/IEnvironmentContext.cs +++ b/src/ModularPipelines/Context/IEnvironmentContext.cs @@ -22,7 +22,7 @@ public interface IEnvironmentContext public Version OperatingSystemVersion { get; } /// - /// Gets a value indicating whether whether the current operating system is 64 bit. + /// Gets a value indicating whether the current operating system is 64-bit. /// public bool Is64BitOperatingSystem { get; } From 0a9c1ab65bea87b17f6f2641d0a4931164d35c39 Mon Sep 17 00:00:00 2001 From: Tom Longhurst <30480171+thomhurst@users.noreply.github.com> Date: Tue, 30 Dec 2025 12:09:45 +0000 Subject: [PATCH 5/5] docs: Fix 'Gets or sets and sets' in HttpOptions.cs (#1616) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- src/ModularPipelines/Options/HttpOptions.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ModularPipelines/Options/HttpOptions.cs b/src/ModularPipelines/Options/HttpOptions.cs index 11cede9b01..36bce14458 100644 --- a/src/ModularPipelines/Options/HttpOptions.cs +++ b/src/ModularPipelines/Options/HttpOptions.cs @@ -9,7 +9,7 @@ namespace ModularPipelines.Options; public record HttpOptions(HttpRequestMessage HttpRequestMessage) { /// - /// Gets or sets and sets an optional HttpClient for handling the request. + /// Gets or sets an optional HttpClient for handling the request. /// public HttpClient? HttpClient { get; set; }