Skip to content

Commit f492793

Browse files
committed
[dev.boringcrypto] all: merge master into dev.boringcrypto
Change-Id: I4e09d4f2cc77c4c2dc12f1ff40d8c36053ab7ab6
2 parents 768804d + c9b6063 commit f492793

760 files changed

Lines changed: 11707 additions & 10910 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

CONTRIBUTORS

Lines changed: 96 additions & 1 deletion
Large diffs are not rendered by default.

api/go1.18.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -165,8 +165,8 @@ pkg reflect, method (Value) FieldByIndexErr([]int) (Value, error)
165165
pkg reflect, method (Value) SetIterKey(*MapIter)
166166
pkg reflect, method (Value) SetIterValue(*MapIter)
167167
pkg reflect, method (Value) UnsafePointer() unsafe.Pointer
168-
pkg runtime/debug, method (*BuildInfo) MarshalText() ([]uint8, error)
169-
pkg runtime/debug, method (*BuildInfo) UnmarshalText([]uint8) error
168+
pkg runtime/debug, func ParseBuildInfo(string) (*BuildInfo, error)
169+
pkg runtime/debug, method (*BuildInfo) String() string
170170
pkg runtime/debug, type BuildInfo struct, GoVersion string
171171
pkg runtime/debug, type BuildInfo struct, Settings []BuildSetting
172172
pkg runtime/debug, type BuildSetting struct

api/next.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
pkg encoding/binary, type AppendByteOrder interface { AppendUint16, AppendUint32, AppendUint64, String }
2+
pkg encoding/binary, type AppendByteOrder interface, AppendUint16([]uint8, uint16) []uint8
3+
pkg encoding/binary, type AppendByteOrder interface, AppendUint32([]uint8, uint32) []uint8
4+
pkg encoding/binary, type AppendByteOrder interface, AppendUint64([]uint8, uint64) []uint8
5+
pkg encoding/binary, type AppendByteOrder interface, String() string

doc/go1.18.html

Lines changed: 0 additions & 1235 deletions
This file was deleted.

doc/go1.19.html

Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
<!--{
2+
"Title": "Go 1.19 Release Notes",
3+
"Path": "/doc/go1.19"
4+
}-->
5+
<!--
6+
NOTE: In this document and others in this directory, the convention is to
7+
set fixed-width phrases with non-fixed-width spaces, as in
8+
<code>hello</code> <code>world</code>.
9+
Do not send CLs removing the interior tags from such phrases.
10+
-->
11+
<style>
12+
main ul li { margin: 0.5em 0; }
13+
</style>
14+
<h2 id="introduction">DRAFT RELEASE NOTES — Introduction to Go 1.19</h2>
15+
<p>
16+
<strong>
17+
Go 1.19 is not yet released. These are work-in-progress
18+
release notes. Go 1.19 is expected to be released in August 2022.
19+
</strong>
20+
</p>
21+
<h2 id="language">Changes to the language</h2>
22+
<p>
23+
TODO: complete this section
24+
</p>
25+
<h2 id="ports">Ports</h2>
26+
<p>
27+
TODO: complete this section, or delete if not needed
28+
</p>
29+
<h2 id="tools">Tools</h2>
30+
<p>
31+
TODO: complete this section, or delete if not needed
32+
</p>
33+
<h3 id="go-command">Go command</h3>
34+
<p>
35+
TODO: complete this section, or delete if not needed
36+
</p>
37+
<h2 id="runtime">Runtime</h2>
38+
<p>
39+
TODO: complete this section, or delete if not needed
40+
</p>
41+
<h2 id="compiler">Compiler</h2>
42+
<p>
43+
TODO: complete this section, or delete if not needed
44+
</p>
45+
<h2 id="linker">Linker</h2>
46+
<p>
47+
TODO: complete this section, or delete if not needed
48+
</p>
49+
<h2 id="library">Core library</h2>
50+
<p>
51+
TODO: complete this section
52+
</p>
53+
<h3 id="minor_library_changes">Minor changes to the library</h3>
54+
<p>
55+
As always, there are various minor changes and updates to the library,
56+
made with the Go 1 <a href="/doc/go1compat">promise of compatibility</a>
57+
in mind.
58+
</p>
59+
<p>
60+
TODO: complete this section
61+
</p>

0 commit comments

Comments
 (0)