From 9663c54039d6aa36fb720eda5924494b9f38652c Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 17 Jul 2024 23:14:39 +0000 Subject: [PATCH 1/5] Update dependency Refitter.Core to v1.1.2 --- src/Core/ApiClientCodeGen.Core/ApiClientCodeGen.Core.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Core/ApiClientCodeGen.Core/ApiClientCodeGen.Core.csproj b/src/Core/ApiClientCodeGen.Core/ApiClientCodeGen.Core.csproj index f9bd10e0ff..63c861237f 100644 --- a/src/Core/ApiClientCodeGen.Core/ApiClientCodeGen.Core.csproj +++ b/src/Core/ApiClientCodeGen.Core/ApiClientCodeGen.Core.csproj @@ -21,7 +21,7 @@ - + From e9b419808e5d571920f8ccd24be3d7dcb9f6d43c Mon Sep 17 00:00:00 2001 From: Christian Helle Date: Thu, 18 Jul 2024 01:16:00 +0200 Subject: [PATCH 2/5] Update Refitter to v1.1.2 in CLI tool --- src/CLI/ApiClientCodeGen.CLI/Commands/CSharp/RefitterCommand.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/CLI/ApiClientCodeGen.CLI/Commands/CSharp/RefitterCommand.cs b/src/CLI/ApiClientCodeGen.CLI/Commands/CSharp/RefitterCommand.cs index 4f30ec75ea..f1deb3fe43 100644 --- a/src/CLI/ApiClientCodeGen.CLI/Commands/CSharp/RefitterCommand.cs +++ b/src/CLI/ApiClientCodeGen.CLI/Commands/CSharp/RefitterCommand.cs @@ -6,7 +6,7 @@ namespace Rapicgen.CLI.Commands.CSharp; -[Command("refitter", Description = "Refitter (v1.1.1)")] +[Command("refitter", Description = "Refitter (v1.1.2)")] public class RefitterCommand : CodeGeneratorCommand { private readonly IRefitterCodeGeneratorFactory factory; From 6a428a522341eab537e7bc26d24e623dbf439ee5 Mon Sep 17 00:00:00 2001 From: Christian Helle Date: Thu, 18 Jul 2024 01:16:09 +0200 Subject: [PATCH 3/5] Update Refitter to v1.1.2 in header --- .../Generators/Refitter/RefitterCodeGenerator.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Core/ApiClientCodeGen.Core/Generators/Refitter/RefitterCodeGenerator.cs b/src/Core/ApiClientCodeGen.Core/Generators/Refitter/RefitterCodeGenerator.cs index 8fcfc1cd29..0a3258966a 100644 --- a/src/Core/ApiClientCodeGen.Core/Generators/Refitter/RefitterCodeGenerator.cs +++ b/src/Core/ApiClientCodeGen.Core/Generators/Refitter/RefitterCodeGenerator.cs @@ -89,7 +89,7 @@ public string GenerateCode(IProgressReporter? pGenerateProgress) var output = GeneratedCode.PrefixAutogeneratedCodeHeader( code, "Refitter", - "v1.1.1"); + "v1.1.2"); if (inputFile.EndsWith(".refitter")) { From 095b62879dd346430e2d50472e460813c21cfb08 Mon Sep 17 00:00:00 2001 From: Christian Helle Date: Thu, 18 Jul 2024 01:16:20 +0200 Subject: [PATCH 4/5] Update Refitter to v1.1.2 in Visual Studio context menus --- src/VSIX/ApiClientCodeGen.VSIX.Dev17/VSCommandTable.vsct | 4 ++-- src/VSIX/ApiClientCodeGen.VSIX/VSCommandTable.vsct | 4 ++-- .../ApiClientCodeGen.VSMac/Properties/Manifest.addin.xml | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/VSIX/ApiClientCodeGen.VSIX.Dev17/VSCommandTable.vsct b/src/VSIX/ApiClientCodeGen.VSIX.Dev17/VSCommandTable.vsct index b936317d8b..94b2f0df9d 100644 --- a/src/VSIX/ApiClientCodeGen.VSIX.Dev17/VSCommandTable.vsct +++ b/src/VSIX/ApiClientCodeGen.VSIX.Dev17/VSCommandTable.vsct @@ -59,7 +59,7 @@ @@ -119,7 +119,7 @@ diff --git a/src/VSIX/ApiClientCodeGen.VSIX/VSCommandTable.vsct b/src/VSIX/ApiClientCodeGen.VSIX/VSCommandTable.vsct index b936317d8b..94b2f0df9d 100644 --- a/src/VSIX/ApiClientCodeGen.VSIX/VSCommandTable.vsct +++ b/src/VSIX/ApiClientCodeGen.VSIX/VSCommandTable.vsct @@ -59,7 +59,7 @@ @@ -119,7 +119,7 @@ diff --git a/src/VSMac/ApiClientCodeGen.VSMac/Properties/Manifest.addin.xml b/src/VSMac/ApiClientCodeGen.VSMac/Properties/Manifest.addin.xml index 7e2281eb59..216fe28882 100644 --- a/src/VSMac/ApiClientCodeGen.VSMac/Properties/Manifest.addin.xml +++ b/src/VSMac/ApiClientCodeGen.VSMac/Properties/Manifest.addin.xml @@ -43,7 +43,7 @@ defaultHandler="ApiClientCodeGen.VSMac.Commands.Handlers.AddNewKiotaCommandHandler" /> Date: Thu, 18 Jul 2024 01:16:25 +0200 Subject: [PATCH 5/5] Update Refitter to v1.1.2 in docs --- README.md | 4 ++-- docs/CLI.md | 2 +- docs/Marketplace.md | 2 +- docs/Marketplace2022.md | 2 +- docs/VisualStudioForMac.md | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 643b4cdd2d..327cfb0551 100644 --- a/README.md +++ b/README.md @@ -69,7 +69,7 @@ The output file is the result of merging all the files generated using the Swagg - ***AutoRestCodeGenerator*** - Generates a single file C# REST API Client using **AutoRest v3.0.0-beta.20210504.2** for OpenAPI v3 and **AutoRest v2.0.4417** for OpenAPI v2. The resulting file is the equivalent of using the AutoRest CLI tool with: `--csharp --input-file=[swagger file] --output-file=[output file] --namespace=[default namespace] --add-credentials` -- ***RefitterCodeGenerator*** - Generates a single file C# REST API Client inteface for [Refit](https://github.com/reactiveui/refit) using [Refitter.Core](https://github.com/christianhelle/refitter) [nuget package](https://www.nuget.org/packages/Refitter.Core/) **v1.1.1**. +- ***RefitterCodeGenerator*** - Generates a single file C# REST API Client inteface for [Refit](https://github.com/reactiveui/refit) using [Refitter.Core](https://github.com/christianhelle/refitter) [nuget package](https://www.nuget.org/packages/Refitter.Core/) **v1.1.2**. The output file contains a Refit interface generated by [Refitter](https://github.com/christianhelle/refitter) and contracts generated using [NSwag.CodeGeneration.CSharp](https://github.com/RSuter/NSwag/wiki/CSharpClientGenerator) [nuget package](https://www.nuget.org/packages/NSwag.CodeGeneration.CSharp/) ### Dependencies @@ -309,7 +309,7 @@ Commands: kiota Microsoft Kiota (v1.16.0) nswag NSwag (v14.1.0) openapi OpenAPI Generator (v7.7.0) - refitter Refitter (v1.1.1) + refitter Refitter (v1.1.2) swagger Swagger Codegen CLI (v3.0.34) Run 'csharp [command] -?|-h|--help' for more information about a command. diff --git a/docs/CLI.md b/docs/CLI.md index 5f746be7a2..4860b695b4 100644 --- a/docs/CLI.md +++ b/docs/CLI.md @@ -73,7 +73,7 @@ Commands: kiota Microsoft Kiota (v1.16.0) nswag NSwag (v14.1.0) openapi OpenAPI Generator (v7.7.0) - refitter Refitter (v1.1.1) + refitter Refitter (v1.1.2) swagger Swagger Codegen CLI (v3.0.34) Run 'csharp [command] -?|-h|--help' for more information about a command. diff --git a/docs/Marketplace.md b/docs/Marketplace.md index d20ba53ab8..caa2cb0671 100644 --- a/docs/Marketplace.md +++ b/docs/Marketplace.md @@ -41,7 +41,7 @@ The output file is the result of merging all the files generated using the Swagg - ***AutoRestCodeGenerator*** - Generates a single file C# REST API Client using **AutoRest v3.0.0-beta.20210504.2** for OpenAPI v3 and **AutoRest v2.0.4417** for OpenAPI v2. The resulting file is the equivalent of using the AutoRest CLI tool with: `--csharp --input-file=[swagger file] --output-file=[output file] --namespace=[default namespace] --add-credentials` -- ***RefitterCodeGenerator*** - Generates a single file C# REST API Client inteface for [Refit](https://github.com/reactiveui/refit) using [Refitter.Core](https://github.com/christianhelle/refitter) [nuget package](https://www.nuget.org/packages/Refitter.Core/) **v1.1.1**. +- ***RefitterCodeGenerator*** - Generates a single file C# REST API Client inteface for [Refit](https://github.com/reactiveui/refit) using [Refitter.Core](https://github.com/christianhelle/refitter) [nuget package](https://www.nuget.org/packages/Refitter.Core/) **v1.1.2**. The output file contains a Refit interface generated by [Refitter](https://github.com/christianhelle/refitter) and contracts generated using [NSwag.CodeGeneration.CSharp](https://github.com/RSuter/NSwag/wiki/CSharpClientGenerator) [nuget package](https://www.nuget.org/packages/NSwag.CodeGeneration.CSharp/) ### Dependencies diff --git a/docs/Marketplace2022.md b/docs/Marketplace2022.md index 071da8a092..f9e3d58be5 100644 --- a/docs/Marketplace2022.md +++ b/docs/Marketplace2022.md @@ -41,7 +41,7 @@ The output file is the result of merging all the files generated using the Swagg - ***AutoRestCodeGenerator*** - Generates a single file C# REST API Client using **AutoRest v3.0.0-beta.20210504.2** for OpenAPI v3 and **AutoRest v2.0.4417** for OpenAPI v2. The resulting file is the equivalent of using the AutoRest CLI tool with: `--csharp --input-file=[swagger file] --output-file=[output file] --namespace=[default namespace] --add-credentials` -- ***RefitterCodeGenerator*** - Generates a single file C# REST API Client inteface for [Refit](https://github.com/reactiveui/refit) using [Refitter.Core](https://github.com/christianhelle/refitter) [nuget package](https://www.nuget.org/packages/Refitter.Core/) **v1.1.1**. +- ***RefitterCodeGenerator*** - Generates a single file C# REST API Client inteface for [Refit](https://github.com/reactiveui/refit) using [Refitter.Core](https://github.com/christianhelle/refitter) [nuget package](https://www.nuget.org/packages/Refitter.Core/) **v1.1.2**. The output file contains a Refit interface generated by [Refitter](https://github.com/christianhelle/refitter) and contracts generated using [NSwag.CodeGeneration.CSharp](https://github.com/RSuter/NSwag/wiki/CSharpClientGenerator) [nuget package](https://www.nuget.org/packages/NSwag.CodeGeneration.CSharp/) ### Dependencies diff --git a/docs/VisualStudioForMac.md b/docs/VisualStudioForMac.md index 1e4644a91c..e6a4bef182 100644 --- a/docs/VisualStudioForMac.md +++ b/docs/VisualStudioForMac.md @@ -29,7 +29,7 @@ The output file is the result of merging all the files generated using the Swagg The resulting file is the equivalent of using the AutoRest CLI tool with:+ `--csharp --input-file=[swagger file] --output-file=[output file] --namespace=[default namespace] --add-credentials` -- ***RefitterCodeGenerator*** - Generates a single file C# REST API Client inteface for [Refit](https://github.com/reactiveui/refit) using [Refitter.Core](https://github.com/christianhelle/refitter) [nuget package](https://www.nuget.org/packages/Refitter.Core/) **v1.1.1**. +- ***RefitterCodeGenerator*** - Generates a single file C# REST API Client inteface for [Refit](https://github.com/reactiveui/refit) using [Refitter.Core](https://github.com/christianhelle/refitter) [nuget package](https://www.nuget.org/packages/Refitter.Core/) **v1.1.2**. The output file contains a Refit interface generated by [Refitter](https://github.com/christianhelle/refitter) and contracts generated using [NSwag.CodeGeneration.CSharp](https://github.com/RSuter/NSwag/wiki/CSharpClientGenerator) [nuget package](https://www.nuget.org/packages/NSwag.CodeGeneration.CSharp/) ### Dependencies