Skip to content
This repository has been archived by the owner on Sep 2, 2022. It is now read-only.

raft: add consensus capability across nodes #8

Draft
wants to merge 887 commits into
base: master
Choose a base branch
from
Draft
Changes from 1 commit
Commits
Show all changes
887 commits
Select commit Hold shift + click to select a range
51c70d3
fixes #162
SUMUKHA-PK May 27, 2020
d90b5e0
Add mock example
tsatke May 27, 2020
1d63d0d
Update internal/parser/simple_parser_rules.go
SUMUKHA-PK May 27, 2020
bafdb1b
Update internal/parser/error_reporter.go
SUMUKHA-PK May 27, 2020
65327f3
Merge pull request #163 from tomarrell/SumukhaPK-parser-bugs
tsatke May 27, 2020
1e01aae
some testing code
SUMUKHA-PK May 28, 2020
5a97108
Merge branch 'master' of https://github.com/tomarrell/lbadd into raft
SUMUKHA-PK May 28, 2020
e1ed1b9
fixes #164,#165,#166
SUMUKHA-PK May 28, 2020
007bb2a
Merge pull request #167 from tomarrell/SumukhaPK-parser-patch
tsatke May 28, 2020
8325f93
Merge branch 'master' of https://github.com/tomarrell/lbadd into raft
SUMUKHA-PK May 28, 2020
0bc66af
Add support for DELETE statements
tsatke May 28, 2020
e49c183
basic raft testing framework setup
SUMUKHA-PK May 28, 2020
cba4a77
basic raft testing framework setup
SUMUKHA-PK May 28, 2020
136614d
basic raft testing framework setup
SUMUKHA-PK May 28, 2020
8e88fee
Merge pull request #168 from tomarrell/137-support-delete-statement
tsatke May 28, 2020
b9885e2
Add support for DROP statements
tsatke May 28, 2020
da59c00
Merge pull request #169 from tomarrell/139-drop-statement
SUMUKHA-PK May 28, 2020
68a886e
Add structures for update
tsatke May 28, 2020
7e60042
adds a viable raft test
SUMUKHA-PK May 29, 2020
2761a37
Add support for UPDATE statement
tsatke May 29, 2020
f175d2b
Merge pull request #170 from tomarrell/138-update
SUMUKHA-PK May 29, 2020
a9362e5
Improve structure for golden testing
tsatke May 29, 2020
e13bec7
Add golden tests for drop
tsatke May 29, 2020
9d92d79
Add more golden tests for select
tsatke May 29, 2020
a756998
Add drop tests
tsatke May 29, 2020
362d4cf
Add VALUES golden test
tsatke May 29, 2020
6aca36b
Add golden tests for UPDATE
tsatke May 29, 2020
2cae7d0
Merge pull request #171 from tomarrell/136-insert
tsatke Jun 2, 2020
7ca3fb1
Add support for INSERT
tsatke Jun 2, 2020
ec47fea
Update internal/compiler/command/command.go
SUMUKHA-PK Jun 3, 2020
7128578
Merge branch 'master' into 136-insert
SUMUKHA-PK Jun 3, 2020
8c79eb0
Merge pull request #172 from tomarrell/136-insert
SUMUKHA-PK Jun 3, 2020
959f1c6
Merge branch 'master' of https://github.com/tomarrell/lbadd into raft
SUMUKHA-PK Jun 5, 2020
7ec53fa
Remove executor
tsatke Jun 5, 2020
6bc9244
Introduce engine
tsatke Jun 5, 2020
358fa9f
Improve godoc
tsatke Jun 5, 2020
5cde671
Fix typo
tsatke Jun 5, 2020
07c9ebc
Add a few decoding function to the converter
tsatke Jun 6, 2020
a06d5a9
Add a page abstraction
tsatke Jun 6, 2020
893a23c
Add a slotted page implementation
tsatke Jun 6, 2020
0151cfd
Add delete and get method to page
tsatke Jun 6, 2020
9d5644d
Create blackbox tests
tsatke Jun 6, 2020
dffe4b6
Add test and support for deletion of cells
tsatke Jun 6, 2020
bb06a43
Add missing godoc
tsatke Jun 6, 2020
089e19e
Make cell count internal and add a dirty flag
tsatke Jun 7, 2020
7ae4eed
Add a page mock
tsatke Jun 7, 2020
7c68a2e
Merge branch 'master' into raft
SUMUKHA-PK Jun 7, 2020
457d4f3
Implement a simple LRU page cache
tsatke Jun 9, 2020
38d9f47
a basic complete cluster mock raft test
SUMUKHA-PK Jun 12, 2020
9d7b000
Merge branch 'raft' of https://github.com/tomarrell/lbadd into raft
SUMUKHA-PK Jun 12, 2020
bf4312c
this commit adds a working raft test to base future tests off of
SUMUKHA-PK Jun 12, 2020
972f849
raft tests in progress
SUMUKHA-PK Jun 13, 2020
81005b3
raft tests in progress
SUMUKHA-PK Jun 13, 2020
55ecf62
progress in adding complete testing of raft
SUMUKHA-PK Jun 13, 2020
aac650f
triage on tests and lower layers
SUMUKHA-PK Jun 14, 2020
5b0d140
triage on tests and lower layers
SUMUKHA-PK Jun 14, 2020
3dbee4e
Remove current page implementation
tsatke Jun 16, 2020
1cee316
Add v1 page implementation without store functionality
tsatke Jun 16, 2020
3457be5
a well rounded base for raft test is created
SUMUKHA-PK Jun 17, 2020
ca08f13
Remove converter as it's obsolete
tsatke Jun 18, 2020
ff1faf0
Add storage functionality
tsatke Jun 18, 2020
80895af
Rename offset to slot
tsatke Jun 19, 2020
b9c1e99
Make store functionality work (with tests)
tsatke Jun 19, 2020
5f5952f
Add a page loader
tsatke Jun 19, 2020
e9d5bf1
this commit adds a new method to relay data from a follower to the le…
SUMUKHA-PK Jun 21, 2020
cc9ca03
this commit adds a new method to relay data from a follower to the le…
SUMUKHA-PK Jun 21, 2020
d388f37
this commit adds a new method to relay data from a follower to the le…
SUMUKHA-PK Jun 21, 2020
9a932cc
this commit cleans up some comments
SUMUKHA-PK Jun 21, 2020
df33de3
this commit ensures that the server closes in the test
SUMUKHA-PK Jun 21, 2020
b53750a
Implement and specify part of the file format
tsatke Jun 22, 2020
0123d40
Add documentation
tsatke Jun 22, 2020
6d1959a
Implement page defragmentation
tsatke Jun 23, 2020
91356c0
Test cell deletion
tsatke Jun 23, 2020
c18ffa5
Only flush if page is dirty
tsatke Jun 23, 2020
154327f
Add more validating functions
tsatke Jun 23, 2020
2a26df8
Add type system for runtime
tsatke Jun 23, 2020
cb798c1
Add pageCache to engine
tsatke Jun 23, 2020
12a388b
Add cache tests
tsatke Jun 23, 2020
16e034a
Define result
tsatke Jun 23, 2020
de16058
moved LogData's variable from string to a compiled code; has some TOD…
SUMUKHA-PK Jun 24, 2020
8792b6c
moved LogData's variable from string to a compiled code; has some TOD…
SUMUKHA-PK Jun 24, 2020
d92ef6e
Add a simple profiler for the engine
tsatke Jun 24, 2020
e9e0afc
Trigger CI
SUMUKHA-PK Jun 24, 2020
c286fe2
Trigger CI
SUMUKHA-PK Jun 24, 2020
fe28198
Implement a type system
tsatke Jun 24, 2020
ca0ab8c
Add basic profiling options
tsatke Jun 24, 2020
5f99184
Add builtin functions and use profiling
tsatke Jun 24, 2020
09f8a9e
Add testing framework for parser->engine e2e tests
tsatke Jun 24, 2020
350d323
Add a date type
tsatke Jun 25, 2020
0e86523
Fix usage and evaluation of function values
tsatke Jun 25, 2020
13cbc34
Refactor the type system
tsatke Jun 25, 2020
ffff33a
Add godoc
tsatke Jun 25, 2020
61c789f
Improve godoc
tsatke Jun 25, 2020
db8d556
Add doc on page layout
tsatke Jun 26, 2020
7b9cfb4
Add info about cells
tsatke Jun 26, 2020
8b66d7f
Test
tsatke Jun 26, 2020
c2eff01
Test
tsatke Jun 26, 2020
a7d49e2
Test
tsatke Jun 26, 2020
c2b8337
Test
tsatke Jun 26, 2020
30124c3
Clean up type system
tsatke Jun 29, 2020
6328d57
Move string tests to value tests
tsatke Jun 29, 2020
daad9b5
Add godoc
tsatke Jun 29, 2020
e025b90
this commits adds implementation of converting message to command typ…
SUMUKHA-PK Jun 30, 2020
79cd3ae
this commits adds implementation of converting message to command typ…
SUMUKHA-PK Jun 30, 2020
22600e1
this commits adds implementation of converting message to command typ…
SUMUKHA-PK Jun 30, 2020
cb1db20
this commits adds implementation of converting message to command typ…
SUMUKHA-PK Jun 30, 2020
bd883a8
Improve on the type system and run go generate
tsatke Jul 1, 2020
0c33953
Add literal parser and support for numeric literal
tsatke Jul 1, 2020
161fb04
Create tests to reflect requirements of #188
tsatke Jul 1, 2020
efb21d6
Fix #188
tsatke Jul 1, 2020
04a6c6e
this commit implements and tests converting message from command
SUMUKHA-PK Jul 2, 2020
ecf1e05
Add more godoc and another test for builtin max
tsatke Jul 2, 2020
78382e7
Introduce a string representation for profiles
tsatke Jul 2, 2020
8c3ea22
Create an example test case with profiling
tsatke Jul 2, 2020
11fa3ac
Add documentation on profile package
tsatke Jul 2, 2020
4f27111
Implement random function
tsatke Jul 2, 2020
c86da7f
Add example tests with engine options
tsatke Jul 2, 2020
44a90fb
this commit completes implementation and testing of conversion of com…
SUMUKHA-PK Jul 2, 2020
464719f
this commit completes implementation and testing of conversion of com…
SUMUKHA-PK Jul 2, 2020
a91559b
moved the old stop-gap arrangement of replication to the new conversi…
SUMUKHA-PK Jul 2, 2020
fe86835
this commit implements corrections suggested
SUMUKHA-PK Jul 3, 2020
e145c85
a basic idea for #174
SUMUKHA-PK Jul 5, 2020
7a8e61b
this commit adds a basic test framework for integration of raft modul…
SUMUKHA-PK Jul 8, 2020
b884065
fixed staticcheck errors
SUMUKHA-PK Jul 8, 2020
43f75ba
fixed errors
SUMUKHA-PK Jul 8, 2020
a026b24
Introduce a config page
tsatke Jul 8, 2020
86d68b5
Introduce NULLs into Comparator implementations
tsatke Jul 8, 2020
0c85613
Make tests also compare a Go string
tsatke Jul 9, 2020
0e9a36e
Remove obsolete length check of parser errors
tsatke Jul 9, 2020
c7a0170
Merge package ID from branch raft
tsatke Jul 10, 2020
e718cf2
fixes #190
SUMUKHA-PK Jul 10, 2020
e498ad9
minor changes to fix #190
SUMUKHA-PK Jul 10, 2020
f05cb3a
fixes #191
SUMUKHA-PK Jul 10, 2020
02e960a
Merge pull request #192 from tomarrell/parser-patch
tsatke Jul 10, 2020
03257a2
Merge branch 'master' into engine
tsatke Jul 10, 2020
b465c52
Fix slack link
tomarrell Jul 10, 2020
164f492
Implement projection
tsatke Jul 10, 2020
e14c42b
Add godoc
tsatke Jul 10, 2020
eb29cdc
Update internal/engine/error.go
tsatke Jul 10, 2020
4f64a98
Remove todos
tsatke Jul 10, 2020
05d1103
Merge branch 'engine' of github.com:tomarrell/lbadd into engine
tsatke Jul 10, 2020
cc49763
Remove database package
tsatke Jul 10, 2020
f023d21
Update internal/engine/expression.go
tsatke Jul 10, 2020
1427b99
Update internal/engine/numeric_parser.go
tsatke Jul 10, 2020
6be3efb
Update internal/engine/expression.go
tsatke Jul 10, 2020
a35032e
Merge branch 'master' into engine
tsatke Jul 10, 2020
1cb364b
Fix test failure
tsatke Jul 10, 2020
b8a67fe
Bump github.com/google/go-cmp from 0.4.0 to 0.5.0
dependabot-preview[bot] Jul 10, 2020
2b62e6d
Create dependabot.yml
tsatke Jul 10, 2020
c8052f1
Bump golang.org/x/text from 0.3.2 to 0.3.3
dependabot-preview[bot] Jul 10, 2020
f26a3c4
Bump github.com/spf13/afero from 1.2.2 to 1.3.1
dependabot-preview[bot] Jul 10, 2020
6837ea8
Bump github.com/rs/zerolog from 1.18.0 to 1.19.0
dependabot-preview[bot] Jul 10, 2020
5bbcb3a
Bump github.com/stretchr/testify from 1.5.1 to 1.6.1
dependabot-preview[bot] Jul 10, 2020
24f0599
Merge pull request #195 from tomarrell/TimSatke-patch-1
tsatke Jul 10, 2020
6acf3c9
Merge branch 'master' into dependabot/go_modules/github.com/google/go…
tsatke Jul 10, 2020
36a03c2
Merge pull request #194 from tomarrell/dependabot/go_modules/github.c…
tsatke Jul 10, 2020
558ecb8
Merge branch 'master' into dependabot/go_modules/golang.org/x/text-0.3.3
tsatke Jul 10, 2020
e101773
Merge pull request #196 from tomarrell/dependabot/go_modules/golang.o…
tsatke Jul 10, 2020
9498eff
Merge branch 'master' into dependabot/go_modules/github.com/spf13/afe…
tsatke Jul 10, 2020
69c7656
Merge pull request #197 from tomarrell/dependabot/go_modules/github.c…
tsatke Jul 10, 2020
bbe1cd6
Merge branch 'master' into dependabot/go_modules/github.com/rs/zerolo…
tsatke Jul 10, 2020
bba6865
Merge pull request #198 from tomarrell/dependabot/go_modules/github.c…
tsatke Jul 10, 2020
e463785
Merge branch 'master' into dependabot/go_modules/github.com/stretchr/…
tsatke Jul 10, 2020
14ef8d1
Merge pull request #199 from tomarrell/dependabot/go_modules/github.c…
tsatke Jul 10, 2020
a16a3bf
Merge branch 'master' into engine
tsatke Jul 10, 2020
7c2c4b2
Embed a pointer
tsatke Jul 10, 2020
15a41cf
go mod tidy
tsatke Jul 10, 2020
189fec9
Merge branch 'raft' of https://github.com/tomarrell/lbadd into raft
SUMUKHA-PK Jul 10, 2020
8a51bd4
Update internal/engine/storage/db_test.go
tsatke Jul 10, 2020
ddeda0a
this commit adds a self sufficient skeleton for a raft test framework
SUMUKHA-PK Jul 11, 2020
67aabc0
fixed staticcheck errors
SUMUKHA-PK Jul 11, 2020
0bed533
fixed staticcheck errors
SUMUKHA-PK Jul 11, 2020
e8c3b86
Merge pull request #179 from tomarrell/engine
tsatke Jul 12, 2020
ba0982f
this commit refreshes the idea of the framework and adds error checki…
SUMUKHA-PK Jul 13, 2020
bc74c82
merge master
SUMUKHA-PK Jul 13, 2020
e6abf6a
this commit adds engine execution to the node package, tidies go mod …
SUMUKHA-PK Jul 13, 2020
42e3f30
fix staticcheck errors
SUMUKHA-PK Jul 13, 2020
3d88649
Bump github.com/spf13/afero from 1.3.1 to 1.3.2
dependabot[bot] Jul 14, 2020
b3260ab
go mod tidy
tsatke Jul 14, 2020
33e45a6
Merge pull request #204 from tomarrell/dependabot/go_modules/github.c…
tsatke Jul 14, 2020
d40d8cc
Fix PRs #203 and #205
tsatke Jul 14, 2020
f32d1a0
Merge pull request #206 from tomarrell/TimSatke-patch-3
tsatke Jul 14, 2020
b07117f
Implement arithmetic expressions
tsatke Jul 20, 2020
79131f0
Implement arithmetic operations for Real type
tsatke Jul 20, 2020
673ed1c
suppress warning until used
tsatke Jul 20, 2020
e50e2b2
Implement Add for StringType
tsatke Jul 20, 2020
56bd86a
Fix typo
tsatke Jul 20, 2020
3a7a323
Merge pull request #207 from tomarrell/expressions
tsatke Jul 20, 2020
f001d72
Make update flag consistent with other fixture tests
tsatke Jul 20, 2020
d6e4eac
Merge pull request #208 from tomarrell/TimSatke-patch-1
tsatke Jul 20, 2020
80a150d
this commit adds a network test framework and implements starting up …
SUMUKHA-PK Jul 20, 2020
127e675
merge master
SUMUKHA-PK Jul 20, 2020
814b25e
Add full roundtrip fuzzing
tsatke Jul 20, 2020
99caded
Move and extend corpus
tsatke Jul 20, 2020
8cb95fa
Add corpus test
tsatke Jul 20, 2020
cf0afd9
Merge pull request #209 from tomarrell/fuzzing
tsatke Jul 20, 2020
3a85472
go mod tidy
tsatke Jul 20, 2020
b153a32
Merge pull request #213 from tomarrell/TimSatke-patch-1
SUMUKHA-PK Jul 20, 2020
f74284f
fixes #212
SUMUKHA-PK Jul 21, 2020
bae3487
Bump github.com/google/go-cmp from 0.5.0 to 0.5.1
dependabot[bot] Jul 22, 2020
3482786
Update go.sum
tsatke Jul 27, 2020
5f20625
Merge pull request #214 from tomarrell/dependabot/go_modules/github.c…
tsatke Jul 27, 2020
3e5d5e2
this commit fixes some bugs in the scanner
SUMUKHA-PK Jul 28, 2020
ff0331e
Implement basic selection
tsatke Jul 30, 2020
0cc002f
Merge pull request #215 from tomarrell/201
SUMUKHA-PK Jul 31, 2020
0e6b6c4
this commit mends some issues in the scanner and parser
SUMUKHA-PK Jul 31, 2020
778f129
merge master
SUMUKHA-PK Jul 31, 2020
afa81d5
fixes #210, #211, amends some errors in the parser and scanner, adds …
SUMUKHA-PK Jul 31, 2020
f5b4a4c
fixed corpus tests
SUMUKHA-PK Jul 31, 2020
634b1fc
Fix indentation
tsatke Jul 31, 2020
cad2486
fixed suggested changes
SUMUKHA-PK Jul 31, 2020
b4633e4
Merge branch 'parser-patch' of https://github.com/tomarrell/lbadd int…
SUMUKHA-PK Jul 31, 2020
aecfc43
removed go mod tmp
SUMUKHA-PK Jul 31, 2020
c94b8bf
Merge pull request #216 from tomarrell/parser-patch
tsatke Jul 31, 2020
1c640a1
merge master
SUMUKHA-PK Jul 31, 2020
91d71aa
this commit mends some issues in conversion of command to message
SUMUKHA-PK Jul 31, 2020
57c03a1
this commit mends some parts of message to command and vice-versa con…
SUMUKHA-PK Aug 1, 2020
81e240a
moved raft from ancestor origin
SUMUKHA-PK Aug 8, 2020
5117cf4
merge master
SUMUKHA-PK Aug 8, 2020
3904589
merge master, added to CODEOWNERS, removed stale data
SUMUKHA-PK Aug 8, 2020
77f4a01
removed stale data
SUMUKHA-PK Aug 8, 2020
980975f
Cluster test suggestion
tsatke Aug 14, 2020
36ef1d4
Work around Join
tsatke Aug 14, 2020
464a448
Add connecting connections to cluster
tsatke Aug 14, 2020
4579ecb
this commit has the first functioning test of raft that confirms that…
SUMUKHA-PK Sep 10, 2020
ed0d0b8
merge master
SUMUKHA-PK Sep 10, 2020
ca9005f
this commit adds comprehensive testing methods and some tests for the…
SUMUKHA-PK Sep 22, 2020
f46bf7f
this commit tries implementing support for crash recovery in raft
SUMUKHA-PK Oct 23, 2020
49faa22
this commit makes the concensus module robust to node failures and so…
SUMUKHA-PK Oct 26, 2020
dee3f53
this commit adds comments in the raft module
SUMUKHA-PK Oct 28, 2020
7c614cb
this commit has a heirarchical ctx passed to leader operations and a …
SUMUKHA-PK Oct 30, 2020
5126aa0
merge master
SUMUKHA-PK Oct 30, 2020
afbde1e
apparent fix in cluster, raft is breaking
SUMUKHA-PK Feb 9, 2021
6d527f4
this commit fixes the cluster communication problem and then adds som…
SUMUKHA-PK Mar 8, 2021
9606ac6
merge master
SUMUKHA-PK Mar 9, 2021
f84932e
this commit adds more raft tests and removes an old test in scanner
SUMUKHA-PK Mar 9, 2021
494723d
this commit rethinks the restarting of a node, passes CI
SUMUKHA-PK Mar 9, 2021
d71c13e
merge master
SUMUKHA-PK Mar 13, 2021
ab12319
merge master
SUMUKHA-PK Mar 13, 2021
ee02fd6
this commit removes a merge conflict in the overview document
SUMUKHA-PK Mar 13, 2021
2eec177
this commit finally removes the deadlock mutex, adds some implementat…
SUMUKHA-PK Mar 15, 2021
fc1ecf0
this commit fixes one of the raft test
SUMUKHA-PK Mar 16, 2021
0b0b70b
this commit adds some changes for append entries, closer to a complet…
SUMUKHA-PK Apr 15, 2021
941b22e
this commit adds multiple tests for append entries, validating the ap…
SUMUKHA-PK Apr 25, 2021
591a443
this commit fixes a race condition
SUMUKHA-PK Apr 25, 2021
10cc2a1
Merge branch 'master' of https://github.com/xqueries/xdb into raft
SUMUKHA-PK Apr 25, 2021
ceeaeee
merge master
SUMUKHA-PK Apr 25, 2021
4efb51b
this commit tidies up go.mod
SUMUKHA-PK Jul 29, 2021
a10bb7d
this commit tidies up go.mod
SUMUKHA-PK Jul 29, 2021
2f98fef
this commit creates a skeleton structure for future tests and impleme…
SUMUKHA-PK Jul 31, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
this commit tidies up go.mod
  • Loading branch information
SUMUKHA-PK committed Jul 29, 2021
commit 4efb51b3fa70ef7f109ef41ba730615f2c08fc90
5 changes: 5 additions & 0 deletions go.mod
Original file line number Diff line number Diff line change
@@ -6,6 +6,7 @@ require (
github.com/golang/protobuf v1.5.2
github.com/google/go-cmp v0.5.5
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect
github.com/google/go-cmp v0.5.6
github.com/oklog/ulid v1.3.1
github.com/rs/zerolog v1.21.0
github.com/spf13/afero v1.6.0
@@ -19,5 +20,9 @@ require (
golang.org/x/tools v0.1.0
google.golang.org/protobuf v1.26.0
gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f // indirect
golang.org/x/net v0.0.0-20210405180319-a5a99cb37ef4
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c
golang.org/x/text v0.3.6
golang.org/x/tools v0.1.3
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c
)
5 changes: 5 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
@@ -238,6 +238,8 @@ golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLL
golang.org/x/net v0.0.0-20201021035429-f5854403a974/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU=
golang.org/x/net v0.0.0-20210226172049-e18ecbb05110 h1:qWPm9rbaAMKs8Bq/9LRpbMqxWRVUAQwMI9fVrssnTfw=
golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg=
golang.org/x/net v0.0.0-20210405180319-a5a99cb37ef4 h1:4nGaVu0QrbjT/AK2PRLuQfQuh6DJve+pELhqTdAj3x0=
golang.org/x/net v0.0.0-20210405180319-a5a99cb37ef4/go.mod h1:p54w0d4576C0XHj96bSt6lcn1PtDYWL6XObtHCRCNQM=
golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U=
golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw=
golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw=
@@ -267,6 +269,9 @@ golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7w
golang.org/x/sys v0.0.0-20210119212857-b64e53b001e4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
golang.org/x/sys v0.0.0-20210415045647-66c3f260301c h1:6L+uOeS3OQt/f4eFHXZcTxeZrGCuz+CLElgEBjbcTA4=
golang.org/x/sys v0.0.0-20210415045647-66c3f260301c/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
golang.org/x/sys v0.0.0-20210330210617-4fbd30eecc44/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
golang.org/x/sys v0.0.0-20210510120138-977fb7262007 h1:gG67DSER+11cZvqIMb8S8bt0vZtiN6xWYARwirrOSfE=
golang.org/x/sys v0.0.0-20210510120138-977fb7262007/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo=
golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
golang.org/x/text v0.3.1-0.20180807135948-17ff2d5776d2/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
You are viewing a condensed version of this merge commit. You can view the full changes here.