Skip to content

Commit 23d2a91

Browse files
committed
Merge remote-tracking branch 'origin/release/1.6.0'
2 parents 530812f + fa7ff6a commit 23d2a91

File tree

56 files changed

+1569
-503
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+1569
-503
lines changed

.github/workflows/build-binary-for-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
- name: Setup Go
4545
uses: actions/setup-go@v3
4646
with:
47-
go-version: 1.22
47+
go-version: 1.23
4848
- name: Run GoReleaser
4949
uses: goreleaser/goreleaser-action@v4
5050
with:

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# specific language governing permissions and limitations
1616
# under the License.
1717

18-
FROM golang:1.22-alpine AS golang-builder
18+
FROM golang:1.23-alpine AS golang-builder
1919
LABEL maintainer="[email protected]"
2020

2121
ARG GOPROXY

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.PHONY: build clean ui
22

3-
VERSION=1.5.1
3+
VERSION=1.6.0
44
BIN=answer
55
DIR_SRC=./cmd/answer
66
DOCKER_CMD=docker

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ To learn more about the project, visit [answer.apache.org](https://answer.apache
2323
### Running with docker
2424

2525
```bash
26-
docker run -d -p 9080:80 -v answer-data:/data --name answer apache/answer:1.5.1
26+
docker run -d -p 9080:80 -v answer-data:/data --name answer apache/answer:1.6.0
2727
```
2828

2929
For more information, see [Installation](https://answer.apache.org/docs/installation).
@@ -40,7 +40,7 @@ You can also check out the [plugins here](https://answer.apache.org/plugins).
4040

4141
### Prerequisites
4242

43-
- Golang >= 1.22
43+
- Golang >= 1.23
4444
- Node.js >= 20
4545
- pnpm >= 9
4646
- [mockgen](https://github.com/uber-go/mock?tab=readme-ov-file#installation) >= 1.6.0

cmd/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ var (
4949
// Time is the build time of the project
5050
Time = ""
5151
// GoVersion is the go version of the project
52-
GoVersion = "1.22"
52+
GoVersion = "1.23"
5353
// log level
5454
logLevel = os.Getenv("LOG_LEVEL")
5555
// log path

cmd/wire_gen.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

configs/config.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,4 +40,5 @@ ui:
4040
public_url: '/'
4141
api_url: '/'
4242
base_url: ''
43+
api_base_url: ''
4344

0 commit comments

Comments
 (0)