Skip to content

Commit

Permalink
update dependencies and docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Tommi2Day committed Apr 8, 2024
1 parent 17a844b commit 5479c03
Show file tree
Hide file tree
Showing 4 changed files with 92 additions and 58 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Go Library

## [v1.13.0 - 2024-04-09]
### New
- test: add InitTestDirs function
- new module netlib for IP/DNS related functions
### Changed
- use go v1.21
- update dependencies
- update linter
- dblib: replace rename dns vars to dblibDNS
- dblib: replace local ip dns functions with netlib
- dblib: add more tests
- dblib: rename dns docker dir to oracle-dns

## [v1.12.1 - 2024-04-01]
### Changed
- update dependencies
Expand Down
2 changes: 2 additions & 0 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,15 @@ this is a collection of my often used functions
- maillib: function to send Mails
- ldaplib: base ldap functions
- hmlib: handle access to homematic devices using [XMLAPI-Addon](https://github.com/homematic-community/XML-API)
- netlib: IP/DNS related funtions

### usage
for usage see the provided test cases and the implemenations as is:

- [tnscli](https://github.com/tommi2day/tnscli)
- [pwcli](https://github.com/tommi2day/pwcli)
- [check_hm](https://github.com/Tommi2Day/check_hm)
- [tcping](https://github.com/Tommi2Day/tcping)

### API
see [godoc](https://pkg.go.dev/github.com/tommi2day/gomodules)
32 changes: 16 additions & 16 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -6,28 +6,28 @@ require (
github.com/Luzifer/go-openssl/v4 v4.2.2
github.com/ProtonMail/go-crypto v1.0.0
github.com/aws/aws-sdk-go-v2 v1.26.1
github.com/aws/aws-sdk-go-v2/config v1.27.10
github.com/aws/aws-sdk-go-v2/config v1.27.11
github.com/aws/aws-sdk-go-v2/service/kms v1.30.1
github.com/aws/smithy-go v1.20.2
github.com/emersion/go-imap v1.2.1
github.com/emersion/go-message v0.18.0
github.com/emersion/go-message v0.18.1
github.com/glebarez/go-sqlite v1.22.0
github.com/go-git/go-git/v5 v5.12.0
github.com/go-ldap/ldap/v3 v3.4.6
github.com/go-ldap/ldap/v3 v3.4.7
github.com/go-resty/resty/v2 v2.12.0
github.com/hashicorp/vault/api v1.12.2
github.com/jarcoal/httpmock v1.3.1
github.com/jmoiron/sqlx v1.3.5
github.com/ory/dockertest/v3 v3.10.0
github.com/sijms/go-ora/v2 v2.8.10
github.com/sijms/go-ora/v2 v2.8.11
github.com/sirupsen/logrus v1.9.3
github.com/spf13/cobra v1.8.0
github.com/spf13/viper v1.18.2
github.com/stretchr/testify v1.9.0
github.com/wneessen/go-mail v0.4.1
github.com/xdg-go/scram v1.1.2
github.com/xlzd/gotp v0.1.0
golang.org/x/net v0.22.0
golang.org/x/net v0.24.0
gopkg.in/ini.v1 v1.67.0
)

Expand All @@ -37,14 +37,14 @@ require (
github.com/Azure/go-ntlmssp v0.0.0-20221128193559-754e69321358 // indirect
github.com/Microsoft/go-winio v0.6.1 // indirect
github.com/Nvveen/Gotty v0.0.0-20120604004816-cd527374f1e5 // indirect
github.com/aws/aws-sdk-go-v2/credentials v1.17.10 // indirect
github.com/aws/aws-sdk-go-v2/credentials v1.17.11 // indirect
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.16.1 // indirect
github.com/aws/aws-sdk-go-v2/internal/configsources v1.3.5 // indirect
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.6.5 // indirect
github.com/aws/aws-sdk-go-v2/internal/ini v1.8.0 // indirect
github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.11.2 // indirect
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.11.7 // indirect
github.com/aws/aws-sdk-go-v2/service/sso v1.20.4 // indirect
github.com/aws/aws-sdk-go-v2/service/sso v1.20.5 // indirect
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.23.4 // indirect
github.com/aws/aws-sdk-go-v2/service/sts v1.28.6 // indirect
github.com/cenkalti/backoff/v3 v3.2.2 // indirect
Expand All @@ -59,7 +59,6 @@ require (
github.com/docker/go-units v0.5.0 // indirect
github.com/dustin/go-humanize v1.0.1 // indirect
github.com/emersion/go-sasl v0.0.0-20231106173351-e73c9f7bad43 // indirect
github.com/emersion/go-textwrapper v0.0.0-20200911093747-65d896831594 // indirect
github.com/emirpasic/gods v1.18.1 // indirect
github.com/fsnotify/fsnotify v1.7.0 // indirect
github.com/go-asn1-ber/asn1-ber v1.5.5 // indirect
Expand Down Expand Up @@ -114,18 +113,19 @@ require (
github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect
github.com/xeipuuv/gojsonschema v1.2.0 // indirect
go.uber.org/multierr v1.11.0 // indirect
golang.org/x/crypto v0.21.0 // indirect
golang.org/x/exp v0.0.0-20240325151524-a685a6edb6d8 // indirect
golang.org/x/mod v0.16.0 // indirect
golang.org/x/sys v0.18.0 // indirect
golang.org/x/crypto v0.22.0 // indirect
golang.org/x/exp v0.0.0-20240404231335-c0f41cb1a7a0 // indirect
golang.org/x/mod v0.17.0 // indirect
golang.org/x/sync v0.7.0 // indirect
golang.org/x/sys v0.19.0 // indirect
golang.org/x/text v0.14.0 // indirect
golang.org/x/time v0.5.0 // indirect
golang.org/x/tools v0.19.0 // indirect
golang.org/x/tools v0.20.0 // indirect
gopkg.in/warnings.v0 v0.1.2 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
modernc.org/libc v1.49.0 // indirect
modernc.org/libc v1.49.3 // indirect
modernc.org/mathutil v1.6.0 // indirect
modernc.org/memory v1.7.2 // indirect
modernc.org/sqlite v1.29.5 // indirect
modernc.org/memory v1.8.0 // indirect
modernc.org/sqlite v1.29.6 // indirect
)
Loading

0 comments on commit 5479c03

Please sign in to comment.