-
Notifications
You must be signed in to change notification settings - Fork 197
PMM-14577 Fix CVEs. #4848
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
PMM-14577 Fix CVEs. #4848
Changes from 21 commits
Commits
Show all changes
33 commits
Select commit
Hold shift + click to select a range
ba0b3e5
PMM-14577 Fix CVEs
JiriCtvrtka c5386a3
Merge branch 'v3' into PMM-14577-CVEs-fix
JiriCtvrtka fc26b21
Merge branch 'v3' into PMM-14577-CVEs-fix
JiriCtvrtka a20fc08
Merge branch 'v3' into PMM-14577-CVEs-fix
JiriCtvrtka 3e3e2a6
PMM-14577 Replace for testing.
JiriCtvrtka ed75fe6
PMM-14577 Test if this will be double register bug.
JiriCtvrtka a404867
PMM-14577 Test.
JiriCtvrtka 00f1e8e
PMM-14577 Removing replace - all diff in PMM repo - test
JiriCtvrtka a387acf
Merge branch 'v3' into PMM-14577-CVEs-fix
JiriCtvrtka b19a95c
PMM-14577 tidy.
JiriCtvrtka 189dac1
PMM-14577 Format.
JiriCtvrtka 19c5960
PMM-14577 Fix channels test after remove replace for go-grpc.
JiriCtvrtka a12355a
PMM-14577 Lint.
JiriCtvrtka d0409e1
PMM-14577 Lint.
JiriCtvrtka e80d20c
Revert "PMM-14577 Lint."
JiriCtvrtka fae4faf
PMM-14577 Fix, comments.
JiriCtvrtka 39dc201
PMM-14577 Rename to more meaningful method name.
JiriCtvrtka 2d4cad8
PMM-14577 Lint.
JiriCtvrtka c8f614f
PMM-14577 Remove replace.
JiriCtvrtka 10b71cc
PMM-14577 Try disable lint.
JiriCtvrtka 418db88
PMM-14577 Lint.
JiriCtvrtka 21f44f0
PMM-14577 Update hashicorp.
JiriCtvrtka f355d1b
PMM-14577 Separe go-grpc-prometheus code into new file.
JiriCtvrtka ea0da7b
PMM-14577 Lint.
JiriCtvrtka 344f26a
PMM-14577 Missing package.
JiriCtvrtka d533bc5
Merge branch 'v3' into PMM-14577-CVEs-fix
JiriCtvrtka 97657f9
PMM-14577 Typo.
JiriCtvrtka 4136744
Merge branch 'v3' into PMM-14577-CVEs-fix
JiriCtvrtka b7513a9
Merge branch 'v3' into PMM-14577-CVEs-fix
JiriCtvrtka bbaf475
Merge branch 'v3' into PMM-14577-CVEs-fix
JiriCtvrtka 18d9d7a
PMM-14577 Update replace.
JiriCtvrtka df2fb0d
PMM-14577 Correct timestamp in replace.
JiriCtvrtka db10f7e
PMM-14577 Tidy.
JiriCtvrtka File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -5,13 +5,11 @@ go 1.25.5 | |
| // Update saas with | ||
| // go get -v github.com/percona/saas@latest | ||
|
|
||
| replace github.com/grpc-ecosystem/go-grpc-prometheus => github.com/Percona-Lab/go-grpc-prometheus v0.0.0-20230116133345-3487748d4592 | ||
| replace github.com/go-openapi/spec => github.com/JiriCtvrtka/spec v0.0.0-20251222101011-485c12f10ee3 | ||
|
|
||
| replace github.com/go-openapi/spec => github.com/Percona-Lab/spec v0.21.0-percona | ||
| replace github.com/alecthomas/kingpin/v2 => github.com/Percona-Lab/kingpin/v2 v2.0.0-20251219125400-95ff74a47c0a | ||
|
|
||
| replace github.com/alecthomas/kingpin/v2 => github.com/Percona-Lab/kingpin/v2 v2.4.0-percona | ||
JiriCtvrtka marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
|
||
| replace golang.org/x/crypto => github.com/percona-lab/crypto v0.0.0-20231108144114-756dfb24eaf2 | ||
| replace golang.org/x/crypto => github.com/percona-lab/crypto v0.0.0-20251219125031-82d8ba2cda22 | ||
|
||
|
|
||
| require ( | ||
| github.com/AlekSi/pointer v1.2.0 | ||
|
|
@@ -44,8 +42,8 @@ require ( | |
| github.com/grpc-ecosystem/go-grpc-middleware v1.4.0 | ||
| github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0 | ||
| github.com/grpc-ecosystem/grpc-gateway/v2 v2.27.2 | ||
| github.com/hashicorp/go-version v1.8.0 | ||
| github.com/hashicorp/raft v1.7.0 | ||
| github.com/hashicorp/go-version v1.7.0 | ||
| github.com/hashicorp/raft v1.7.3 | ||
| github.com/jmoiron/sqlx v1.4.0 | ||
| github.com/jotaen/kong-completion v0.0.5 | ||
| github.com/lib/pq v1.10.9 | ||
|
|
@@ -70,15 +68,15 @@ require ( | |
| github.com/tink-crypto/tink-go v0.0.0-20230613075026-d6de17e3f164 | ||
| go.mongodb.org/mongo-driver v1.17.6 | ||
| go.starlark.net v0.0.0-20230717150657-8a3343210976 | ||
| golang.org/x/crypto v0.45.0 | ||
| golang.org/x/crypto v0.46.0 | ||
| golang.org/x/sync v0.19.0 | ||
| golang.org/x/sys v0.39.0 | ||
| golang.org/x/text v0.32.0 | ||
| golang.org/x/tools v0.39.0 | ||
| google.golang.org/genproto/googleapis/api v0.0.0-20251022142026-3a174f9686a8 | ||
| google.golang.org/genproto/googleapis/rpc v0.0.0-20251022142026-3a174f9686a8 | ||
| google.golang.org/genproto/googleapis/rpc v0.0.0-20251213004720-97cd9d5aeac2 | ||
| google.golang.org/grpc v1.77.0 | ||
| google.golang.org/protobuf v1.36.10 | ||
| google.golang.org/protobuf v1.36.11 | ||
| gopkg.in/mgo.v2 v2.0.0-20190816093944-a6b53ec6cb22 | ||
| gopkg.in/reform.v1 v1.5.1 | ||
| gopkg.in/yaml.v3 v3.0.1 | ||
|
|
@@ -101,24 +99,25 @@ require ( | |
| github.com/go-logr/logr v1.4.3 // indirect | ||
| github.com/go-logr/stdr v1.2.2 // indirect | ||
| github.com/go-openapi/swag/cmdutils v0.25.1 // indirect | ||
| github.com/go-openapi/swag/conv v0.25.1 // indirect | ||
| github.com/go-openapi/swag/conv v0.25.4 // indirect | ||
| github.com/go-openapi/swag/fileutils v0.25.1 // indirect | ||
| github.com/go-openapi/swag/jsonname v0.25.1 // indirect | ||
| github.com/go-openapi/swag/jsonutils v0.25.1 // indirect | ||
| github.com/go-openapi/swag/loading v0.25.1 // indirect | ||
| github.com/go-openapi/swag/jsonname v0.25.4 // indirect | ||
| github.com/go-openapi/swag/jsonutils v0.25.4 // indirect | ||
| github.com/go-openapi/swag/loading v0.25.4 // indirect | ||
| github.com/go-openapi/swag/mangling v0.25.1 // indirect | ||
| github.com/go-openapi/swag/netutils v0.25.1 // indirect | ||
| github.com/go-openapi/swag/stringutils v0.25.1 // indirect | ||
| github.com/go-openapi/swag/typeutils v0.25.1 // indirect | ||
| github.com/go-openapi/swag/yamlutils v0.25.1 // indirect | ||
| github.com/go-openapi/swag/stringutils v0.25.4 // indirect | ||
| github.com/go-openapi/swag/typeutils v0.25.4 // indirect | ||
| github.com/go-openapi/swag/yamlutils v0.25.4 // indirect | ||
| github.com/go-viper/mapstructure/v2 v2.4.0 // indirect | ||
| github.com/gogo/googleapis v0.0.0-20180223154316-0cd9801be74a // indirect | ||
| github.com/golang-jwt/jwt/v5 v5.3.0 // indirect | ||
| github.com/golang/protobuf v1.5.4 // indirect | ||
| github.com/google/btree v1.0.1 // indirect | ||
| github.com/grafana/regexp v0.0.0-20250905093917-f7b3be9d1853 // indirect | ||
| github.com/hashicorp/go-hclog v1.6.3 // indirect | ||
| github.com/hashicorp/go-msgpack/v2 v2.1.1 // indirect | ||
| github.com/hashicorp/go-metrics v0.5.4 // indirect | ||
| github.com/hashicorp/go-msgpack/v2 v2.1.2 // indirect | ||
| github.com/kr/fs v0.1.0 // indirect | ||
| github.com/mattn/go-colorable v0.1.14 // indirect | ||
| github.com/miekg/dns v1.1.68 // indirect | ||
|
|
@@ -152,8 +151,8 @@ require ( | |
| github.com/go-faster/city v1.0.1 // indirect | ||
| github.com/go-faster/errors v0.7.1 // indirect | ||
| github.com/go-openapi/analysis v0.24.0 // indirect | ||
| github.com/go-openapi/jsonpointer v0.22.1 // indirect | ||
| github.com/go-openapi/jsonreference v0.21.2 // indirect | ||
| github.com/go-openapi/jsonpointer v0.22.4 // indirect | ||
| github.com/go-openapi/jsonreference v0.21.4 // indirect | ||
| github.com/go-openapi/loads v0.23.1 // indirect | ||
| github.com/go-openapi/spec v0.22.0 // indirect | ||
| github.com/gogo/protobuf v1.3.2 // indirect | ||
|
|
@@ -181,7 +180,7 @@ require ( | |
| github.com/pierrec/lz4/v4 v4.1.22 // indirect | ||
| github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c // indirect | ||
| github.com/prometheus/client_model v0.6.2 // indirect | ||
| github.com/prometheus/procfs v0.16.1 // indirect | ||
| github.com/prometheus/procfs v0.19.2 // indirect | ||
| github.com/rs/xid v1.5.0 // indirect | ||
| github.com/segmentio/asm v1.2.1 // indirect | ||
| github.com/shopspring/decimal v1.4.0 // indirect | ||
|
|
@@ -192,5 +191,5 @@ require ( | |
| go.opentelemetry.io/otel v1.38.0 // indirect | ||
| go.opentelemetry.io/otel/trace v1.38.0 // indirect | ||
| golang.org/x/mod v0.30.0 // indirect | ||
| golang.org/x/net v0.47.0 // indirect | ||
| golang.org/x/net v0.48.0 // indirect | ||
| ) | ||
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I dont have permissions to this repo. This is only for now. Once finished it will be replaced with proper commit in Percona spec repo.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I believe we have a new version now.