
Security News
Potemkin Understanding in LLMs: New Study Reveals Flaws in AI Benchmarks
New research reveals that LLMs often fake understanding, passing benchmarks but failing to apply concepts or stay internally consistent.
github.com/mantyr/xmlutils
This don't stable version
Ignore prefix in xml tag
Now xml:"prefix:name"
is interpreted by Unmarshal as xml:"name"
This is necessary for the same behavior of Unmarshal/Marshal with prefix tags
Add support for xml.Unmarshaler
Now there is no need to change all implementations of xml.Unmarshaler to xmlutils.Unmarshaler
Add forwarding xmlutils.Decoder to xml.Unmarshaler
Now, regardless of how Unmarshal was launched (from xml or from xmlutils), you have the opportunity to use xmlutils where necessary
Move all existing structures from the fork back to encoding/xml
Now this is implemented for most structures (such as xml.StartElement, xml.Name, xml.Attr, xml.Token and others), but I do not exclude that there is something else that can be transferred
package main
import (
"fmt"
"encoding/xml"
"github.com/mantyr/xmlutils"
)
type A struct {
B struct {
Data string `xml:"prefix:data"`
}
}
func (a *A) UnmarshalXML(d *xml.Decoder, start xml.StartElement) error {
return xmlutils.NewTokenDecoder(d, start).Decode(&a.B)
}
func main() {
data := `<a><prefix:data>test</prefix:data></a>`
a := &A{}
err := xml.Unmarshal([]byte(data), &a)
fmt.Println(err)
fmt.Println(a.B.Data)
// Output:
// <nil>
// test
}
$ go get -u github.com/mantyr/xmlutils
FAQs
Unknown package
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
New research reveals that LLMs often fake understanding, passing benchmarks but failing to apply concepts or stay internally consistent.
Security News
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.
Security News
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.