Update changelog (#2332)

* Update changelog
* Fix a few revive linter issues
This commit is contained in:
Max
2025-07-13 17:22:20 -04:00
committed by GitHub
parent c86cf07be9
commit 2c61c44176
4 changed files with 5 additions and 6 deletions

View File

@@ -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 {

View File

@@ -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 (