Skip to content

Commit 4701030

Browse files
committed
update dependencies
1 parent 52fab1b commit 4701030

File tree

4 files changed

+91
-99
lines changed

4 files changed

+91
-99
lines changed

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
BSD 3-Clause License
22

3-
Copyright (c) 2016-2024, Gerasimos (Makis) Maropoulos
3+
Copyright (c) 2016-2025, Gerasimos (Makis) Maropoulos
44
All rights reserved.
55

66
Redistribution and use in source and binary forms, with or without

README.md

+1-5
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
1-
# Happy New Year 🎅
2-
31
Dear Iris Community,
42

5-
You might have noticed a recent lull in activity on the Iris repository, but this silence has a purpose. For the past **6-7 months**, I've been working diligently on the next major release of Iris, fully embracing **Generics** and introducing a suite of **new features**, **enhancements**, and **optimizations**. My **8 years** of Go experience guide this evolution, ensuring Iris grows with your needs.
6-
7-
As we welcome **2025**, let's unite in peace, celebrate good health, and look forward to brighter horizons. Thank you for your continued support and patience. May this year bring new beginnings for us all.
3+
You might have noticed a recent lull in activity on the Iris repository, but this silence has a purpose. For the past **7-8 months**, I've been working diligently on the next major release of Iris, fully embracing **Generics** and introducing a suite of **new features**, **enhancements**, and **optimizations**. My **8 years** of Go experience guide this evolution, ensuring Iris grows with your needs.
84

95
Warm regards,<br/>
106
Gerasimos (Makis) Maropoulos

go.mod

+29-28
Original file line numberDiff line numberDiff line change
@@ -11,19 +11,19 @@ require (
1111
github.com/Shopify/goreferrer v0.0.0-20240724165105-aceaa0259138
1212
github.com/andybalholm/brotli v1.1.1
1313
github.com/blang/semver/v4 v4.0.0
14-
github.com/dgraph-io/badger/v4 v4.5.0
14+
github.com/dgraph-io/badger/v4 v4.5.1
1515
github.com/fatih/structs v1.1.0
1616
github.com/flosch/pongo2/v4 v4.0.2
1717
github.com/golang/snappy v0.0.4
18-
github.com/gomarkdown/markdown v0.0.0-20241205020045-f7e15b2f3e62
18+
github.com/gomarkdown/markdown v0.0.0-20250207164621-7a1f277a159e
1919
github.com/google/uuid v1.6.0
2020
github.com/gorilla/securecookie v1.1.2
2121
github.com/iris-contrib/httpexpect/v2 v2.15.2
22-
github.com/iris-contrib/schema v0.0.6
22+
github.com/iris-contrib/schema v0.0.7-0.20250208085038-f68827b0bbfa
2323
github.com/json-iterator/go v1.1.12
2424
github.com/kataras/blocks v0.0.8
2525
github.com/kataras/golog v0.1.12
26-
github.com/kataras/jwt v0.1.12
26+
github.com/kataras/jwt v0.1.14
2727
github.com/kataras/neffos v0.0.24-0.20241114125147-07c1e09b1919
2828
github.com/kataras/pio v0.0.14-0.20240707171706-2005199e2703
2929
github.com/kataras/sitemap v0.0.6
@@ -35,17 +35,17 @@ require (
3535
github.com/redis/go-redis/v9 v9.7.0
3636
github.com/schollz/closestmatch v2.1.0+incompatible
3737
github.com/shirou/gopsutil/v3 v3.24.5
38-
github.com/tdewolff/minify/v2 v2.21.2
38+
github.com/tdewolff/minify/v2 v2.21.3
3939
github.com/vmihailenco/msgpack/v5 v5.4.1
4040
github.com/yosssi/ace v0.0.5
41-
go.etcd.io/bbolt v1.3.11
42-
golang.org/x/crypto v0.31.0
43-
golang.org/x/exp v0.0.0-20241217172543-b2144cdd0a67
44-
golang.org/x/net v0.33.0
45-
golang.org/x/sys v0.28.0
46-
golang.org/x/text v0.21.0
47-
golang.org/x/time v0.8.0
48-
google.golang.org/protobuf v1.36.1
41+
go.etcd.io/bbolt v1.4.0
42+
golang.org/x/crypto v0.33.0
43+
golang.org/x/exp v0.0.0-20250207012021-f9890c6ad9f3
44+
golang.org/x/net v0.34.0
45+
golang.org/x/sys v0.30.0
46+
golang.org/x/text v0.22.0
47+
golang.org/x/time v0.10.0
48+
google.golang.org/protobuf v1.36.5
4949
gopkg.in/ini.v1 v1.67.0
5050
gopkg.in/yaml.v3 v3.0.1
5151
)
@@ -56,48 +56,49 @@ require (
5656
github.com/aymerick/douceur v0.2.0 // indirect
5757
github.com/cespare/xxhash/v2 v2.3.0 // indirect
5858
github.com/davecgh/go-spew v1.1.1 // indirect
59-
github.com/dgraph-io/ristretto/v2 v2.0.1 // indirect
59+
github.com/dgraph-io/ristretto/v2 v2.1.0 // indirect
6060
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
6161
github.com/dustin/go-humanize v1.0.1 // indirect
62-
github.com/fatih/color v1.18.0 // indirect
63-
github.com/go-ole/go-ole v1.3.0 // indirect
62+
github.com/fatih/color v1.15.0 // indirect
63+
github.com/go-ole/go-ole v1.2.6 // indirect
6464
github.com/gobwas/glob v0.2.3 // indirect
6565
github.com/gobwas/httphead v0.1.0 // indirect
6666
github.com/gobwas/pool v0.2.1 // indirect
6767
github.com/gobwas/ws v1.4.0 // indirect
68-
github.com/golang/groupcache v0.0.0-20241129210726-2c02b8208cf8 // indirect
68+
github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e // indirect
6969
github.com/google/flatbuffers v24.12.23+incompatible // indirect
7070
github.com/google/go-querystring v1.1.0 // indirect
7171
github.com/gorilla/css v1.0.1 // indirect
7272
github.com/gorilla/websocket v1.5.3 // indirect
7373
github.com/imkira/go-interpol v1.1.0 // indirect
7474
github.com/josharian/intern v1.0.0 // indirect
75-
github.com/lufia/plan9stats v0.0.0-20240909124753-873cd0166683 // indirect
75+
github.com/kr/text v0.2.0 // indirect
76+
github.com/lufia/plan9stats v0.0.0-20211012122336-39d0f177ccd0 // indirect
7677
github.com/mattn/go-colorable v0.1.13 // indirect
77-
github.com/mattn/go-isatty v0.0.20 // indirect
78+
github.com/mattn/go-isatty v0.0.19 // indirect
7879
github.com/mediocregopher/radix/v3 v3.8.1 // indirect
7980
github.com/mitchellh/go-wordwrap v1.0.1 // indirect
80-
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
81+
github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421 // indirect
8182
github.com/modern-go/reflect2 v1.0.2 // indirect
82-
github.com/nats-io/nats.go v1.38.0 // indirect
83-
github.com/nats-io/nkeys v0.4.9 // indirect
83+
github.com/nats-io/nats.go v1.37.0 // indirect
84+
github.com/nats-io/nkeys v0.4.7 // indirect
8485
github.com/nats-io/nuid v1.0.1 // indirect
8586
github.com/nxadm/tail v1.4.11 // indirect
8687
github.com/pkg/errors v0.9.1 // indirect
8788
github.com/pmezard/go-difflib v1.0.0 // indirect
88-
github.com/power-devops/perfstat v0.0.0-20240221224432-82ca36839d55 // indirect
89+
github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c // indirect
8990
github.com/russross/blackfriday/v2 v2.1.0 // indirect
9091
github.com/sanity-io/litter v1.5.5 // indirect
91-
github.com/sergi/go-diff v1.3.1 // indirect
92+
github.com/sergi/go-diff v1.0.0 // indirect
9293
github.com/shoenig/go-m1cpu v0.1.6 // indirect
93-
github.com/sirupsen/logrus v1.9.3 // indirect
94+
github.com/sirupsen/logrus v1.8.1 // indirect
9495
github.com/stretchr/testify v1.10.0 // indirect
9596
github.com/tdewolff/parse/v2 v2.7.19 // indirect
96-
github.com/tklauser/go-sysconf v0.3.14 // indirect
97-
github.com/tklauser/numcpus v0.9.0 // indirect
97+
github.com/tklauser/go-sysconf v0.3.12 // indirect
98+
github.com/tklauser/numcpus v0.6.1 // indirect
9899
github.com/valyala/bytebufferpool v1.0.0 // indirect
99100
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect
100-
github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb // indirect
101+
github.com/xeipuuv/gojsonpointer v0.0.0-20180127040702-4e3ac2762d5f // indirect
101102
github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect
102103
github.com/xeipuuv/gojsonschema v1.2.0 // indirect
103104
github.com/yalp/jsonpath v0.0.0-20180802001716-5cc68e5049a0 // indirect

0 commit comments

Comments
 (0)