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

go-algorand 3.27.0-stable Release PR #6178

Merged
merged 25 commits into from
Nov 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
e1eb46a
CI: remove homebrew autoupdate deactivation from CircleCI (#6135)
onetechnical Sep 18, 2024
62eb3bf
CI: promote unused linter (#6120)
cce Sep 19, 2024
2a02530
api: Add support for Private Network Access header preflight requests…
nullun Sep 19, 2024
c649ddb
build: Add automake to linux dependencies (#6138)
nullun Sep 24, 2024
b782a6e
tests: make goal-partkey-commands e2e-subs test serial (#6143)
algorandskiy Sep 24, 2024
96b13f0
tests: go test RUN/PASS output parser (#6137)
algorandskiy Sep 25, 2024
8b6c443
p2p: upgrade libp2p (#6142)
algorandskiy Sep 27, 2024
8fdf647
Merge remote-tracking branch 'origin/rel/stable' into relstable3.26.0…
Algo-devops-service Oct 2, 2024
72e3b0e
Bump Version, Remove buildnumber.dat and genesistimestamp.dat files.
Algo-devops-service Oct 2, 2024
cb4de53
Merge pull request #6146 from Algo-devops-service/relstable3.26.0-rem…
algojohnlee Oct 2, 2024
c9000bf
Consensus: For Devnet and Betanet, support custom network upgrade del…
gmalouf Oct 11, 2024
e3c8fc9
Tools: add support for developing in OpenSUSE Tumbleweed (#6153)
lamg Oct 21, 2024
54ca0c2
AVM: Only update the bytec disassembleState for bytecblock opcodes (#…
nullun Oct 22, 2024
e5a03e3
tools: heapWatch metrics imported into Prometheus/Grafana (#6147)
algorandskiy Oct 22, 2024
39f7485
Docs: Update README.md to be more concise (#6099)
Pcharlesme Oct 22, 2024
078aafe
API: MaxTealSourceBytes to 512 kb (#6068)
scholtz Oct 25, 2024
eff5fb4
network: fix misplaced p2p received TX metric (#6144)
algorandskiy Oct 28, 2024
62f9082
AVM: Implement lsig size pooling (#6057)
giuliop Nov 14, 2024
7d4e23b
Build: Upgrade to Golang 1.23 (#6169)
gmalouf Nov 18, 2024
e97beee
performance: do not report extra details for failed app txns (#6171)
algorandskiy Nov 18, 2024
a6123b6
API: New algod endpoint `/v2/block/{round}/header` omits transactions…
nullun Nov 18, 2024
ce9b2b0
network: handle p2p to ws messages propagation (#6156)
algorandskiy Nov 19, 2024
db7f162
tests: Fix MaxConnectionsPerIP setting in agreement/gossip tests (#6173)
algorandskiy Nov 19, 2024
33bad5b
Update the Version, BuildNumber, genesistimestamp.data
Algo-devops-service Nov 19, 2024
d1fbc97
Merge pull request #6174 from Algo-devops-service/relbeta3.27.0
algojohnlee Nov 19, 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 .github/workflows/benchmarks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v4.0.1
- uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- run: go version
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
id: go_version
run: echo "GO_VERSION=$(./scripts/get_golang_version.sh)" >> $GITHUB_ENV
- name: Install golang
uses: actions/setup-go@v4.0.1
uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
- name: Restore libsodium from cache
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/reviewdog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ jobs:
- name: Make libsodium.a
run: sudo mv /usr/bin/go /usr/bin/go.bak && make crypto/libs/linux/amd64/lib/libsodium.a && sudo mv /usr/bin/go.bak /usr/bin/go
- name: reviewdog-golangci-lint
uses: reviewdog/[email protected].1
uses: reviewdog/[email protected].2
with:
go_version_file: go.mod
golangci_lint_version: "v1.58.0"
golangci_lint_version: "v1.62.0"
golangci_lint_flags: "-c .golangci.yml --allow-parallel-runners"
reporter: "github-pr-check"
tool_name: "Lint Errors"
Expand All @@ -46,7 +46,7 @@ jobs:
id: go_version
run: echo "GO_VERSION=$(./scripts/get_golang_version.sh)" >> $GITHUB_ENV
- name: Install specific golang
uses: actions/setup-go@v4.0.1
uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
- name: Create folders for golangci-lint
Expand All @@ -63,13 +63,13 @@ jobs:
run: |
cd cicdtmp/golangci-lint
git clone https://github.com/golangci/golangci-lint.git .
git checkout tags/v1.58.0
git checkout tags/v1.62.0
CGO_ENABLED=true go build -trimpath -o golangci-lint-cgo ./cmd/golangci-lint
./golangci-lint-cgo --version
cd ../../
- name: Install reviewdog
run: |
curl -sfL https://raw.githubusercontent.com/reviewdog/reviewdog/v0.18.1/install.sh | sh -s -- v0.18.1
curl -sfL https://raw.githubusercontent.com/reviewdog/reviewdog/v0.20.2/install.sh | sh -s -- v0.20.2
reviewdog --version
- name: Build custom linters
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tools.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
id: go_version
run: echo "GO_VERSION=$(./scripts/get_golang_version.sh)" >> $GITHUB_ENV
- name: Install go version
uses: actions/setup-go@v4.0.1
uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
- name: Test tools/block-generator
Expand Down
1 change: 0 additions & 1 deletion .golangci-warnings.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ linters:
enable:
- gosec
- partitiontest
- unused

linters-settings:
gosec: # we are mostly only interested in G601
Expand Down
14 changes: 12 additions & 2 deletions .golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ linters:
disable-all: true
enable:
- errcheck
- exportloopref
- copyloopvar
- gofmt
- gosimple
- govet
Expand All @@ -19,6 +19,7 @@ linters:
- staticcheck
- typecheck
- paralleltest
- unused

severity:
default-severity: error
Expand Down Expand Up @@ -115,10 +116,17 @@ issues:
- "^superfluous-else: if block ends with"

exclude-rules:
- path: cmd/algofix/
linters: unused
- path: cmd/algocfg/
linters: unused
- path: cmd/catchpointdump/
linters: unused
- path: tools/
linters: unused
- path: _test\.go
linters:
- errcheck
# - exportloopref
# - gofmt
- gosimple
# - govet
Expand All @@ -129,6 +137,7 @@ issues:
# - revive
# - staticcheck
- typecheck
- unused
- path: _test\.go
linters:
- staticcheck
Expand Down Expand Up @@ -206,3 +215,4 @@ issues:
- govet
- ineffassign
- misspell
- unused
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM ubuntu:20.04 as builder

ARG GO_VERSION="1.21.10"
ARG GO_VERSION="1.23.3"

ARG CHANNEL
ARG URL
Expand Down
Loading
Loading