aboutsummaryrefslogtreecommitdiff
path: root/src/pkg/encoding/json/encode.go
AgeCommit message (Expand)Author
2014-09-08build: move package sources from src/pkg to srcRuss Cox
2014-08-25encoding/json: make ,string work when encoding pointer fieldsBrad Fitzpatrick
2014-08-08encoding/json: document coercion of invalid UTF-8 charactersAndrew Gerrand
2014-02-05encoding/json: mention escaping of '&'Shenghou Ma
2013-12-18encoding/json: use sync.PoolBrad Fitzpatrick
2013-12-18encoding/json: speed up decodingBrad Fitzpatrick
2013-09-23encoding/json: don't cache value addressability when building first encoderBrad Fitzpatrick
2013-08-29undo CL 13180043 / 318540e7857fAndrew Gerrand
2013-08-29encoding/json: add "overflow" struct tag optionAndrew Gerrand
2013-08-14encoding/json: support encoding.TextMarshaler, encoding.TextUnmarshalerRuss Cox
2013-08-09encoding/json: escape & alwaysRuss Cox
2013-08-09encoding/json: faster encodingBrad Fitzpatrick
2013-07-12undo CL 11161044 / ba455262a9dbRuss Cox
2013-07-12encoding/json: coerce invalid UTF-8 to valid UTF-8 during MarshalRuss Cox
2013-07-12encoding/json: escape U+2028 and U+2029.David Symonds
2013-07-11json: unmarshal types that are byte slices.Paul Borman
2013-05-14encoding/json: allocate less in NewEncoderBrad Fitzpatrick
2013-04-30encoding/json: document that marshaling invalid utf-8 sequence will return errorShenghou Ma
2013-04-11encoding/json: documentation regarding anonymous fields.Rob Pike
2013-04-10encoding/json: different decision on tags and shadowingRob Pike
2013-04-09encoding/json: fix handling of anonymous fieldsRob Pike
2013-01-07encoding/json: documented that ,string applies only to string and numeric fie...Caleb Spare
2013-01-02encoding/json: don't panic marshaling anonymous non-struct fieldThomas Kappler
2012-12-22encoding/json: A JSON tag can be any valid JSON string.Stéphane Travostino
2012-10-30gofmt: apply gofmt -w src miscRobert Griesemer
2012-09-10encoding/json: handle anonymous fieldsRuss Cox
2012-06-25encoding/json: add Number typeJonathan Gold
2012-06-22encoding/json: fix minor typo in documentation for MarshalDavid G. Andersen
2012-05-23encoding/json: documentation fixBrad Fitzpatrick
2012-04-25encoding/json: allow punctuation in tag namesBobby Powers
2012-03-22doc: add JSON and Go articleFrancisco Souza
2012-03-05encoding/json: document that nil slice encodes as `null`Russ Cox
2012-03-01encoding/json: escape output from Marshalers.David Symonds
2012-02-28all: remove various unused unexported functions and constants.Rémy Oudompheng
2012-02-28encoding/json: drop MarshalForHTML; gofix calls to Marshal.David Symonds
2012-02-19encoding/json: disable anonymous fieldsRuss Cox
2012-02-03encoding/json: call (*T).MarshalJSON for addressable T values.David Symonds
2012-01-19encoding/json: fix comments, tweak tests for tag namesMikio Hara
2012-01-18encoding/json: allow / and % in tag namesBrad Fitzpatrick
2012-01-18encoding/json: document angle bracket escaping.David Symonds
2012-01-03encoding/json: don't marshal special float valuesEvan Shaw
2011-12-15json: use strconv.Append variants to avoid allocations in encodingBrad Fitzpatrick
2011-12-14json: treat renamed byte slices the same as []byteRob Pike
2011-12-05use new strconv APIRuss Cox
2011-11-21json: speed up encoding, caching reflect callsBrad Fitzpatrick
2011-11-08renaming_2: gofix -r go1pkgrename src/pkg/[a-l]*Rob Pike
2011-11-03encoding: move asn1, csv, gob, json, xml into encodingRob Pike