Skip to content

Commit ca3bf27

Browse files
committed
Merge branch 'dev' (0.8.4-1)
2 parents c21e50e + c3b0738 commit ca3bf27

File tree

14 files changed

+1301
-735
lines changed

14 files changed

+1301
-735
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
- cron: 0 5 * * 1
88

99
env:
10-
GO_VERSION: 1.24.1
10+
GO_VERSION: 1.24.2
1111

1212
permissions:
1313
actions: write

.golangci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ linters:
1111
- exhaustruct # Too opinionated.
1212
- forbidigo # Too opinionated.
1313
- forcetypeassert # Too opinionated.
14+
- funcorder # Too opinionated.
1415
- funlen # Too opinionated.
1516
- gochecknoinits # We do use init functions.
1617
- gomoddirectives # We do local replacements.

CHANGELOG.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,28 @@
1+
- 0.8.4-1 (2025-05-19):
2+
+ Updated dependencies.
3+
* DuckDB 1.2.1 ➙ 1.2.2
4+
* FPM 1.15.1 ➙ 1.16.0
5+
* Go 1.24.1 ➙ 1.24.2
6+
- golangci-lint 2.0.2 ➙ 2.1.6
7+
- mcp-go 0.22.0 ➙ 0.28.0
8+
- sys 0.32.0 ➙ 0.33.0
9+
* Node.js 22.14.0 ➙ 22.15.0
10+
- @eslint/js 9.25.1 ➙ 9.26.0
11+
- @types/react 19.0.12 ➙ 19.1.4
12+
- @types/react-dom 19.0.4 ➙ 19.1.3
13+
- @vitejs/plugin-react-swc 3.8.1 ➙ 3.9.0
14+
- bootstrap 5.3.5 ➙ 5.3.6
15+
- eslint 9.23.0 ➙ 9.26.0
16+
- eslint-config-prettier 10.1.2 ➙ 10.1.5
17+
- eslint-plugin-prettier 5.2.6 ➙ 5.4.0
18+
- eslint-plugin-react 7.37.4 ➙ 7.37.5
19+
- eslint-plugin-react-refresh 0.4.19 ➙ 0.4.20
20+
- sass-embedded 1.86.3 ➙ 1.89.0
21+
- vite 6.3.2 ➙ 6.3.5
22+
- vite-plugin-static-copy 2.3.1 ➙ 3.0.0
23+
* uv 0.6.0 ➙ 0.7.2
24+
+ Fixed filter history UI.
25+
126
- 0.8.3-1 (2025-04-23):
227
+ Enabled MCP keep-alive mechanism to enhance connection stability.
328

Makefile

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ SHELL := /bin/bash
33
ROOT := $(abspath $(dir $(lastword $(MAKEFILE_LIST))))
44
UMASK := 022
55

6-
VERSION := 0.8.3
6+
VERSION := 0.8.4
77
ITERATION := 1
88
REVISION := $(shell cd '$(ROOT)' && git rev-parse --short HEAD)
99
ENVIRONMENT ?= production
@@ -84,7 +84,7 @@ lint:
8484
\
8585
if [ ! -f "$$HOME/go/bin/golangci-lint" ]; then \
8686
echo '> Installing golangci-lint...'; \
87-
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $$(go env GOPATH)/bin v2.0.2; \
87+
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $$(go env GOPATH)/bin v2.1.6; \
8888
fi; \
8989
\
9090
echo '> Running golangci-lint...'; \
@@ -101,13 +101,14 @@ vet:
101101
go vet ./...; \
102102
)
103103

104+
# See: https://github.com/golang/go/issues/73279.
104105
.PHONY: modernize
105106
modernize:
106107
@( \
107108
set -e; \
108109
\
109110
echo '> Running modernize...'; \
110-
go tool modernize -fix ./...; \
111+
go run golang.org/x/tools/gopls/internal/analysis/modernize/cmd/modernize@v0.18.1 -fix ./...; \
111112
)
112113

113114
TEST_PACKAGES ?= '$(ROOT)/...'

assets/static/app.js

Lines changed: 49 additions & 45 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/static/styles.css

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)