-
Notifications
You must be signed in to change notification settings - Fork 270
feat(appcheck): Add replay protection feature #641
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
Open
agbaraka
wants to merge
10
commits into
firebase:dev
Choose a base branch
from
agbaraka:feature/app-check-consume-endpoint
base: dev
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 6 commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
ed9b1fb
Add replay protection feature
agbaraka b8487ba
refactor code and description
agbaraka 6c999a4
refactor code and cleanup as per feedback
agbaraka 604af8d
Refactor token verifier URL generation
agbaraka c746ccb
Merge branch 'dev' into feature/app-check-consume-endpoint
agbaraka 97e1f4d
Refactor code and cleanup
agbaraka 3946367
Revert package updates
agbaraka 863183a
Fix linter errors
agbaraka 7064317
Fix failed tests
agbaraka 688d513
Refactor to include http failures test cases
agbaraka 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
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
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 |
|---|---|---|
| @@ -1,64 +1,64 @@ | ||
| module firebase.google.com/go/v4 | ||
|
|
||
| go 1.23.0 | ||
| go 1.24.0 | ||
lahirumaramba marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| require ( | ||
| cloud.google.com/go/firestore v1.18.0 | ||
| cloud.google.com/go/storage v1.53.0 | ||
| cloud.google.com/go/firestore v1.20.0 | ||
| cloud.google.com/go/storage v1.56.0 | ||
| github.com/MicahParks/keyfunc v1.9.0 | ||
| github.com/golang-jwt/jwt/v4 v4.5.2 | ||
| github.com/google/go-cmp v0.7.0 | ||
| golang.org/x/oauth2 v0.30.0 | ||
| google.golang.org/api v0.231.0 | ||
| google.golang.org/api v0.247.0 | ||
| google.golang.org/appengine/v2 v2.0.6 | ||
| ) | ||
|
|
||
| require ( | ||
| cel.dev/expr v0.23.1 // indirect | ||
| cloud.google.com/go v0.121.0 // indirect | ||
| cloud.google.com/go/auth v0.16.1 // indirect | ||
| cel.dev/expr v0.24.0 // indirect | ||
| cloud.google.com/go v0.121.6 // indirect | ||
| cloud.google.com/go/auth v0.16.4 // indirect | ||
| cloud.google.com/go/auth/oauth2adapt v0.2.8 // indirect | ||
| cloud.google.com/go/compute/metadata v0.6.0 // indirect | ||
| cloud.google.com/go/compute/metadata v0.8.0 // indirect | ||
| cloud.google.com/go/iam v1.5.2 // indirect | ||
| cloud.google.com/go/longrunning v0.6.7 // indirect | ||
| cloud.google.com/go/monitoring v1.24.2 // indirect | ||
| github.com/GoogleCloudPlatform/opentelemetry-operations-go/detectors/gcp v1.27.0 // indirect | ||
| github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/metric v0.51.0 // indirect | ||
| github.com/GoogleCloudPlatform/opentelemetry-operations-go/internal/resourcemapping v0.51.0 // indirect | ||
| github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/metric v0.53.0 // indirect | ||
| github.com/GoogleCloudPlatform/opentelemetry-operations-go/internal/resourcemapping v0.53.0 // indirect | ||
| github.com/cespare/xxhash/v2 v2.3.0 // indirect | ||
| github.com/cncf/xds/go v0.0.0-20250501225837-2ac532fd4443 // indirect | ||
| github.com/envoyproxy/go-control-plane/envoy v1.32.4 // indirect | ||
| github.com/envoyproxy/protoc-gen-validate v1.2.1 // indirect | ||
| github.com/felixge/httpsnoop v1.0.4 // indirect | ||
| github.com/go-jose/go-jose/v4 v4.0.5 // indirect | ||
| github.com/go-logr/logr v1.4.2 // indirect | ||
| github.com/go-logr/logr v1.4.3 // indirect | ||
| github.com/go-logr/stdr v1.2.2 // indirect | ||
| github.com/golang/protobuf v1.5.4 // indirect | ||
| github.com/google/s2a-go v0.1.9 // indirect | ||
| github.com/google/uuid v1.6.0 // indirect | ||
| github.com/googleapis/enterprise-certificate-proxy v0.3.6 // indirect | ||
| github.com/googleapis/gax-go/v2 v2.14.1 // indirect | ||
| github.com/googleapis/gax-go/v2 v2.15.0 // indirect | ||
| github.com/planetscale/vtprotobuf v0.6.1-0.20240319094008-0393e58bdf10 // indirect | ||
| github.com/spiffe/go-spiffe/v2 v2.5.0 // indirect | ||
| github.com/zeebo/errs v1.4.0 // indirect | ||
| go.opentelemetry.io/auto/sdk v1.1.0 // indirect | ||
| go.opentelemetry.io/contrib/detectors/gcp v1.35.0 // indirect | ||
| go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.60.0 // indirect | ||
| go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.60.0 // indirect | ||
| go.opentelemetry.io/otel v1.35.0 // indirect | ||
| go.opentelemetry.io/otel/metric v1.35.0 // indirect | ||
| go.opentelemetry.io/otel/sdk v1.35.0 // indirect | ||
| go.opentelemetry.io/otel/sdk/metric v1.35.0 // indirect | ||
| go.opentelemetry.io/otel/trace v1.35.0 // indirect | ||
| golang.org/x/crypto v0.40.0 // indirect | ||
| golang.org/x/net v0.42.0 // indirect | ||
| go.opentelemetry.io/contrib/detectors/gcp v1.36.0 // indirect | ||
| go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.61.0 // indirect | ||
| go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.61.0 // indirect | ||
| go.opentelemetry.io/otel v1.36.0 // indirect | ||
| go.opentelemetry.io/otel/metric v1.36.0 // indirect | ||
| go.opentelemetry.io/otel/sdk v1.36.0 // indirect | ||
| go.opentelemetry.io/otel/sdk/metric v1.36.0 // indirect | ||
| go.opentelemetry.io/otel/trace v1.36.0 // indirect | ||
| golang.org/x/crypto v0.41.0 // indirect | ||
| golang.org/x/net v0.43.0 // indirect | ||
| golang.org/x/sync v0.16.0 // indirect | ||
| golang.org/x/sys v0.34.0 // indirect | ||
| golang.org/x/text v0.27.0 // indirect | ||
| golang.org/x/time v0.11.0 // indirect | ||
| google.golang.org/genproto v0.0.0-20250505200425-f936aa4a68b2 // indirect | ||
| google.golang.org/genproto/googleapis/api v0.0.0-20250505200425-f936aa4a68b2 // indirect | ||
| google.golang.org/genproto/googleapis/rpc v0.0.0-20250505200425-f936aa4a68b2 // indirect | ||
| google.golang.org/grpc v1.72.0 // indirect | ||
| google.golang.org/protobuf v1.36.6 // indirect | ||
| golang.org/x/sys v0.35.0 // indirect | ||
| golang.org/x/text v0.28.0 // indirect | ||
| golang.org/x/time v0.12.0 // indirect | ||
| google.golang.org/genproto v0.0.0-20250603155806-513f23925822 // indirect | ||
| google.golang.org/genproto/googleapis/api v0.0.0-20250818200422-3122310a409c // indirect | ||
| google.golang.org/genproto/googleapis/rpc v0.0.0-20250818200422-3122310a409c // indirect | ||
| google.golang.org/grpc v1.74.2 // indirect | ||
| google.golang.org/protobuf v1.36.7 // 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.
Uh oh!
There was an error while loading. Please reload this page.