Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ env:
# go needs absolute directories, using the $HOME variable doesn't work here.
GOPATH: /home/runner/work/go

GO_VERSION: '1.23.12'
GO_VERSION: '1.24.6'

LITD_ITEST_BRANCH: 'tapd-main-branch'

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ defaults:
shell: bash

env:
GO_VERSION: 1.23.12
GO_VERSION: 1.24.6

jobs:
main:
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.23.12-alpine as builder
FROM golang:1.24.6-alpine as builder

# Force Go to use the cgo based DNS resolver. This is required to ensure DNS
# queries required to connect to linked containers succeed.
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ DOCKER_TOOLS = docker run \
-v $(shell bash -c "mkdir -p /tmp/go-lint-cache; echo /tmp/go-lint-cache"):/root/.cache/golangci-lint \
-v $$(pwd):/build taproot-assets-tools

GO_VERSION = 1.23.12
GO_VERSION = 1.24.6

GREEN := "\\033[0;32m"
NC := "\\033[0m"
Expand Down
2 changes: 1 addition & 1 deletion dev.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.23.12 as builder
FROM golang:1.24.6 as builder

WORKDIR /app

Expand Down
2 changes: 1 addition & 1 deletion docs/examples/basic-price-oracle/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module basic-price-oracle

go 1.23.12
go 1.24.6

// We want to format raw bytes as hex instead of base64. The forked version
// allows us to specify that as an option.
Expand Down
11 changes: 6 additions & 5 deletions docs/release-notes/release-notes-0.7.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -238,6 +238,12 @@
`ChainPorter` state machine by removing a goroutine and simplifying
event emission. Fixes an itest flake.

- [The Golang version used was bumped to `v1.23.12` to fix a potential issue
with the SQL API](https://github.com/lightninglabs/taproot-assets/pull/1713).

- [The Golang version used was bumped to `v1.24.6` in order to keep up with the
dependencies (LND).](https://github.com/lightninglabs/taproot-assets/pull/1815)

## Breaking Changes

## Performance Improvements
Expand All @@ -252,11 +258,6 @@

## Database

## Code Health

- [The Golang version used was bumped to `v1.23.12` to fix a potential issue
with the SQL API](https://github.com/lightninglabs/taproot-assets/pull/1713).

## Tooling and Documentation

- [Two new sequence diagrams were
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/lightninglabs/taproot-assets

go 1.23.12
go 1.24.6

require (
github.com/btcsuite/btcd v0.24.3-0.20250318170759-4f4ea81776d6
Expand Down
2 changes: 1 addition & 1 deletion internal/test/copy.go
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ func checkAliasing(t *testing.T, debug, strict bool, f1, f2 reflect.Value,
"(shared %s)", path, f1.Kind())

if strict {
t.Fatalf(msg)
t.Fatal(msg)
}

if debug {
Expand Down
2 changes: 1 addition & 1 deletion itest/loadtest/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.23.12 as builder
FROM golang:1.24.6 as builder

WORKDIR /app

Expand Down
2 changes: 1 addition & 1 deletion make/builder.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.23.12-bookworm
FROM golang:1.24.6-bookworm

MAINTAINER Olaoluwa Osuntokun <[email protected]>

Expand Down
2 changes: 1 addition & 1 deletion taprpc/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.23.12-bookworm
FROM golang:1.24.6-bookworm

RUN apt-get update && apt-get install -y \
git \
Expand Down
2 changes: 1 addition & 1 deletion taprpc/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/lightninglabs/taproot-assets/taprpc

go 1.23.12
go 1.24.6

require (
github.com/grpc-ecosystem/grpc-gateway/v2 v2.20.0
Expand Down
2 changes: 1 addition & 1 deletion tools/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.24.5-bookworm
FROM golang:1.24.6-bookworm

RUN apt-get update && apt-get install -y git
ENV GOCACHE=/tmp/build/.cache
Expand Down
2 changes: 1 addition & 1 deletion tools/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/lightninglabs/taproot-assets/tools

go 1.24.5
go 1.24.6

require (
github.com/btcsuite/btcd v0.24.2
Expand Down
Loading