Skip to content

Commit 71ec845

Browse files
committed
release v1.20.1 updates
1 parent f4c4ef7 commit 71ec845

File tree

6 files changed

+153
-131
lines changed

6 files changed

+153
-131
lines changed

CHANGELOG.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,32 @@
11
# Change Log
22

3+
## Version v1.20.1
4+
5+
> [!NOTE]
6+
> **Released 2025-01-16** - Please report issues via [github](https://github.com/ITRS-Group/cordial/issues) or the [ITRS Community Forum](https://community.itrsgroup.com/)
7+
8+
### Version v1.20.1 Changes
9+
10+
* Update Go to 1.23.4 and update all dependencies
11+
12+
### Version v1.20.1 Fixes
13+
14+
* `tools/geneos`
15+
16+
* Fix handling of older package directories that have `GA` or `RA` prefixes and sort packages by the numeric part only using semantic versioning rules.
17+
* Don't stop if there is no private key in a TLS bundle, it may be supplied in a separate argument
18+
* Do not overwrite existing root and signing certs and keys if they exist when running `geneos tls init`
19+
* Report if public key is missing or changes in user's `known_hosts` file
20+
* Always try to create the user config directory when writing configurations
21+
22+
* `gdna`
23+
24+
* Remove dependency on license token when listing unused plugins
25+
* Use timestamp of detailed report when updating summary report
26+
* Update include file with additional configuration
27+
28+
---
29+
330
## Version v1.20.0 - Codename "Leo"
431

532
> [!NOTE]

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Dockerfile to build cordial components and tar.gz files
22

3-
ARG GOVERSION=1.23.2
3+
ARG GOVERSION=1.23.4
44

55
# The bullseye image seems to offer the most compatibility, including
66
# libemail.so dependencies

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
> [!NOTE]
44
>
5-
> This is **Version v1.12.0** - Released 2024-12-13 - See [`CHANGELOG.md`](CHANGELOG.md) for more details.
5+
> This is **Version v1.20.1** - Released 2025-01-16 - See [`CHANGELOG.md`](CHANGELOG.md) for more details.
66
77
## Tools and Utilities
88

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v1.20.0
1+
v1.20.1

go.mod

Lines changed: 34 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/itrs-group/cordial
22

3-
go 1.23.2
3+
go 1.23.4
44

55
require (
66
github.com/Microsoft/go-winio v0.6.2
@@ -10,11 +10,11 @@ require (
1010
github.com/aymerick/douceur v0.2.0
1111
github.com/charmbracelet/glamour v0.8.0
1212
github.com/clbanning/mxj/v2 v2.7.0
13-
github.com/coreos/go-oidc/v3 v3.11.0
14-
github.com/docker/docker v27.4.0+incompatible
13+
github.com/coreos/go-oidc/v3 v3.12.0
14+
github.com/docker/docker v27.5.0+incompatible
1515
github.com/fsnotify/fsnotify v1.8.0
16-
github.com/go-co-op/gocron/v2 v2.13.0
17-
github.com/go-ldap/ldap/v3 v3.4.8
16+
github.com/go-co-op/gocron/v2 v2.14.2
17+
github.com/go-ldap/ldap/v3 v3.4.10
1818
github.com/go-mail/mail/v2 v2.3.0
1919
github.com/go-python/cpy3 v0.2.0
2020
github.com/google/go-querystring v1.1.0
@@ -25,9 +25,9 @@ require (
2525
github.com/hectane/go-acl v0.0.0-20230122075934-ca0b05cb1adb
2626
github.com/jcmturner/goidentity/v6 v6.0.1
2727
github.com/jcmturner/gokrb5/v8 v8.4.4
28-
github.com/jedib0t/go-pretty/v6 v6.6.4
28+
github.com/jedib0t/go-pretty/v6 v6.6.5
2929
github.com/kolo/xmlrpc v0.0.0-20220921171641-a4b6fa1dd06b
30-
github.com/labstack/echo/v4 v4.13.2
30+
github.com/labstack/echo/v4 v4.13.3
3131
github.com/lestrrat-go/strftime v1.1.0
3232
github.com/mackerelio/go-osstat v0.2.5
3333
github.com/maja42/goval v1.4.0
@@ -37,34 +37,34 @@ require (
3737
github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c
3838
github.com/pkg/sftp v1.13.7
3939
github.com/rs/zerolog v1.33.0
40-
github.com/schollz/progressbar/v3 v3.17.1
40+
github.com/schollz/progressbar/v3 v3.18.0
4141
github.com/skeema/knownhosts v1.3.0
42-
github.com/spf13/afero v1.11.0
42+
github.com/spf13/afero v1.12.0
4343
github.com/spf13/cobra v1.8.1
4444
github.com/spf13/pflag v1.0.5
4545
github.com/spf13/viper v1.19.0
4646
github.com/square/certigo v1.16.0
4747
github.com/thediveo/go-asciitree v1.0.2
48-
github.com/wneessen/go-mail v0.5.2
48+
github.com/wneessen/go-mail v0.6.1
4949
github.com/xuri/excelize/v2 v2.9.0
50-
golang.org/x/crypto v0.31.0
51-
golang.org/x/net v0.32.0
52-
golang.org/x/oauth2 v0.24.0
53-
golang.org/x/sys v0.28.0
54-
golang.org/x/term v0.27.0
50+
golang.org/x/crypto v0.32.0
51+
golang.org/x/net v0.34.0
52+
golang.org/x/oauth2 v0.25.0
53+
golang.org/x/sys v0.29.0
54+
golang.org/x/term v0.28.0
5555
gopkg.in/natefinch/lumberjack.v2 v2.2.1
5656
gopkg.in/yaml.v3 v3.0.1
5757
)
5858

5959
require (
6060
github.com/Azure/go-ntlmssp v0.0.0-20221128193559-754e69321358 // indirect
61-
github.com/PuerkitoBio/goquery v1.10.0 // indirect
62-
github.com/alecthomas/chroma/v2 v2.14.0 // indirect
63-
github.com/andybalholm/cascadia v1.3.2 // indirect
61+
github.com/PuerkitoBio/goquery v1.10.1 // indirect
62+
github.com/alecthomas/chroma/v2 v2.15.0 // indirect
63+
github.com/andybalholm/cascadia v1.3.3 // indirect
6464
github.com/awnumar/memcall v0.4.0 // indirect
6565
github.com/aymanbagabas/go-osc52/v2 v2.0.1 // indirect
6666
github.com/charmbracelet/lipgloss v1.0.0 // indirect
67-
github.com/charmbracelet/x/ansi v0.6.0 // indirect
67+
github.com/charmbracelet/x/ansi v0.7.0 // indirect
6868
github.com/containerd/log v0.1.0 // indirect
6969
github.com/distribution/reference v0.6.0 // indirect
7070
github.com/dlclark/regexp2 v1.11.4 // indirect
@@ -86,18 +86,18 @@ require (
8686
github.com/jcmturner/dnsutils/v2 v2.0.0 // indirect
8787
github.com/jcmturner/gofork v1.7.6 // indirect
8888
github.com/jcmturner/rpc/v2 v2.0.3 // indirect
89-
github.com/jonboulle/clockwork v0.4.0 // indirect
89+
github.com/jonboulle/clockwork v0.5.0 // indirect
9090
github.com/kr/fs v0.1.0 // indirect
9191
github.com/labstack/gommon v0.4.2 // indirect
9292
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
9393
github.com/magiconair/properties v1.8.9 // indirect
94-
github.com/mattn/go-colorable v0.1.13 // indirect
94+
github.com/mattn/go-colorable v0.1.14 // indirect
9595
github.com/mattn/go-isatty v0.0.20 // indirect
9696
github.com/mattn/go-runewidth v0.0.16 // indirect
9797
github.com/microcosm-cc/bluemonday v1.0.27 // indirect
9898
github.com/mitchellh/colorstring v0.0.0-20190213212951-d06e56a500db // indirect
9999
github.com/moby/docker-image-spec v1.3.1 // indirect
100-
github.com/moby/term v0.5.0 // indirect
100+
github.com/moby/term v0.5.2 // indirect
101101
github.com/mohae/deepcopy v0.0.0-20170929034955-c48cc78d4826 // indirect
102102
github.com/morikuni/aec v1.0.0 // indirect
103103
github.com/muesli/reflow v0.3.0 // indirect
@@ -110,28 +110,28 @@ require (
110110
github.com/richardlehane/msoleps v1.0.4 // indirect
111111
github.com/rivo/uniseg v0.4.7 // indirect
112112
github.com/robfig/cron/v3 v3.0.1 // indirect
113-
github.com/rogpeppe/go-internal v1.13.1 // indirect
114-
github.com/sagikazarmark/locafero v0.6.0 // indirect
113+
github.com/sagikazarmark/locafero v0.7.0 // indirect
115114
github.com/sagikazarmark/slog-shim v0.1.0 // indirect
116115
github.com/sourcegraph/conc v0.3.0 // indirect
117-
github.com/spf13/cast v1.7.0 // indirect
116+
github.com/spf13/cast v1.7.1 // indirect
118117
github.com/subosito/gotenv v1.6.0 // indirect
119118
github.com/valyala/bytebufferpool v1.0.0 // indirect
120119
github.com/valyala/fasttemplate v1.2.2 // indirect
121120
github.com/xuri/efp v0.0.0-20241211021726-c4e992084aa6 // indirect
122-
github.com/xuri/nfp v0.0.0-20240318013403-ab9948c2c4a7 // indirect
121+
github.com/xuri/nfp v0.0.0-20250111060730-82a408b9aa71 // indirect
123122
github.com/yuin/goldmark v1.7.8 // indirect
124123
github.com/yuin/goldmark-emoji v1.0.4 // indirect
125-
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.57.0 // indirect
126-
go.opentelemetry.io/otel v1.32.0 // indirect
127-
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.32.0 // indirect
128-
go.opentelemetry.io/otel/metric v1.32.0 // indirect
129-
go.opentelemetry.io/otel/sdk v1.32.0 // indirect
130-
go.opentelemetry.io/otel/trace v1.32.0 // indirect
124+
go.opentelemetry.io/auto/sdk v1.1.0 // indirect
125+
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.58.0 // indirect
126+
go.opentelemetry.io/otel v1.33.0 // indirect
127+
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.33.0 // indirect
128+
go.opentelemetry.io/otel/metric v1.33.0 // indirect
129+
go.opentelemetry.io/otel/sdk v1.33.0 // indirect
130+
go.opentelemetry.io/otel/trace v1.33.0 // indirect
131131
go.uber.org/multierr v1.11.0 // indirect
132-
golang.org/x/exp v0.0.0-20241210194714-1829a127f884 // indirect
132+
golang.org/x/exp v0.0.0-20250106191152-7588d65b2ba8 // indirect
133133
golang.org/x/text v0.21.0 // indirect
134-
golang.org/x/time v0.8.0 // indirect
134+
golang.org/x/time v0.9.0 // indirect
135135
gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc // indirect
136136
gopkg.in/ini.v1 v1.67.0 // indirect
137137
gopkg.in/mail.v2 v2.3.1 // indirect

0 commit comments

Comments
 (0)