Skip to content

Commit 73b1759

Browse files
chore(release): update changelog and bump version to 1.5.1 (#1180)
* build(deps): Bump docker/login-action from 3.5.0 to 3.6.0 (#1178) Bumps [docker/login-action](https://github.com/docker/login-action) from 3.5.0 to 3.6.0. - [Release notes](https://github.com/docker/login-action/releases) - [Commits](docker/login-action@v3.5.0...v3.6.0) --- updated-dependencies: - dependency-name: docker/login-action dependency-version: 3.6.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * fix(build): blockstore.db permission denied after upgrade (#1179) * chore(release): update changelog and version to 1.5.0 * fix(build): blockstore.db permission denied after upgrade * chore: remove debug * chore(release): update changelog and version to 1.5.1 --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 898a29f commit 73b1759

File tree

4 files changed

+20
-4
lines changed

4 files changed

+20
-4
lines changed

.github/workflows/docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040

4141
- name: Login to DockerHub
4242
if: ${{ github.event_name != 'pull_request' }}
43-
uses: docker/login-action@v3.5.0
43+
uses: docker/login-action@v3.6.0
4444
with:
4545
username: ${{ secrets.DOCKERHUB_USERNAME }}
4646
password: ${{ secrets.DOCKERHUB_TOKEN }}

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
## [1.5.1] - 2025-10-01
2+
3+
### Bug Fixes
4+
5+
- Blockstore.db permission denied after upgrade (#1179)
6+
7+
### Build
8+
9+
- Bump docker/login-action from 3.5.0 to 3.6.0 (#1178)
10+
111
## [1.5.0] - 2025-09-24
212

313
### Bug Fixes
@@ -18,6 +28,7 @@
1828
- Remove shumkov from CODEOWNERS (#1119)
1929
- Update secp256k1 to use new version of btcsuite/btcd/btcec/v2 (#1118)
2030
- Update changelog and version to 1.5.0-dev.3 (#1140)
31+
- Update changelog and version to 1.5.0
2132

2233
### Build
2334

DOCKER/Dockerfile

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,12 +71,17 @@ ENV TMHOME=/tenderdash
7171
# jq and curl used for extracting `pub_key` from private validator while
7272
# deploying tenderdash with Kubernetes. It is nice to have bash so the users
7373
# could execute bash commands.
74+
#
75+
# Note: Alpine 3.21 has klogd user occupying UID 100, which we need for backwards-compatibility with pre-3.21 versions.
76+
# We delete that user as a workaround and reassign its UID to our tmuser user.
7477
RUN apk update && \
7578
apk upgrade && \
7679
apk --no-cache add curl jq bash gmp libsodium-dev libstdc++ libpcap && \
7780
rm -rf /var/cache/apk/* && \
78-
addgroup tmuser && \
79-
adduser -S -G tmuser tmuser -h "$TMHOME"
81+
addgroup --gid 1000 tmuser && \
82+
deluser klogd && \
83+
adduser -u 100 -S -G tmuser tmuser -h "$TMHOME"
84+
8085

8186
# Run the container with tmuser by default. (UID=100, GID=1000)
8287
USER tmuser

version/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ var (
99
const (
1010
// TMVersionDefault is the used as the fallback version for Tenderdash
1111
// when not using git describe. It is formatted with semantic versioning.
12-
TMVersionDefault = "1.5.0"
12+
TMVersionDefault = "1.5.1"
1313
// ABCISemVer is the semantic version of the ABCI library
1414
ABCISemVer = "1.3.0"
1515

0 commit comments

Comments
 (0)