Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
github.com/MeeApps/xml
Package github.com/m29h/xml
implements a XML 1.0 marshaler that is a drop in encoding/xml
replacement maintaining full interface compatibility to it but aims to producing C14N Exclusive XML Canonicalization compatible byte sequences. This includes sorting of all rendered element attributes as per the C14N-XML spec.
A Struct defined in the normal way as known from encoding/xml
type Person struct {
XMLName xml.Name `xml:"http://example.com/ns1 person"`
Name string `xml:"name"`
Phone string `xml:"http://example.com/ns2 phone,omitempty"`
}
is marshaled to
<ns1:person xmlns:ns1="http://example.com/ns1">
<ns1:name>Foo</ns1:name>
<ns2:phone xmlns:ns2="http://example.com/ns2">123</ns2:phone>
</ns1:person>
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
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.