Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ require (
github.com/stealthrocket/wazergo v0.19.1
github.com/stretchr/testify v1.10.0
github.com/tetratelabs/wazero v1.7.2
github.com/traefik/paerser v0.2.0
github.com/traefik/paerser v0.2.3
github.com/traefik/yaegi v0.16.1
github.com/urfave/cli/v2 v2.27.2
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.62.0
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,8 @@ github.com/tetratelabs/wazero v1.7.2 h1:1+z5nXJNwMLPAWaTePFi49SSTL0IMx/i3Fg8Yc25
github.com/tetratelabs/wazero v1.7.2/go.mod h1:ytl6Zuh20R/eROuyDaGPkp82O9C/DJfXAwJfQ3X6/7Y=
github.com/traefik/http-wasm-host-go v0.0.0-20240618100324-3c53dcaa1a70 h1:I+oBnV0orhmasb87yaX54tOAfqrV9+yKoQ1Cum5mq8w=
github.com/traefik/http-wasm-host-go v0.0.0-20240618100324-3c53dcaa1a70/go.mod h1:zQB3w+df4hryDEqBorGyA1DwPJ86LfKIASNLFuj6CuI=
github.com/traefik/paerser v0.2.0 h1:zqCLGSXoNlcBd+mzqSCLjon/I6phqIjeJL2xFB2ysgQ=
github.com/traefik/paerser v0.2.0/go.mod h1:afzaVcgF8A+MpTnPG4wBr4whjanCSYA6vK5RwaYVtRc=
github.com/traefik/paerser v0.2.3 h1:3ea1XZA0cMA9CwwC2qQ7Yn7GenixZZMzzOM/gYT4iWY=
github.com/traefik/paerser v0.2.3/go.mod h1:7BBDd4FANoVgaTZG+yh26jI6CA2nds7D/4VTEdIsh24=
github.com/traefik/yaegi v0.16.1 h1:f1De3DVJqIDKmnasUF6MwmWv1dSEEat0wcpXhD2On3E=
github.com/traefik/yaegi v0.16.1/go.mod h1:4eVhbPb3LnD2VigQjhYbEJ69vDRFdT2HQNrXx8eEwUY=
github.com/urfave/cli/v2 v2.27.2 h1:6e0H+AkS+zDckwPCUrZkKX38mRaau4nL2uipkJpbkcI=
Expand Down
27 changes: 13 additions & 14 deletions pkg/core/scrapper.go
Original file line number Diff line number Diff line change
Expand Up @@ -93,20 +93,19 @@ func NewScrapper(gh *github.Client, gp *goproxy.Client, pgClient pluginClient, d
sources: sources,
// TODO improve blacklist storage
blacklist: map[string]struct{}{
"containous/plugintestxxx": {},
"enzo24ofreopgh/traefik-maintenance-warden": {}, // Doesn't allow issues
"esenac/traefik-custom-router": {}, // Doesn't allow issues
"gitmotion/fosrl-badger": {}, // Doesn't allow issues
"odit-services/traefik-oidc-relying-party": {}, // Doesn't allow issues
"thubolt/geoblock": {}, // Doesn't allow issues
"tmpim/tmpauth-traefik": {}, // Doesn't allow issues
"alexdelprete/traefik-oidc-relying-party": {},
"FinalCAD/TraefikGrpcWebPlugin": {}, // Crash piceus.
"deas/teectl": {}, // Not a plugin
"GDGVIT/securum-exire": {}, // Not a plugin
"morzan1001/forward_auth_grpc_plugin": {}, // piceus panic (excluded during fix)
"iobear/queryparameter-to-bearer": {}, // Doesn't allow issues
"CitronusAcademy/traefik-maintenance-plugin": {}, // empty map key in testData causes paerser panic
"containous/plugintestxxx": {},
"enzo24ofreopgh/traefik-maintenance-warden": {}, // Doesn't allow issues
"esenac/traefik-custom-router": {}, // Doesn't allow issues
"gitmotion/fosrl-badger": {}, // Doesn't allow issues
"odit-services/traefik-oidc-relying-party": {}, // Doesn't allow issues
"thubolt/geoblock": {}, // Doesn't allow issues
"tmpim/tmpauth-traefik": {}, // Doesn't allow issues
"alexdelprete/traefik-oidc-relying-party": {},
"FinalCAD/TraefikGrpcWebPlugin": {}, // Crash piceus.
"deas/teectl": {}, // Not a plugin
"GDGVIT/securum-exire": {}, // Not a plugin
"morzan1001/forward_auth_grpc_plugin": {}, // piceus panic (excluded during fix)
"iobear/queryparameter-to-bearer": {}, // Doesn't allow issues
},
skipNewCall: map[string]struct{}{
"github.com/negasus/traefik-plugin-ip2location": {},
Expand Down
Loading