Skip to content

Commit a833d06

Browse files
committed
Merge branch 'dev' (0.8.5-1)
2 parents ca3bf27 + 4b429a8 commit a833d06

File tree

24 files changed

+776
-1434
lines changed

24 files changed

+776
-1434
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.2
10+
GO_VERSION: 1.24.5
1111

1212
permissions:
1313
actions: write

.golangci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,12 @@ linters:
1818
- mnd # Too opinionated.
1919
- nestif # Too opinionated.
2020
- nlreturn # Too opinionated.
21+
- noinlineerr # Too opinionated.
2122
- promlinter # Too opinionated.
2223
- tagalign # Too opinionated.
2324
- varnamelen # Too opinionated.
2425
- wsl # Too opinionated.
26+
- wsl_v5 # Too opinionated.
2527
exclusions:
2628
presets:
2729
- comments

CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
1+
- 0.8.5-1 (2025-08-18):
2+
+ Updated dependencies.
3+
* DuckDB 1.2.2 ➙ 1.3.1
4+
* Go 1.24.2 ➙ 1.24.4
5+
- gin 1.10.0 ➙ 1.10.1
6+
- mcp-go 0.28.0 ➙ 0.33.0
7+
* Node.js 22.15.0 ➙ 24.3.0
8+
- @eslint/js 9.26.0 ➙ 9.30.1
9+
- @types/react 19.1.4 ➙ 19.1.8
10+
- @types/react-dom 19.1.3 ➙ 19.1.6
11+
- @vitejs/plugin-react-swc 3.9.0 ➙ 3.10.2
12+
- air-datepicker 3.5.3 ➙ 3.6.0
13+
- bootstrap 5.3.6 ➙ 5.3.7
14+
- eslint 9.26.0 ➙ 9.30.1
15+
- eslint-plugin-prettier 5.4.0 ➙ 5.5.1
16+
- globals 16.0.0 ➙ 16.3.0
17+
- prettier 3.5.3 ➙ 3.6.2
18+
- sass-embedded 1.89.0 ➙ 1.89.2
19+
- vite 6.3.5 ➙ 7.0.3
20+
- vite-plugin-static-copy 3.0.0 ➙ 3.1.0
21+
* uv 0.7.2 ➙ 0.7.19
22+
+ Fixed 'fpm' installation in RHEL8.
23+
124
- 0.8.4-1 (2025-05-19):
225
+ Updated dependencies.
326
* DuckDB 1.2.1 ➙ 1.2.2

Makefile

Lines changed: 3 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.4
6+
VERSION := 0.8.5
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.1.6; \
87+
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $$(go env GOPATH)/bin v2.3.0; \
8888
fi; \
8989
\
9090
echo '> Running golangci-lint...'; \
@@ -108,7 +108,7 @@ modernize:
108108
set -e; \
109109
\
110110
echo '> Running modernize...'; \
111-
go run golang.org/x/tools/gopls/internal/analysis/modernize/cmd/modernize@v0.18.1 -fix ./...; \
111+
go run golang.org/x/tools/gopls/internal/analysis/modernize/cmd/modernize@v0.20.0 -fix ./...; \
112112
)
113113

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

0 commit comments

Comments
 (0)