Skip to content

Tags: valyala/fastjson

Tags

Verified

This tag was signed with the committer’s verified signature.
valyala Aliaksandr Valialkin

v1.6.3

Toggle v1.6.3's commit message
fastfloat: parse "infinity" in fastfloat.Parse() function

v1.6.2

Toggle v1.6.2's commit message
fastfloat: support parsing "infinity" strings

This is needed for OpenMetrics - see https://github.com/OpenObservability/OpenMetrics/blob/master/OpenMetrics.md#abnf

v1.6.1

Toggle v1.6.1's commit message
report more errors when parsing numbers

Previously numbers' parsing could miss parse errors. Properly handle such cases now.

Updates VictoriaMetrics/vmctl#25

v1.6.0

Toggle v1.6.0's commit message
fastfloat: add Parse(), ParseUint64() and ParseInt64() functions, whi…

…ch return parse errors

v1.5.5

Toggle v1.5.5's commit message
fastfloat: properly parse `+Inf` values by ParseBestEffort()

Updates VictoriaMetrics/vmctl#25

v1.5.4

Toggle v1.5.4's commit message
Perform conversion from string to []byte according to rule #6 at http…

…s://golang.org/pkg/unsafe/#Pointer

v1.5.3

Toggle v1.5.3's commit message
Remove accidentally added TestParseFuzz

v1.5.2

Toggle v1.5.2's commit message
Remove accidentally added code at parser_timeing_test.go

v1.5.1

Toggle v1.5.1's commit message
fastfloat: properly parse floating-point number with '.e' inside like…

… '1.e4'

Updates #55