Skip to content

Commit 2c61c44

Browse files
authored
Update changelog (#2332)
* Update changelog * Fix a few revive linter issues
1 parent c86cf07 commit 2c61c44

File tree

4 files changed

+5
-6
lines changed

4 files changed

+5
-6
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
4848
from certificate requests in certificate templates (smallstep/crypto#767)
4949
- Allow to specify audience when generating JWK provisioner tokens (smallstep/certificates#2326)
5050
- Add SSH certificate type to exposed metrics (smallstep/certificates#2290)
51+
- Enable dynamic validation of project ownership within a GCP organization
52+
when using the GCP Cloud Instance Identity provisioner (smallstep/certificates#2133)
5153

5254
### Changed
5355

scripts/badger-migration/main.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,6 @@ type dryRunDB struct{}
6060

6161
func (*dryRunDB) CreateTable([]byte) error { return nil }
6262

63-
//nolint:revive // allow unused parameters to show function signature
6463
func (*dryRunDB) Set(bucket, key, value []byte) error { return nil }
6564

6665
func usage(fs *flag.FlagSet) {

test/integration/scep/internal/x509/oid.go

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// Use of this source code is governed by a BSD-style
33
// license that can be found in the LICENSE file.
44

5-
//nolint:staticcheck,revive,gocritic // code copied from crypto/x509
5+
//nolint:staticcheck,gocritic // code copied from crypto/x509
66
package legacyx509
77

88
import (
@@ -18,9 +18,7 @@ import (
1818
"github.com/smallstep/certificates/internal/cast"
1919
)
2020

21-
var (
22-
errInvalidOID = errors.New("invalid oid")
23-
)
21+
var errInvalidOID = errors.New("invalid oid")
2422

2523
// An OID represents an ASN.1 OBJECT IDENTIFIER.
2624
type OID struct {

test/integration/scep/internal/x509/parser.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// Use of this source code is governed by a BSD-style
33
// license that can be found in the LICENSE file.
44

5-
//nolint:revive,gocritic,errorlint,unconvert,staticcheck // code copied from crypto/x509
5+
//nolint:gocritic,errorlint,unconvert,staticcheck // code copied from crypto/x509
66
package legacyx509
77

88
import (

0 commit comments

Comments
 (0)