-
Notifications
You must be signed in to change notification settings - Fork 8
chore: upgrade all dependencies to latest versions #245
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
Changes from all commits
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
4d6b32b
chore: upgrade jackc/pgx from v4 to v5
ravisuhag 9b36aef
chore: upgrade grpc-middleware v1 to v2 and modernize gRPC setup
ravisuhag 11b2a43
chore: upgrade r3labs/diff from v2 to v3
ravisuhag c705dba
chore: upgrade go-elasticsearch from v7 to v8, remove olivere/elastic
ravisuhag 306d877
chore: upgrade raystack/salt from v0.3 to v0.7
ravisuhag 905cee3
chore: bump all dependency versions to latest
ravisuhag f82102c
fix: replace deprecated grpc.DialContext and WithBlock with grpc.NewC…
ravisuhag e99f18b
build: upgrade CI Go version to 1.25 and Elasticsearch to 8.x
ravisuhag 088d69f
build: upgrade CI Go version to 1.26
ravisuhag 816e009
build: use go-version-file instead of hardcoded Go version in CI
ravisuhag 264d39f
chore: fix ci
ravisuhag 7246c9d
chore: optimize CI pipeline and fix JSONB NULL scan error
ravisuhag 5a20ab1
chore: avoid duplicate CI runs on PR branches
ravisuhag 441c374
chore: add concurrency groups to cancel stale CI runs
ravisuhag ac37120
Revert "chore: add concurrency groups to cancel stale CI runs"
ravisuhag 28abc09
Reapply "chore: add concurrency groups to cancel stale CI runs"
ravisuhag 313492c
chore: remove unnecessary build-essential and add release cache
ravisuhag 21b8dbe
fix: handle NULL JSONB/JSONText scanning and ES 8.x purge compatibility
ravisuhag 9ac0e8f
chore: simplify root config files and fix ES 8.x test purge
ravisuhag a9c4ae7
fix: exclude system indices from ES test purge for 8.x compatibility
ravisuhag 367e610
fix: list and delete only user indices in ES test purge
ravisuhag df95c2b
chore: clean up goreleaser config and fix config comment syntax
ravisuhag 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,8 +1,16 @@ | ||
| .git | ||
| .github | ||
| .idea | ||
| .vscode | ||
| .DS_Store | ||
| .env | ||
| .claude | ||
| compass | ||
| config.yaml | ||
| compass.yaml | ||
| temp/ | ||
| docs/ | ||
| test/ | ||
| *.md | ||
| coverage.out | ||
| dist/ |
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,19 +1,32 @@ | ||
| name: Lint | ||
|
|
||
| on: [push] | ||
| on: | ||
| push: | ||
| branches: | ||
| - main | ||
| paths-ignore: | ||
| - "**.md" | ||
| - "docs/**" | ||
| pull_request: | ||
| paths-ignore: | ||
| - "**.md" | ||
| - "docs/**" | ||
|
|
||
| concurrency: | ||
| group: lint-${{ github.ref }} | ||
| cancel-in-progress: ${{ github.ref != 'refs/heads/main' }} | ||
|
|
||
| jobs: | ||
| golangci: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: actions/checkout@v6 | ||
| with: | ||
| fetch-depth: 0 | ||
| - uses: actions/setup-go@v6 | ||
| with: | ||
| go-version: "1.20" | ||
| go-version-file: "go.mod" | ||
| cache: true | ||
| - name: golangci-lint | ||
| uses: golangci/golangci-lint-action@v9 | ||
| with: | ||
| version: v2.1 | ||
| version: latest | ||
| args: --timeout=5m |
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
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,7 +1,6 @@ | ||
| FROM alpine:latest | ||
|
|
||
| COPY compass /usr/bin/compass | ||
| RUN apk update | ||
| RUN apk add ca-certificates | ||
| RUN apk update && apk add --no-cache ca-certificates && rm -rf /var/cache/apk/* | ||
|
|
||
| CMD ["compass"] | ||
| ENTRYPOINT ["compass"] |
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,17 +1,12 @@ | ||
| FROM golang:1.20-alpine3.17 as builder | ||
| ARG GO_VERSION=1.25 | ||
| FROM golang:${GO_VERSION}-alpine3.21 AS builder | ||
| RUN apk add make | ||
| WORKDIR /build/ | ||
| COPY . . | ||
| RUN make build | ||
|
|
||
| FROM alpine:3.17 | ||
|
|
||
| FROM alpine:3.21 | ||
| COPY --from=builder /build/compass /usr/bin/compass | ||
| RUN apk update | ||
| RUN apk add ca-certificates | ||
|
|
||
| # glibc compatibility library, since go binaries | ||
| # don't work well with musl libc that alpine uses | ||
| RUN apk add libc6-compat | ||
| RUN apk update && apk add --no-cache ca-certificates libc6-compat && rm -rf /var/cache/apk/* | ||
|
|
||
| ENTRYPOINT ["compass"] | ||
| ENTRYPOINT ["compass"] |
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
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.
🧩 Analysis chain
🌐 Web query:
What is the latest stable version of vektra/mockery and bufbuild/buf?💡 Result:
The latest stable version of vektra/mockery is v3.7.0 (released March 6, 2026). The latest stable version of bufbuild/buf is v1.66.1 (released March 9, 2026).
Citations:
🏁 Script executed:
Repository: raystack/compass
Length of output: 680
🏁 Script executed:
Repository: raystack/compass
Length of output: 77
🏁 Script executed:
Repository: raystack/compass
Length of output: 98
🏁 Script executed:
Repository: raystack/compass
Length of output: 5498
🏁 Script executed:
Repository: raystack/compass
Length of output: 1313
🏁 Script executed:
Repository: raystack/compass
Length of output: 1976
🏁 Script executed:
Repository: raystack/compass
Length of output: 3855
Pin mockery version to match committed mocks; use caution with buf version selection.
Using
@latestfor mockery and buf creates version drift between local development and CI. Your CI runsmake testwithoutmake setup, relying on committed mocks (all generated with mockery v2.20.2). Version inconsistencies between local and committed mocks will cause subtle test failures.However, the suggested versions need adjustment:
♻️ Suggested change (conservative approach)
📝 Committable suggestion
🤖 Prompt for AI Agents