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

release: draft release v1.1.19 #1311

Merged
merged 22 commits into from
Feb 13, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
8894b65
doc: update readme (#1233)
setunapo Dec 7, 2022
c5b7d74
eth, trie: sync with upstream v1.10.26 to solve snap sync issues (#…
kyrie-yl Dec 13, 2022
cc17abf
metrics: add miner info into metrics server (#1212)
j75689 Dec 15, 2022
da977e9
core, ethdb, tests, trie: implement NewBatchWithSize API for batcher …
rjl493456442 Feb 15, 2022
e9a04cc
core: preallocate batch size in bloomIndexer (#25289)
dbadoy Aug 3, 2022
154f339
comments: add comments to clarify flags and byte codes (#1245)
forcodedancing Dec 22, 2022
3036989
fix comments: prune ancient compatibility, add prune ancient comments
joeylichang Dec 20, 2022
b37d44b
ci: update unmaintained tools to use maintained tools
j75689 Dec 22, 2022
8362242
build: fix windows compilation failure
j75689 Dec 22, 2022
b34453e
docs: update the readme (#1266)
unclezoro Jan 5, 2023
d22153b
docs: minor fix about the readme (#1267)
unclezoro Jan 6, 2023
0f744c7
docs: minor fix on geth links (#1287)
weiihann Feb 1, 2023
176ab95
ci: disable CGO_ENABLED when building binary
j75689 Dec 28, 2022
bf68be2
dep: bump the version of several important library (#1274)
j75689 Feb 2, 2023
7674814
parlia : add a check for the length of extraData. (#1294)
zlacfzy Feb 2, 2023
e2e1147
mointor: implement double sign monitor (#1199)
j75689 Feb 3, 2023
c9bd677
dep: update tendermint to v0.31.14 (#1298)
j75689 Feb 3, 2023
e4575c5
eth/fetcher: fix re-queue failed issue;
galaio Feb 7, 2023
b3a20c7
fix: p2p sync with lagging peer (#1301)
setunapo Feb 9, 2023
8192eaf
release: prepare for release v1.1.19
j75689 Feb 13, 2023
eafd33c
fix: conflict with master branch
j75689 Feb 13, 2023
175db6b
Merge pull request #1310 from j75689/p_v1.1.19
j75689 Feb 13, 2023
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/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,6 @@ and help.

## Configuration, dependencies, and tests

Please see the [Developers' Guide](https://geth.ethereum.org/docs/developers/devguide)
Please see the [Developers' Guide](https://geth.ethereum.org/docs/developers)
for more details on configuring your environment, managing project dependencies
and testing procedures.
13 changes: 7 additions & 6 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,19 +15,19 @@ jobs:
unit-test:
strategy:
matrix:
go-version: [1.17.x]
os: [ubuntu-18.04]
go-version: [1.19.x]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Install Go
uses: actions/setup-go@v2
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}

- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v3

- uses: actions/cache@v2
- uses: actions/cache@v3
with:
# In order:
# * Module download cache
Expand All @@ -38,13 +38,14 @@ jobs:
~/go/pkg/mod
~/.cache/go-build
~/Library/Caches/go-build
%LocalAppData%\go-build
~\AppData\Local\go-build
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-

- name: Test Build
run: |
go mod download
make geth


2 changes: 1 addition & 1 deletion .github/workflows/commit-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
matrix:
node-version: [14.x]
os: [ubuntu-18.04]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
if: github.event_name == 'push'

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Build image
run: |
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/integration-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,12 @@ jobs:
truffle-test:
strategy:
matrix:
os: [ubuntu-18.04]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Truffle test
run: make truffle-test
run: |
make truffle-test
30 changes: 20 additions & 10 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,22 +12,22 @@ on:
- develop

jobs:
unit-test:
golang-lint:
strategy:
matrix:
go-version: [1.17.x]
os: [ubuntu-18.04]
go-version: [1.19.x]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Install Go
uses: actions/setup-go@v2
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}

- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v3

- uses: actions/cache@v2
- uses: actions/cache@v3
with:
# In order:
# * Module download cache
Expand All @@ -38,11 +38,21 @@ jobs:
~/go/pkg/mod
~/.cache/go-build
~/Library/Caches/go-build
%LocalAppData%\go-build
~\AppData\Local\go-build
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-

- name: Lint
run: |
make lint
- run: |
go mod download

- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
# Optional: version of golangci-lint to use in form of v1.2 or v1.2.3 or `latest` to use the latest version
version: v1.50
working-directory: ./
skip-pkg-cache: true
skip-cache: true
skip-build-cache: true
args: --timeout=99m --config ./.golangci.yml
Loading