Skip to content

Commit f9a8ba9

Browse files
committed
Preparing release
1 parent 1617e5d commit f9a8ba9

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

pkg/yqlib/lib.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -235,13 +235,13 @@ func guessTagFromCustomType(node *yaml.Node) string {
235235
if strings.HasPrefix(node.Tag, "!!") {
236236
return node.Tag
237237
} 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")
239239
return node.Tag
240240
}
241241
dataBucket, errorReading := parseSnippet(node.Value)
242242

243243
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)
245245
return node.Tag
246246
}
247247
guessedTag := unwrapDoc(dataBucket).Tag

release_notes.txt

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
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!
410

511
4.30.4:
612
- Fixed bug in automated versioning (snap/brew)

0 commit comments

Comments
 (0)