Skip to content

Commit 65dca2a

Browse files
committed
bump flake and go
1 parent 9fdde51 commit 65dca2a

File tree

7 files changed

+99
-94
lines changed

7 files changed

+99
-94
lines changed

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
.PHONY: format lint test test_vk test_more bench bench_vk check build_host build_host_vk build_arm64 docker_build docker_lint docker_test docker_test_more docker_bench clean run_confighelper run_camera run_videofile list
22

33
# https://hub.docker.com/_/debian
4-
DOCKER_BASE_IMAGE = debian:bullseye-20250811
4+
DOCKER_BASE_IMAGE = debian:bullseye-20251208
55
# https://go.dev/dl/
6-
GO_VERSION = 1.25.0
7-
GO_ARCHIVE_SHA256 = 2852af0cb20a13139b3448992e69b868e50ed0f8a1e5940ee1de9e19a123b613
6+
GO_VERSION = 1.25.5
7+
GO_ARCHIVE_SHA256 = 9e9b755d63b36acf30c12a9a3fc379243714c1c6d3dd72861da637f336ebb35b
88

99
DEFAULT: format build_host build_arm64
1010

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -318,6 +318,7 @@ For debugging and tweaking a [Prometheus](https://prometheus.io/)-compatible end
318318

319319
## TODOs
320320

321+
- [ ] Replace deprecated `s.cam.GetOutput()`
321322
- [ ] Fix false positives in darkness
322323
- [ ] Add machine learning to classify trains (MobileNet, EfficientNet, https://mediapipe-studio.webapps.google.com/demo/image_classifier)
323324
- [ ] Remote blob cleanup is broken due to FTP LIST being restricted to 99998 entries by remote - use sftp instead

flake.lock

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

flake.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
inputs = {
3-
nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.05";
3+
nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.11";
44
unstable.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
55
};
66

go.mod

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -10,21 +10,21 @@ tool (
1010
)
1111

1212
require (
13-
github.com/alexflint/go-arg v1.6.0
13+
github.com/alexflint/go-arg v1.6.1
1414
github.com/jlaffaye/ftp v0.2.0
1515
github.com/jmoiron/sqlx v1.4.0
1616
github.com/mattn/go-mjpeg v0.0.3
1717
github.com/mccutchen/palettor v1.0.0
1818
github.com/nfnt/resize v0.0.0-20180221191011-83c6a9932646
19-
github.com/prometheus/client_golang v1.23.0
19+
github.com/prometheus/client_golang v1.23.2
2020
github.com/rs/zerolog v1.34.0
2121
github.com/stretchr/testify v1.11.1
2222
github.com/u2takey/ffmpeg-go v0.5.0
23-
github.com/vladimirvivien/go4vl v0.0.5
24-
go-hep.org/x/hep v0.37.1
23+
github.com/vladimirvivien/go4vl v0.3.0
24+
go-hep.org/x/hep v0.38.1
2525
gonum.org/v1/gonum v0.16.0
2626
gonum.org/v1/plot v0.16.0
27-
modernc.org/sqlite v1.38.2
27+
modernc.org/sqlite v1.42.1
2828
)
2929

3030
require (
@@ -35,16 +35,15 @@ require (
3535
cloud.google.com/go/compute/metadata v0.6.0 // indirect
3636
cloud.google.com/go/longrunning v0.5.7 // indirect
3737
codeberg.org/go-fonts/liberation v0.5.0 // indirect
38-
codeberg.org/go-latex/latex v0.1.0 // indirect
38+
codeberg.org/go-latex/latex v0.2.0 // indirect
3939
codeberg.org/go-pdf/fpdf v0.11.1 // indirect
4040
codeberg.org/gonuts/binary v0.3.2 // indirect
41-
git.sr.ht/~sbinet/gg v0.6.0 // indirect
41+
git.sr.ht/~sbinet/gg v0.7.0 // indirect
4242
github.com/BurntSushi/toml v1.5.0 // indirect
4343
github.com/ajstarks/svgo v0.0.0-20211024235047-1546f124cd8b // indirect
4444
github.com/alexflint/go-scalar v1.2.0 // indirect
4545
github.com/aws/aws-sdk-go v1.55.8 // indirect
4646
github.com/beorn7/perks v1.0.1 // indirect
47-
github.com/campoy/embedmd v1.0.0 // indirect
4847
github.com/ccojocar/zxcvbn-go v1.0.4 // indirect
4948
github.com/cespare/xxhash/v2 v2.3.0 // indirect
5049
github.com/chavacava/garif v0.1.0 // indirect
@@ -72,12 +71,12 @@ require (
7271
github.com/mgechev/dots v0.0.0-20210922191527-e955255bf517 // indirect
7372
github.com/mgechev/revive v1.9.0 // indirect
7473
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
75-
github.com/ncruces/go-strftime v0.1.9 // indirect
74+
github.com/ncruces/go-strftime v1.0.0 // indirect
7675
github.com/olekukonko/tablewriter v0.0.5 // indirect
7776
github.com/pmezard/go-difflib v1.0.0 // indirect
7877
github.com/prometheus/client_model v0.6.2 // indirect
79-
github.com/prometheus/common v0.65.0 // indirect
80-
github.com/prometheus/procfs v0.17.0 // indirect
78+
github.com/prometheus/common v0.67.4 // indirect
79+
github.com/prometheus/procfs v0.19.2 // indirect
8180
github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect
8281
github.com/rivo/uniseg v0.4.7 // indirect
8382
github.com/securego/gosec/v2 v2.22.4 // indirect
@@ -90,28 +89,29 @@ require (
9089
go.opentelemetry.io/otel v1.35.0 // indirect
9190
go.opentelemetry.io/otel/metric v1.35.0 // indirect
9291
go.opentelemetry.io/otel/trace v1.35.0 // indirect
93-
golang.org/x/crypto v0.41.0 // indirect
94-
golang.org/x/exp v0.0.0-20250819193227-8b4c13bb791b // indirect
92+
go.yaml.in/yaml/v2 v2.4.3 // indirect
93+
golang.org/x/crypto v0.46.0 // indirect
94+
golang.org/x/exp v0.0.0-20251219203646-944ab1f22d93 // indirect
9595
golang.org/x/exp/typeparams v0.0.0-20231108232855-2478ac86f678 // indirect
96-
golang.org/x/image v0.30.0 // indirect
97-
golang.org/x/mod v0.27.0 // indirect
98-
golang.org/x/net v0.43.0 // indirect
99-
golang.org/x/oauth2 v0.30.0 // indirect
100-
golang.org/x/sync v0.16.0 // indirect
101-
golang.org/x/sys v0.35.0 // indirect
102-
golang.org/x/telemetry v0.0.0-20250807160809-1a19826ec488 // indirect
103-
golang.org/x/text v0.28.0 // indirect
96+
golang.org/x/image v0.34.0 // indirect
97+
golang.org/x/mod v0.31.0 // indirect
98+
golang.org/x/net v0.48.0 // indirect
99+
golang.org/x/oauth2 v0.32.0 // indirect
100+
golang.org/x/sync v0.19.0 // indirect
101+
golang.org/x/sys v0.39.0 // indirect
102+
golang.org/x/telemetry v0.0.0-20251203150158-8fff8a5912fc // indirect
103+
golang.org/x/text v0.32.0 // indirect
104104
golang.org/x/time v0.11.0 // indirect
105-
golang.org/x/tools v0.36.0 // indirect
105+
golang.org/x/tools v0.40.0 // indirect
106106
golang.org/x/vuln v1.1.4 // indirect
107107
google.golang.org/api v0.231.0 // indirect
108108
google.golang.org/genproto/googleapis/api v0.0.0-20250218202821-56aae31c358a // indirect
109109
google.golang.org/genproto/googleapis/rpc v0.0.0-20250425173222-7b384671a197 // indirect
110110
google.golang.org/grpc v1.72.0 // indirect
111-
google.golang.org/protobuf v1.36.8 // indirect
111+
google.golang.org/protobuf v1.36.11 // indirect
112112
gopkg.in/yaml.v3 v3.0.1 // indirect
113113
honnef.co/go/tools v0.6.1 // indirect
114-
modernc.org/libc v1.66.8 // indirect
114+
modernc.org/libc v1.67.2 // indirect
115115
modernc.org/mathutil v1.7.1 // indirect
116116
modernc.org/memory v1.11.0 // indirect
117117
)

0 commit comments

Comments
 (0)