summaryrefslogtreecommitdiff
path: root/api
Commit message (Collapse)AuthorAgeFilesLines
...
* api: add go/types to next.txtRuss Cox2013-01-021-0/+103
| | | | | | R=golang-dev, dsymonds CC=golang-dev https://codereview.appspot.com/7035045
* api/next.txt: updateShenghou Ma2012-12-171-0/+318
| | | | | | R=golang-dev, rsc, bradfitz CC=golang-dev https://codereview.appspot.com/6935061
* net: change ListenUnixgram signature to return UnixConn instead of UDPConnMikio Hara2012-12-161-0/+1
| | | | | | | | | | | | | | | This CL breaks Go 1 API compatibility but it doesn't matter because previous ListenUnixgram doesn't work in any use cases, oops. The public API change is: -pkg net, func ListenUnixgram(string, *UnixAddr) (*UDPConn, error) +pkg net, func ListenUnixgram(string, *UnixAddr) (*UnixConn, error) Fixes issue 3875. R=rsc, golang-dev, dave CC=golang-dev https://codereview.appspot.com/6937059
* api: refresh next.txtRuss Cox2012-11-071-3/+236
| | | | | | R=golang-dev, iant CC=golang-dev http://codereview.appspot.com/6811092
* cmd/api: add exception fileRob Pike2012-10-042-0/+5
| | | | | | | | Fixes build. R=golang-dev, adg, bradfitz, dsymonds, dave CC=golang-dev http://codereview.appspot.com/6586074
* api: fix build; regenerate api.txt with fixed signaturesBrad Fitzpatrick2012-09-181-676/+664
| | | | | | | | | | | | Update to tip (to get 6475062 and 6525047) Rebuild cmd/api. Switch to a go1 release branch. Run go tool api > api/go1.txt.new in release branch. Back to tip. R=golang-dev, mikioh.mikioh CC=golang-dev http://codereview.appspot.com/6528047
* cmd/api: allow extension of interfaces with unexported methodsRuss Cox2012-09-181-12/+12
| | | | | | | | Fixes issue 4061. R=golang-dev, bradfitz CC=golang-dev http://codereview.appspot.com/6525047
* api: add recent API additions to next.txtBenny Siegert2012-08-151-0/+26
| | | | | | | | R=golang-dev, nigeltao, minux.ma CC=golang-dev http://codereview.appspot.com/6441138 Committer: Nigel Tao <nigeltao@golang.org>
* cmd/go, go/build, misc/swig: add SWIG support to Go toolIan Lance Taylor2012-08-031-0/+2
| | | | | | R=adg, rsc, franciscossouza, seb.binet, gen.battle CC=golang-dev http://codereview.appspot.com/5845071
* api: update next.txtBrad Fitzpatrick2012-06-301-3/+22
| | | | | | | | | | Some accumulated changes from the past few weeks. Just cleans up all.bash output. R=golang-dev, adg CC=golang-dev http://codereview.appspot.com/6354056
* syscall: revert API changes in Windows Win32finddata fix.Russ Cox2012-06-081-26/+0
| | | | | | | | | Preserve old API by using correct struct in system call and then copying the results, as we did for SetsockoptLinger. R=golang-dev, bradfitz CC=golang-dev http://codereview.appspot.com/6307065
* api: add Linux/ARM to go1 APIShenghou Ma2012-06-041-1/+2226
| | | | | | | | | | | It's very unfortunate that the type of Data field of struct RawSockaddr is [14]uint8 on Linux/ARM instead of [14]int8 on all the others. btw, it should be [14]int8 according to my header files. R=golang-dev, bradfitz CC=golang-dev http://codereview.appspot.com/6275050
* syscall: correct Win32finddata definitionAlex Brainman2012-06-031-0/+26
| | | | | | | | Fixes issue 3685. R=golang-dev, rsc CC=golang-dev http://codereview.appspot.com/6261053
* api: add net.UnixConn's CloseRead and CloseWrite methodsRuss Cox2012-06-021-0/+2
| | | | | | R=golang-dev, bradfitz CC=golang-dev http://codereview.appspot.com/6278045
* api: add FreeBSD to go1 APIBrad Fitzpatrick2012-06-011-7/+4062
| | | | | | | | | | | | | | Now that gri has made go/parser 15% faster, I offer this change to slow back down cmd/api ~proportionately, adding FreeBSD to the go1-checked set of platforms. Really we should have done this earlier. This will prevent us from breaking FreeBSD compatibility accidentally in the future. R=golang-dev, r CC=golang-dev http://codereview.appspot.com/6279044
* archive/tar: add FileInfoHeader functionBrad Fitzpatrick2012-05-241-0/+1
| | | | | | | | Fixes issue 3295 R=adg, rsc, mike.rosset CC=golang-dev http://codereview.appspot.com/5796073
* syscall: implement SetsockoptLinger for windowsAlex Brainman2012-05-231-0/+2
| | | | | | R=rsc CC=golang-dev http://codereview.appspot.com/6225048
* cmd/api: add api/next.txtBrad Fitzpatrick2012-05-222-0/+439
| | | | | | | | | | | | | | | | This quiets all.bash noise for upcoming features we know about. The all.bash warnings will now only print for things not in next.txt (or in next.txt but not in the API). Once an API is frozen, we rename next.txt to a new frozen file (like go1.txt) Fixes issue 3651 R=golang-dev, r CC=golang-dev http://codereview.appspot.com/6218069
* api: undo go1.txt additions made by 27d0a516b7ebAndrew Gerrand2012-05-171-1/+0
| | | | | | | | We don't change go1.txt. R=golang-dev, bradfitz CC=golang-dev http://codereview.appspot.com/6206080
* regexp/syntax: replace internal error on unexpected ) w/ ErrUnexpectedParenJan Mercl2012-05-141-0/+1
| | | | | | | | | | | | | Unbalanced extra right parenthesis produced an internal error instead of a more descriptive one. Fixes issue 3406. R=r, rsc CC=golang-dev http://codereview.appspot.com/6201063 Committer: Rob Pike <r@golang.org>
* path/filepath: use windows GetShortPathName api to force GetLongPathName to ↵Alex Brainman2012-03-271-0/+2
| | | | | | | | do its work R=golang-dev, rsc CC=golang-dev http://codereview.appspot.com/5928043
* api: update go1.txt after adding functions to html/templateRob Pike2012-03-201-0/+8
| | | | | | | | | Fixes build, teaches lesson. R=golang-dev, r TBR=bradfitz CC=golang-dev http://codereview.appspot.com/5853051
* build: catch API changes during buildBrad Fitzpatrick2012-03-171-0/+24524
Adds new file api/go1.txt, locking down the current API. Any changes to the API will need to update that file. run.bash (but not make.bash, or Windows) will check for accidental API changes. R=golang-dev, dsymonds, rsc CC=golang-dev http://codereview.appspot.com/5820070