Skip to content
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

Fix security errors in lint steps #2061

Merged
merged 26 commits into from
Sep 16, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
99ae458
Bump go version to take go patch
tstirrat15 Sep 9, 2024
0c6bad2
Remove erroneously-committed file
tstirrat15 Sep 9, 2024
6b53f31
Add e2e mod file as well
tstirrat15 Sep 9, 2024
9d6db3b
Bump version for analyzers
tstirrat15 Sep 9, 2024
8da4081
Bump go version in container
tstirrat15 Sep 10, 2024
efd1869
Bump in dockerfile.release as well
tstirrat15 Sep 10, 2024
74043c7
Fix missing annotation
tstirrat15 Sep 10, 2024
9bf5f3d
Fix lint errors
tstirrat15 Sep 10, 2024
5731e26
Fix unsafe conversion errors
tstirrat15 Sep 11, 2024
31d4af3
Remove lossy cast
tstirrat15 Sep 11, 2024
c8150ef
Simplify casts in development package
tstirrat15 Sep 11, 2024
54cba16
Fix limit max
tstirrat15 Sep 11, 2024
b1fc26d
Attempt at test fix
tstirrat15 Sep 12, 2024
9b9b291
Lots of lint fixes
tstirrat15 Sep 12, 2024
62afc3c
Run formatting
tstirrat15 Sep 12, 2024
25422a8
Fix a typo that led to nil dereference
tstirrat15 Sep 12, 2024
5fd005a
Get types lining up
tstirrat15 Sep 12, 2024
7fbcc18
Add safecast to e2e
tstirrat15 Sep 12, 2024
d8e30c6
Fix releaser issues
tstirrat15 Sep 12, 2024
015bd0e
Try using goamd64 flag to point at correct file
tstirrat15 Sep 12, 2024
0ac9768
Reinstate erroneously-removed bits
tstirrat15 Sep 13, 2024
8ad8c4e
Pin goreleaser version for now
tstirrat15 Sep 13, 2024
a358e68
Make files pass goreleaser-pro check
tstirrat15 Sep 13, 2024
4b1ab86
Log errors when encountered
tstirrat15 Sep 16, 2024
c781a10
Wrap errors where applicable
tstirrat15 Sep 16, 2024
d4d3071
Fix log.Err usage
tstirrat15 Sep 16, 2024
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
@@ -1,6 +1,6 @@
module github.com/authzed/spicedb

go 1.22.4
go 1.22.7

require (
buf.build/gen/go/prometheus/prometheus/protocolbuffers/go v1.34.2-20240802094132-5b212ab78fb7.2
Expand Down
2 changes: 1 addition & 1 deletion magefiles/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module magefiles

go 1.22.4
go 1.22.7

require (
github.com/agnivade/wasmbrowsertest v0.8.0
Expand Down
Loading