/
githubmirror
/
go
ОбзорДокументацияВойти
/
githubmirror
/
go
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
ДокументацияПоддержка
Политика конфиденциальностиПользовательское соглашениеПолитика использования «cookies»Согласие субъекта персональных данных
2026 ©
go/
api/
..
next

go/parser: add func ResolveFile

21 день назад
README

api/README: refer to doc/README.md

3 года назад
except.txt

cmd/api: include baseline goexperiment.* tool tags

2 месяца назад
go1.1.txt

strconv: quote rune 007F as \x7f, not \u007f

4 года назад
go1.10.txt

text/template: revert CL 66410 "add break, continue actions in ranges"

9 лет назад
go1.11.txt

crypto/tls: make ConnectionState.ExportKeyingMaterial a method

8 лет назад
go1.12.txt

api: add os.(*File).SyscallConn to go1.12.txt

8 лет назад
go1.13.txt

api/go1.13: add debug/elf.Symbol fields added in CL 184099

7 лет назад
go1.14.txt

cmd/api: add API checks for freebsd/arm64

3 года назад
go1.15.txt

go/printer: remove exported StdFormat flag

6 лет назад
go1.16.txt

cmd/api: fix false positive and false negative in isDeprecated

3 месяца назад
go1.17.txt

cmd/api: add API checks for freebsd/arm64

3 года назад
go1.18.txt

cmd/api: add API checks for freebsd/arm64

3 года назад
go1.19.txt

cmd/api: track deprecations

4 года назад
go1.2.txt

api: add go1.2.txt, use in tests

13 лет назад
go1.20.txt

cmd/api: add API checks for freebsd/riscv64

3 года назад
go1.21.txt

go/ast: deprecate Object

3 года назад
go1.22.txt

Revert "archive/tar: add FileInfoNames interface"

3 года назад
go1.23.txt

crypto/tls: apply QUIC session event flag to QUICResumeSession events

2 года назад
go1.24.txt

debug/elf: adjust version API per issue discussion

2 года назад
go1.25.txt

testing: add Output method to TB

год назад
go1.26.txt

Revert "database/sql: allow drivers to override Scan behavior"

8 месяцев назад
go1.27.txt

net/http: add Server.MaxHeaderValueCount setting

месяц назад
go1.3.txt

api: add go1.3.txt

12 лет назад
go1.4.txt

[release-branch.go1.4] api: create go1.4.txt

12 лет назад
go1.5.txt

api: update go1.5.txt

11 лет назад
go1.6.txt

go/types: rename Importer2 to ImporterFrom

11 лет назад
go1.7.txt

unicode: upgrade to version 9.0.0

10 лет назад
go1.8.txt

Revert "cmd/go: note when some Go files were ignored on no-Go-files errors"

10 лет назад
go1.9.txt

cmd/api: set architecture sizes when type checking

5 лет назад
go1.txt

encoding/xml: add, support Marshaler interface

13 лет назад
README
Files in this directory are data for Go's API checker ("go tool api", in src/cmd/api).
 
Each file is a list of API features, one per line.
 
go1.txt (and similarly named files) are frozen once a version has been
shipped. Each file adds new lines but does not remove any.
 
except.txt lists features that may disappear without breaking true
compatibility.
 
Starting with go1.19.txt, each API feature line must end in "#nnnnn"
giving the GitHub issue number of the proposal issue that accepted
the new API. This helps with our end-of-cycle audit of new APIs.
The same requirement applies to next/* (described below), which will
become a go1.XX.txt for XX >= 19.
 
The next/ directory contains the only files intended to be mutated.
Each file in that directory contains a list of features that may be added
to the next release of Go. The files in this directory only affect the
warning output from the go api tool. Each file should be named
nnnnn.txt, after the issue number for the accepted proposal.
(The #nnnnn suffix must also appear at the end of each line in the file;
that will be preserved when next/*.txt is concatenated into go1.XX.txt.)
 
When you add a file to the api/next directory, you must add at least one file
under doc/next. See doc/README.md for details.