File tree Expand file tree Collapse file tree 5 files changed +15
-9
lines changed Expand file tree Collapse file tree 5 files changed +15
-9
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file.
4
4
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
5
5
and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
6
6
7
+ ## [ 2.6.1] 2023-03-22
8
+
9
+ ### Security fix
10
+
11
+ - Update ` github.com/ProtonMail/go-crypto ` and ` github.com/ProtonMail/go-mime ` to fix
12
+ panic on invalid inputs.
13
+
7
14
## [ 2.6.0] 2023-03-15
8
15
9
16
### Added
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ package constants
3
3
4
4
// Constants for armored data.
5
5
const (
6
- ArmorHeaderVersion = "GopenPGP 2.6.0 "
6
+ ArmorHeaderVersion = "GopenPGP 2.6.1 "
7
7
ArmorHeaderComment = "https://gopenpgp.org"
8
8
PGPMessageHeader = "PGP MESSAGE"
9
9
PGPSignatureHeader = "PGP SIGNATURE"
Original file line number Diff line number Diff line change 1
1
package constants
2
2
3
- const Version = "2.6.0 "
3
+ const Version = "2.6.1 "
Original file line number Diff line number Diff line change @@ -3,8 +3,8 @@ module github.com/ProtonMail/gopenpgp/v2
3
3
go 1.15
4
4
5
5
require (
6
- github.com/ProtonMail/go-crypto v0.0.0-20230217124315-7d5c6f04bbb8
7
- github.com/ProtonMail/go-mime v0.0.0-20221031134845-8fd9bc37cf08
6
+ github.com/ProtonMail/go-crypto v0.0.0-20230321155629-9a39f2531310
7
+ github.com/ProtonMail/go-mime v0.0.0-20230322103455-7d82a3887f2f
8
8
github.com/davecgh/go-spew v1.1.1 // indirect
9
9
github.com/pkg/errors v0.9.1
10
10
github.com/stretchr/testify v1.7.0
Original file line number Diff line number Diff line change 1
- github.com/ProtonMail/go-crypto v0.0.0-20230217124315-7d5c6f04bbb8 h1:wPbRQzjjwFc0ih8puEVAOFGELsn1zoIIYdxvML7mDxA =
2
- github.com/ProtonMail/go-crypto v0.0.0-20230217124315-7d5c6f04bbb8 /go.mod h1:I0gYDMZ6Z5GRU7l58bNFSkPTFN6Yl12dsUlAZ8xy98g =
3
- github.com/ProtonMail/go-mime v0.0.0-20221031134845-8fd9bc37cf08 h1:dS7r5z4iGS0qCjM7UwWdsEMzQesUQbGcXdSm2/tWboA =
4
- github.com/ProtonMail/go-mime v0.0.0-20221031134845-8fd9bc37cf08 /go.mod h1:qRZgbeASl2a9OwmsV85aWwRqic0NHPh+9ewGAzb4cgM =
1
+ github.com/ProtonMail/go-crypto v0.0.0-20230321155629-9a39f2531310 h1:dGAdTcqheKrQ/TW76sAcmO2IorwXplUw2inPkOzykbw =
2
+ github.com/ProtonMail/go-crypto v0.0.0-20230321155629-9a39f2531310 /go.mod h1:8TI4H3IbrackdNgv+92dI+rhpCaLqM0IfpgCgenFvRE =
3
+ github.com/ProtonMail/go-mime v0.0.0-20230322103455-7d82a3887f2f h1:tCbYj7/299ekTTXpdwKYF8eBlsYsDVoggDAuAjoK66k =
4
+ github.com/ProtonMail/go-mime v0.0.0-20230322103455-7d82a3887f2f /go.mod h1:gcr0kNtGBqin9zDW9GOHcVntrwnjrK+qdJ06mWYBybw =
5
5
github.com/bwesterb/go-ristretto v1.2.0 /go.mod h1:fUIoIZaG73pV5biE2Blr2xEzDoMj7NFEuV9ekS419A0 =
6
6
github.com/cloudflare/circl v1.1.0 h1:bZgT/A+cikZnKIwn7xL2OBj012Bmvho/o6RpRvv3GKY =
7
7
github.com/cloudflare/circl v1.1.0 /go.mod h1:prBCrKB9DV4poKZY1l9zBXg2QJY7mvgRvtMxxK7fi4I =
@@ -44,7 +44,6 @@ golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuX
44
44
golang.org/x/term v0.5.0 /go.mod h1:jMB1sMXY+tzblOD4FWmEbocvup2/aLOaQEp7JmGp78k =
45
45
golang.org/x/term v0.6.0 /go.mod h1:m6U89DPEgQRMq3DNkDClhWw02AUbt2daBVO4cn4Hv9U =
46
46
golang.org/x/text v0.3.0 /go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ =
47
- golang.org/x/text v0.3.2 /go.mod h1:bEr9sfX3Q8Zfm5fL9x+3itogRgK3+ptLWKqgva+5dAk =
48
47
golang.org/x/text v0.3.3 /go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ =
49
48
golang.org/x/text v0.3.7 /go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ =
50
49
golang.org/x/text v0.7.0 /go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8 =
You can’t perform that action at this time.
0 commit comments