-
Notifications
You must be signed in to change notification settings - Fork 1
v0.5.0 #12
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
v0.5.0 #12
Changes from all commits
Commits
Show all changes
31 commits
Select commit
Hold shift + click to select a range
c6fa893
Update Go version and dependencies
nman98 41acb39
Increment Go version to v1.25.7
nman98 3413aea
Enhance address transaction retrieval with improved query options and…
nman98 6223281
Update docker files and docker compose files
nman98 9875aa5
Add to release yml option to publish API image and makefile has new c…
nman98 d367dad
Improve synthetic integration test efficiency
nman98 8b78d66
Removed experiments directory, it just made everything a bit confusin…
nman98 4797037
Moved the queries into new go files by their domain.
nman98 5fc4096
Add Base64 conversion API endpoints and handlers
nman98 ee22952
fix: Add a proper response when the http status in not 200.
nman98 6742524
Add initial zstandard dict training, move the events proto to the pkg…
nman98 b59e773
Made some fixes to the training of zstd dict and have produced the fi…
nman98 0159ea0
Small alteration of the documentation and some grammar correction
nman98 e80dfe1
Add data model and schema docs
nman98 b2e1ed4
Update go dependencies
nman98 81489b2
Update Go dependencies and switched to zerolog throughout the indexer…
nman98 0293781
Fix a bug where some decoded messages would not be inserted, added ze…
nman98 1571842
Added compression docs
nman98 555b446
Refactor event collection to marshal transaction events into a single…
nman98 39a3bce
Swapped the zstandard library and fixed the implementation of creatin…
nman98 b04d6e8
Implement event compression and decompression in the data processor. …
nman98 89f9cf8
Update query_tx methods to utilize new structure and decompress event…
nman98 cf925aa
Adjust transaction retrieval to support cursor-based pagination.
nman98 95f3c13
Changed API endpoint path naming.
nman98 12cc5ad
Increased the limit of training zstd dictionary and adjusted the docs.
nman98 8f453bc
Small adjustments to compression and some other small adjustments.
nman98 b9802a9
Try to resolve snyk suggestion...
nman98 c8ce2b4
Database query bug fixes
nman98 ad208f4
Api docker file fix
nman98 275c39e
Some small fixes and changes
nman98 b1cd833
Small bugfixes and adjustments
nman98 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 |
|---|---|---|
| @@ -0,0 +1,30 @@ | ||
| FROM golang:1.25 AS builder | ||
|
|
||
| WORKDIR /app | ||
|
|
||
| COPY . . | ||
|
|
||
| ARG GIT_COMMIT="" | ||
| ARG GIT_TAG="" | ||
| ARG GIT_BRANCH="" | ||
| ARG VERSION="" | ||
|
|
||
| RUN if [ -z "$VERSION" ]; then \ | ||
| if [ -n "$GIT_TAG" ]; then VERSION="$GIT_TAG"; \ | ||
| else VERSION="${GIT_BRANCH}-${GIT_COMMIT}"; \ | ||
| fi; \ | ||
| fi && \ | ||
| go build -ldflags="-s -w -X main.Commit=${GIT_COMMIT} -X main.Version=${VERSION}" -o build/api ./api | ||
|
|
||
| RUN touch config-api.yml | ||
| RUN chmod +x build/api | ||
|
|
||
| FROM gcr.io/distroless/base-debian13:latest | ||
| WORKDIR /app | ||
|
|
||
| COPY --from=builder --chown=nonroot:nonroot /app/build/api . | ||
| COPY --from=builder --chown=nonroot:nonroot /app/config-api.yml . | ||
|
|
||
| USER nonroot | ||
|
|
||
| ENTRYPOINT ["/app/api"] |
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
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.