Skip to content

Commit

Permalink
release v1.20.1 updates
Browse files Browse the repository at this point in the history
  • Loading branch information
pgalbavy-itrs committed Jan 16, 2025
1 parent f4c4ef7 commit 71ec845
Show file tree
Hide file tree
Showing 6 changed files with 153 additions and 131 deletions.
27 changes: 27 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,32 @@
# Change Log

## Version v1.20.1

> [!NOTE]
> **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/)
### Version v1.20.1 Changes

* Update Go to 1.23.4 and update all dependencies

### Version v1.20.1 Fixes

* `tools/geneos`

* Fix handling of older package directories that have `GA` or `RA` prefixes and sort packages by the numeric part only using semantic versioning rules.
* Don't stop if there is no private key in a TLS bundle, it may be supplied in a separate argument
* Do not overwrite existing root and signing certs and keys if they exist when running `geneos tls init`
* Report if public key is missing or changes in user's `known_hosts` file
* Always try to create the user config directory when writing configurations

* `gdna`

* Remove dependency on license token when listing unused plugins
* Use timestamp of detailed report when updating summary report
* Update include file with additional configuration

---

## Version v1.20.0 - Codename "Leo"

> [!NOTE]
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Dockerfile to build cordial components and tar.gz files

ARG GOVERSION=1.23.2
ARG GOVERSION=1.23.4

# The bullseye image seems to offer the most compatibility, including
# libemail.so dependencies
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

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

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v1.20.0
v1.20.1
68 changes: 34 additions & 34 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/itrs-group/cordial

go 1.23.2
go 1.23.4

require (
github.com/Microsoft/go-winio v0.6.2
Expand All @@ -10,11 +10,11 @@ require (
github.com/aymerick/douceur v0.2.0
github.com/charmbracelet/glamour v0.8.0
github.com/clbanning/mxj/v2 v2.7.0
github.com/coreos/go-oidc/v3 v3.11.0
github.com/docker/docker v27.4.0+incompatible
github.com/coreos/go-oidc/v3 v3.12.0
github.com/docker/docker v27.5.0+incompatible
github.com/fsnotify/fsnotify v1.8.0
github.com/go-co-op/gocron/v2 v2.13.0
github.com/go-ldap/ldap/v3 v3.4.8
github.com/go-co-op/gocron/v2 v2.14.2
github.com/go-ldap/ldap/v3 v3.4.10
github.com/go-mail/mail/v2 v2.3.0
github.com/go-python/cpy3 v0.2.0
github.com/google/go-querystring v1.1.0
Expand All @@ -25,9 +25,9 @@ require (
github.com/hectane/go-acl v0.0.0-20230122075934-ca0b05cb1adb
github.com/jcmturner/goidentity/v6 v6.0.1
github.com/jcmturner/gokrb5/v8 v8.4.4
github.com/jedib0t/go-pretty/v6 v6.6.4
github.com/jedib0t/go-pretty/v6 v6.6.5
github.com/kolo/xmlrpc v0.0.0-20220921171641-a4b6fa1dd06b
github.com/labstack/echo/v4 v4.13.2
github.com/labstack/echo/v4 v4.13.3
github.com/lestrrat-go/strftime v1.1.0
github.com/mackerelio/go-osstat v0.2.5
github.com/maja42/goval v1.4.0
Expand All @@ -37,34 +37,34 @@ require (
github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c
github.com/pkg/sftp v1.13.7
github.com/rs/zerolog v1.33.0
github.com/schollz/progressbar/v3 v3.17.1
github.com/schollz/progressbar/v3 v3.18.0
github.com/skeema/knownhosts v1.3.0
github.com/spf13/afero v1.11.0
github.com/spf13/afero v1.12.0
github.com/spf13/cobra v1.8.1
github.com/spf13/pflag v1.0.5
github.com/spf13/viper v1.19.0
github.com/square/certigo v1.16.0
github.com/thediveo/go-asciitree v1.0.2
github.com/wneessen/go-mail v0.5.2
github.com/wneessen/go-mail v0.6.1
github.com/xuri/excelize/v2 v2.9.0
golang.org/x/crypto v0.31.0
golang.org/x/net v0.32.0
golang.org/x/oauth2 v0.24.0
golang.org/x/sys v0.28.0
golang.org/x/term v0.27.0
golang.org/x/crypto v0.32.0
golang.org/x/net v0.34.0
golang.org/x/oauth2 v0.25.0
golang.org/x/sys v0.29.0
golang.org/x/term v0.28.0
gopkg.in/natefinch/lumberjack.v2 v2.2.1
gopkg.in/yaml.v3 v3.0.1
)

require (
github.com/Azure/go-ntlmssp v0.0.0-20221128193559-754e69321358 // indirect
github.com/PuerkitoBio/goquery v1.10.0 // indirect
github.com/alecthomas/chroma/v2 v2.14.0 // indirect
github.com/andybalholm/cascadia v1.3.2 // indirect
github.com/PuerkitoBio/goquery v1.10.1 // indirect
github.com/alecthomas/chroma/v2 v2.15.0 // indirect
github.com/andybalholm/cascadia v1.3.3 // indirect
github.com/awnumar/memcall v0.4.0 // indirect
github.com/aymanbagabas/go-osc52/v2 v2.0.1 // indirect
github.com/charmbracelet/lipgloss v1.0.0 // indirect
github.com/charmbracelet/x/ansi v0.6.0 // indirect
github.com/charmbracelet/x/ansi v0.7.0 // indirect
github.com/containerd/log v0.1.0 // indirect
github.com/distribution/reference v0.6.0 // indirect
github.com/dlclark/regexp2 v1.11.4 // indirect
Expand All @@ -86,18 +86,18 @@ require (
github.com/jcmturner/dnsutils/v2 v2.0.0 // indirect
github.com/jcmturner/gofork v1.7.6 // indirect
github.com/jcmturner/rpc/v2 v2.0.3 // indirect
github.com/jonboulle/clockwork v0.4.0 // indirect
github.com/jonboulle/clockwork v0.5.0 // indirect
github.com/kr/fs v0.1.0 // indirect
github.com/labstack/gommon v0.4.2 // indirect
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
github.com/magiconair/properties v1.8.9 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-colorable v0.1.14 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/mattn/go-runewidth v0.0.16 // indirect
github.com/microcosm-cc/bluemonday v1.0.27 // indirect
github.com/mitchellh/colorstring v0.0.0-20190213212951-d06e56a500db // indirect
github.com/moby/docker-image-spec v1.3.1 // indirect
github.com/moby/term v0.5.0 // indirect
github.com/moby/term v0.5.2 // indirect
github.com/mohae/deepcopy v0.0.0-20170929034955-c48cc78d4826 // indirect
github.com/morikuni/aec v1.0.0 // indirect
github.com/muesli/reflow v0.3.0 // indirect
Expand All @@ -110,28 +110,28 @@ require (
github.com/richardlehane/msoleps v1.0.4 // indirect
github.com/rivo/uniseg v0.4.7 // indirect
github.com/robfig/cron/v3 v3.0.1 // indirect
github.com/rogpeppe/go-internal v1.13.1 // indirect
github.com/sagikazarmark/locafero v0.6.0 // indirect
github.com/sagikazarmark/locafero v0.7.0 // indirect
github.com/sagikazarmark/slog-shim v0.1.0 // indirect
github.com/sourcegraph/conc v0.3.0 // indirect
github.com/spf13/cast v1.7.0 // indirect
github.com/spf13/cast v1.7.1 // indirect
github.com/subosito/gotenv v1.6.0 // indirect
github.com/valyala/bytebufferpool v1.0.0 // indirect
github.com/valyala/fasttemplate v1.2.2 // indirect
github.com/xuri/efp v0.0.0-20241211021726-c4e992084aa6 // indirect
github.com/xuri/nfp v0.0.0-20240318013403-ab9948c2c4a7 // indirect
github.com/xuri/nfp v0.0.0-20250111060730-82a408b9aa71 // indirect
github.com/yuin/goldmark v1.7.8 // indirect
github.com/yuin/goldmark-emoji v1.0.4 // indirect
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.57.0 // indirect
go.opentelemetry.io/otel v1.32.0 // indirect
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.32.0 // indirect
go.opentelemetry.io/otel/metric v1.32.0 // indirect
go.opentelemetry.io/otel/sdk v1.32.0 // indirect
go.opentelemetry.io/otel/trace v1.32.0 // indirect
go.opentelemetry.io/auto/sdk v1.1.0 // indirect
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.58.0 // indirect
go.opentelemetry.io/otel v1.33.0 // indirect
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.33.0 // indirect
go.opentelemetry.io/otel/metric v1.33.0 // indirect
go.opentelemetry.io/otel/sdk v1.33.0 // indirect
go.opentelemetry.io/otel/trace v1.33.0 // indirect
go.uber.org/multierr v1.11.0 // indirect
golang.org/x/exp v0.0.0-20241210194714-1829a127f884 // indirect
golang.org/x/exp v0.0.0-20250106191152-7588d65b2ba8 // indirect
golang.org/x/text v0.21.0 // indirect
golang.org/x/time v0.8.0 // indirect
golang.org/x/time v0.9.0 // indirect
gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc // indirect
gopkg.in/ini.v1 v1.67.0 // indirect
gopkg.in/mail.v2 v2.3.1 // indirect
Expand Down
Loading

0 comments on commit 71ec845

Please sign in to comment.