...
1module go.mongodb.org/mongo-driver
2
3go 1.18
4
5retract (
6 // GODRIVER-3059: The v1.13.0 Git tag changed, causing security errors when
7 // users downloaded the Go driver module. Also, the BSON performance
8 // improvements introduced a panic when marshaling/unmarshaling Go errors.
9 v1.13.0
10
11 v1.11.8 // Contains minor changes meant for v1.12.1.
12 v1.11.5 // Contains import failure.
13
14 // Retract v1.11.0 through v1.11.2 because they contain a data race bug in
15 // operation memory pooling that may cause undefined behavior when reading
16 // raw BSON responses in error documents. Resolved by GODRIVER-2677.
17 [v1.11.0, v1.11.2]
18
19 v1.10.0 // Contains a possible data corruption bug in RewrapManyDataKey when using libmongocrypt versions less than 1.5.2.
20 [v1.7.0, v1.7.1] // Contains data race bug in background connection establishment.
21 [v1.6.0, v1.6.1] // Contains data race bug in background connection establishment.
22)
23
24require (
25 github.com/davecgh/go-spew v1.1.1
26 github.com/golang/snappy v0.0.1
27 github.com/google/go-cmp v0.5.2
28 github.com/klauspost/compress v1.13.6
29 github.com/montanaflynn/stats v0.0.0-20171201202039-1bf9dbcd8cbe
30 github.com/xdg-go/scram v1.1.2
31 github.com/xdg-go/stringprep v1.0.4
32 github.com/youmark/pkcs8 v0.0.0-20181117223130-1be2e3e5546d
33 golang.org/x/crypto v0.17.0
34 golang.org/x/sync v0.1.0
35)
36
37require (
38 github.com/xdg-go/pbkdf2 v1.0.0 // indirect
39 golang.org/x/text v0.14.0 // indirect
40 golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543 // indirect
41)
View as plain text