aboutsummaryrefslogtreecommitdiff
path: root/src/encoding/json/decode_test.go
AgeCommit message (Expand)Author
2020-09-14Revert "encoding/json: implement Is on all errors"Damien Neil
2020-09-13encoding/json: implement Is on all errorsCarlos Alexandro Becker
2020-07-02Revert "encoding/json: don't reuse slice elements when decoding"Daniel Martí
2020-06-15encoding/json: revert "avoid work when unquoting strings, take 2"Daniel Martí
2020-05-28Revert "encoding/json: reuse values when decoding map elements"Daniel Martí
2020-05-08encoding/json: reuse values when decoding map elementsDaniel Martí
2020-05-08encoding/json: don't mangle strings in an edge case when decodingDaniel Martí
2020-05-07encoding/json: don't reuse slice elements when decodingDaniel Martí
2020-02-24encoding/json: limit max nesting depthJordan Liggitt
2019-10-10encoding/json: support TextUnmarshaler for map keys with string underlying typesCuong Manh Le
2019-09-16encoding/json: validate strings when decoding into NumberLucas Bremgartner
2019-09-10encoding/json: don't indirect pointers when decoding nullRomain Baugue
2019-09-02std: remove unused bits of code all over the placeDaniel Martí
2019-09-02encoding/json: fix scanner byte offset on scanEnditchyny
2019-08-27encoding/json: remove unnecessary isValidNumber callDaniel Martí
2019-08-27encoding/json: fix the broken "overwriting of data" testsDaniel Martí
2019-08-21Revert "encoding/json: avoid work when unquoting strings"Filippo Valsorda
2019-04-30encoding/json: fix Unmarshal hang on recursive pointersLE Manh Cuong
2019-03-18encoding/json: fix performance regression in the decoderDaniel Martí
2019-03-05encoding/json: add Path to UnmarshalTypeErrorLE Manh Cuong
2019-02-27encoding/json: remove use of DeepEqual for testing errorsMarcel van Lohuizen
2018-10-16encoding/json: always verify we can get a field's valueDaniel Martí
2018-10-16encoding/json: fix "data changed underfoot?" panicDaniel Martí
2018-09-12encoding/json: more tests to cover decoding edge casesDaniel Martí
2018-09-06encoding/json: recover saved error context when unmarshallingIan Davis
2018-08-28encoding/json: fix UnmarshalTypeError without field and struct valuesTaesu Pyo
2018-08-21encoding/json: encode struct field names ahead of timeDaniel Martí
2018-04-04go/printer, gofmt: tuned table alignment for better resultsRobert Griesemer
2018-03-01encoding/json: avoid assuming side-effect free reflect.Value.Addr().Elem()Joe Tsai
2018-02-14encoding/json: make error capture logic in recover more type safeJoe Tsai
2017-12-06encoding/json: error when trying to set an embedded pointer to unexported str...Joe Tsai
2017-11-13encoding/json: always ignore embedded pointers to unexported struct typesJoe Tsai
2017-11-08encoding/json: permit encoding uintptr as a stringIan Lance Taylor
2017-10-31encoding/json: disallow unknown fields in DecoderIvan Bertona
2017-09-27all: prefer bytes.IndexByte over bytes.IndexMarvin Stenger
2016-11-12all: spell "marshal" and "unmarshal" consistentlyDmitri Shuralyov
2016-10-17encoding/json: fix decoding of null into Unmarshaler, TextUnmarshalerRuss Cox
2016-10-13encoding/json: handle misspelled JSON literals in ,stringRuss Cox
2016-10-05encoding/json: add struct and field name to UnmarshalTypeError messageJirka Daněk
2016-10-05encoding/json: use standard ES6 formatting for numbers during marshalRuss Cox
2016-05-24encoding/json: additional tests and fixes for []typedByte encoding/decodingRuss Cox
2016-05-10encoding/json: support maps with integer keysCaleb Spare
2016-04-05encoding/json: allow non-string type keys for (un-)marshalAugusto Roman
2016-03-22encoding/json, internal/testenv: use FatalfDominik Honnef
2015-11-14encoding/json: use reflect.SetBytes when decoding bytesHåvard Haugen
2015-10-26encoding/json: check for exported fields in embedded structsMarcel van Lohuizen
2015-09-23encoding/json: spell "marshaling" and "unmarshaling" consistentlyAndrew Gerrand
2015-09-21encoding/json: scanner: use byte, more consistentMarvin Stenger
2015-07-30encoding/json: revert "fix decoding of JSON null values"Russ Cox
2015-07-22encoding/json: fix decoding of JSON null valuesDidier Spezia