Skip to content

Commit f10b34c

Browse files
committed
Adds changelog and format code
1 parent d738055 commit f10b34c

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2020
- RequestExecuters call overload methods reducing code generation size for Java. [#3150](https://github.com/microsoft/kiota/issues/3150)
2121
- Remove URISyntaxException from Java generated RequestExecutors and RequestGenerators. [#3149](https://github.com/microsoft/kiota/issues/3149)
2222
- Adds 'Generated' annotation to generated Enums and Classes for Java. [#3106](https://github.com/microsoft/kiota/issues/3106)
23+
- Fixes uuid conversion to string value in PathParameters in Go. [#3106](https://github.com/microsoft/kiota/issues/3176)
2324

2425
## [1.5.1] - 2023-08-08
2526

src/Kiota.Builder/Refiners/GoRefiner.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -503,7 +503,7 @@ private static void AddErrorImportForEnums(CodeElement currentElement)
503503
!typeToSkipStrConv.Contains(x.Type.Name)),
504504
"strconv", "FormatBool"),
505505
new (static x => x is CodeMethod method && method.IsOfKind(CodeMethodKind.IndexerBackwardCompatibility) &&
506-
method.OriginalIndexer is CodeIndexer indexer && !indexer.IndexParameter.Type.Name.Equals("string", StringComparison.OrdinalIgnoreCase)
506+
method.OriginalIndexer is CodeIndexer indexer && !indexer.IndexParameter.Type.Name.Equals("string", StringComparison.OrdinalIgnoreCase)
507507
&& !typeToSkipStrConv.Contains(indexer.IndexParameter.Type.Name),
508508
"strconv", "FormatInt"),
509509
new (static x => x is CodeMethod method && method.IsOfKind(CodeMethodKind.Serializer),

0 commit comments

Comments
 (0)