File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
src/Kiota.Builder/Refiners Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
20
20
- RequestExecuters call overload methods reducing code generation size for Java. [ #3150 ] ( https://github.com/microsoft/kiota/issues/3150 )
21
21
- Remove URISyntaxException from Java generated RequestExecutors and RequestGenerators. [ #3149 ] ( https://github.com/microsoft/kiota/issues/3149 )
22
22
- 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 )
23
24
24
25
## [ 1.5.1] - 2023-08-08
25
26
Original file line number Diff line number Diff line change @@ -503,7 +503,7 @@ private static void AddErrorImportForEnums(CodeElement currentElement)
503
503
! typeToSkipStrConv . Contains ( x . Type . Name ) ) ,
504
504
"strconv" , "FormatBool" ) ,
505
505
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 )
507
507
&& ! typeToSkipStrConv . Contains ( indexer . IndexParameter . Type . Name ) ,
508
508
"strconv" , "FormatInt" ) ,
509
509
new ( static x => x is CodeMethod method && method . IsOfKind ( CodeMethodKind . Serializer ) ,
You can’t perform that action at this time.
0 commit comments