mirror of
https://github.com/outbackdingo/certificates.git
synced 2026-01-27 02:18:27 +00:00
Update changelog (#2332)
* Update changelog * Fix a few revive linter issues
This commit is contained in:
@@ -48,6 +48,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
|
||||
from certificate requests in certificate templates (smallstep/crypto#767)
|
||||
- Allow to specify audience when generating JWK provisioner tokens (smallstep/certificates#2326)
|
||||
- Add SSH certificate type to exposed metrics (smallstep/certificates#2290)
|
||||
- Enable dynamic validation of project ownership within a GCP organization
|
||||
when using the GCP Cloud Instance Identity provisioner (smallstep/certificates#2133)
|
||||
|
||||
### Changed
|
||||
|
||||
|
||||
@@ -60,7 +60,6 @@ type dryRunDB struct{}
|
||||
|
||||
func (*dryRunDB) CreateTable([]byte) error { return nil }
|
||||
|
||||
//nolint:revive // allow unused parameters to show function signature
|
||||
func (*dryRunDB) Set(bucket, key, value []byte) error { return nil }
|
||||
|
||||
func usage(fs *flag.FlagSet) {
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// Use of this source code is governed by a BSD-style
|
||||
// license that can be found in the LICENSE file.
|
||||
|
||||
//nolint:staticcheck,revive,gocritic // code copied from crypto/x509
|
||||
//nolint:staticcheck,gocritic // code copied from crypto/x509
|
||||
package legacyx509
|
||||
|
||||
import (
|
||||
@@ -18,9 +18,7 @@ import (
|
||||
"github.com/smallstep/certificates/internal/cast"
|
||||
)
|
||||
|
||||
var (
|
||||
errInvalidOID = errors.New("invalid oid")
|
||||
)
|
||||
var errInvalidOID = errors.New("invalid oid")
|
||||
|
||||
// An OID represents an ASN.1 OBJECT IDENTIFIER.
|
||||
type OID struct {
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// Use of this source code is governed by a BSD-style
|
||||
// license that can be found in the LICENSE file.
|
||||
|
||||
//nolint:revive,gocritic,errorlint,unconvert,staticcheck // code copied from crypto/x509
|
||||
//nolint:gocritic,errorlint,unconvert,staticcheck // code copied from crypto/x509
|
||||
package legacyx509
|
||||
|
||||
import (
|
||||
|
||||
Reference in New Issue
Block a user