index
:
go
bench-before
fix-runtime-test-GOMAXPROCS
json-isValidNumber
json-isValidNumber-before
main
makepkg
ms-fix-multipart-readform
Fork of Go programming language with my patches.
Go Authors
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
src
/
pkg
/
encoding
/
json
/
encode.go
Age
Commit message (
Expand
)
Author
2014-09-08
build: move package sources from src/pkg to src
Russ Cox
2014-08-25
encoding/json: make ,string work when encoding pointer fields
Brad Fitzpatrick
2014-08-08
encoding/json: document coercion of invalid UTF-8 characters
Andrew Gerrand
2014-02-05
encoding/json: mention escaping of '&'
Shenghou Ma
2013-12-18
encoding/json: use sync.Pool
Brad Fitzpatrick
2013-12-18
encoding/json: speed up decoding
Brad Fitzpatrick
2013-09-23
encoding/json: don't cache value addressability when building first encoder
Brad Fitzpatrick
2013-08-29
undo CL 13180043 / 318540e7857f
Andrew Gerrand
2013-08-29
encoding/json: add "overflow" struct tag option
Andrew Gerrand
2013-08-14
encoding/json: support encoding.TextMarshaler, encoding.TextUnmarshaler
Russ Cox
2013-08-09
encoding/json: escape & always
Russ Cox
2013-08-09
encoding/json: faster encoding
Brad Fitzpatrick
2013-07-12
undo CL 11161044 / ba455262a9db
Russ Cox
2013-07-12
encoding/json: coerce invalid UTF-8 to valid UTF-8 during Marshal
Russ Cox
2013-07-12
encoding/json: escape U+2028 and U+2029.
David Symonds
2013-07-11
json: unmarshal types that are byte slices.
Paul Borman
2013-05-14
encoding/json: allocate less in NewEncoder
Brad Fitzpatrick
2013-04-30
encoding/json: document that marshaling invalid utf-8 sequence will return error
Shenghou Ma
2013-04-11
encoding/json: documentation regarding anonymous fields.
Rob Pike
2013-04-10
encoding/json: different decision on tags and shadowing
Rob Pike
2013-04-09
encoding/json: fix handling of anonymous fields
Rob Pike
2013-01-07
encoding/json: documented that ,string applies only to string and numeric fie...
Caleb Spare
2013-01-02
encoding/json: don't panic marshaling anonymous non-struct field
Thomas Kappler
2012-12-22
encoding/json: A JSON tag can be any valid JSON string.
Stéphane Travostino
2012-10-30
gofmt: apply gofmt -w src misc
Robert Griesemer
2012-09-10
encoding/json: handle anonymous fields
Russ Cox
2012-06-25
encoding/json: add Number type
Jonathan Gold
2012-06-22
encoding/json: fix minor typo in documentation for Marshal
David G. Andersen
2012-05-23
encoding/json: documentation fix
Brad Fitzpatrick
2012-04-25
encoding/json: allow punctuation in tag names
Bobby Powers
2012-03-22
doc: add JSON and Go article
Francisco Souza
2012-03-05
encoding/json: document that nil slice encodes as `null`
Russ Cox
2012-03-01
encoding/json: escape output from Marshalers.
David Symonds
2012-02-28
all: remove various unused unexported functions and constants.
Rémy Oudompheng
2012-02-28
encoding/json: drop MarshalForHTML; gofix calls to Marshal.
David Symonds
2012-02-19
encoding/json: disable anonymous fields
Russ Cox
2012-02-03
encoding/json: call (*T).MarshalJSON for addressable T values.
David Symonds
2012-01-19
encoding/json: fix comments, tweak tests for tag names
Mikio Hara
2012-01-18
encoding/json: allow / and % in tag names
Brad Fitzpatrick
2012-01-18
encoding/json: document angle bracket escaping.
David Symonds
2012-01-03
encoding/json: don't marshal special float values
Evan Shaw
2011-12-15
json: use strconv.Append variants to avoid allocations in encoding
Brad Fitzpatrick
2011-12-14
json: treat renamed byte slices the same as []byte
Rob Pike
2011-12-05
use new strconv API
Russ Cox
2011-11-21
json: speed up encoding, caching reflect calls
Brad Fitzpatrick
2011-11-08
renaming_2: gofix -r go1pkgrename src/pkg/[a-l]*
Rob Pike
2011-11-03
encoding: move asn1, csv, gob, json, xml into encoding
Rob Pike