File tree Expand file tree Collapse file tree 2 files changed +10
-4
lines changed Expand file tree Collapse file tree 2 files changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -235,13 +235,13 @@ func guessTagFromCustomType(node *yaml.Node) string {
235
235
if strings .HasPrefix (node .Tag , "!!" ) {
236
236
return node .Tag
237
237
} else if node .Value == "" {
238
- log .Warning ( " node has no value to guess the type with" )
238
+ log .Debug ( "guessTagFromCustomType: node has no value to guess the type with" )
239
239
return node .Tag
240
240
}
241
241
dataBucket , errorReading := parseSnippet (node .Value )
242
242
243
243
if errorReading != nil {
244
- log .Warning ( " could not guess underlying tag type %v" , errorReading )
244
+ log .Debug ( "guessTagFromCustomType: could not guess underlying tag type %v" , errorReading )
245
245
return node .Tag
246
246
}
247
247
guessedTag := unwrapDoc (dataBucket ).Tag
Original file line number Diff line number Diff line change 1
1
4.30.5:
2
- - Fixed
3
- - Special thanks to Kopfbremse for finding all the bugs
2
+ - XML Decoder: Comment parsing tweak
3
+ - XML Decoder: Fixed processing comments in empty XML #1446
4
+ - XML Decoder: Checking for invalid content outside of a root node #1448
5
+ - XML Decoder: Fixed issue where content surrounding tags are lost #1447
6
+ - XML Decoder: Fixed xml decode bug when there is content after a comment
7
+ - Fixed loading yaml with header issue #1445
8
+ - guessTagFromCustomType warning log is now a debug.
9
+ - Special thanks to @Kopfbremse for reporting XML issues!
4
10
5
11
4.30.4:
6
12
- Fixed bug in automated versioning (snap/brew)
You can’t perform that action at this time.
0 commit comments