Skip to content

Commit 20c5807

Browse files
build(deps): bump the modules group with 5 updates
Bumps the modules group with 5 updates: | Package | From | To | | --- | --- | --- | | [github.com/charmbracelet/lipgloss](https://github.com/charmbracelet/lipgloss) | `0.9.1` | `1.0.0` | | [github.com/charmbracelet/log](https://github.com/charmbracelet/log) | `0.3.1` | `0.4.0` | | [github.com/fsnotify/fsnotify](https://github.com/fsnotify/fsnotify) | `1.7.0` | `1.8.0` | | [github.com/go-co-op/gocron](https://github.com/go-co-op/gocron) | `1.34.0` | `1.37.0` | | [github.com/mattn/go-colorable](https://github.com/mattn/go-colorable) | `0.1.13` | `0.1.14` | Updates `github.com/charmbracelet/lipgloss` from 0.9.1 to 1.0.0 - [Release notes](https://github.com/charmbracelet/lipgloss/releases) - [Changelog](https://github.com/charmbracelet/lipgloss/blob/master/.goreleaser.yml) - [Commits](charmbracelet/lipgloss@v0.9.1...v1.0.0) Updates `github.com/charmbracelet/log` from 0.3.1 to 0.4.0 - [Release notes](https://github.com/charmbracelet/log/releases) - [Commits](charmbracelet/log@v0.3.1...v0.4.0) Updates `github.com/fsnotify/fsnotify` from 1.7.0 to 1.8.0 - [Release notes](https://github.com/fsnotify/fsnotify/releases) - [Changelog](https://github.com/fsnotify/fsnotify/blob/main/CHANGELOG.md) - [Commits](fsnotify/fsnotify@v1.7.0...v1.8.0) Updates `github.com/go-co-op/gocron` from 1.34.0 to 1.37.0 - [Release notes](https://github.com/go-co-op/gocron/releases) - [Commits](go-co-op/gocron@v1.34.0...v1.37.0) Updates `github.com/mattn/go-colorable` from 0.1.13 to 0.1.14 - [Commits](mattn/go-colorable@v0.1.13...v0.1.14) --- updated-dependencies: - dependency-name: github.com/charmbracelet/lipgloss dependency-type: direct:production update-type: version-update:semver-major dependency-group: modules - dependency-name: github.com/charmbracelet/log dependency-type: direct:production update-type: version-update:semver-minor dependency-group: modules - dependency-name: github.com/fsnotify/fsnotify dependency-type: direct:production update-type: version-update:semver-minor dependency-group: modules - dependency-name: github.com/go-co-op/gocron dependency-type: direct:production update-type: version-update:semver-minor dependency-group: modules - dependency-name: github.com/mattn/go-colorable dependency-type: direct:production update-type: version-update:semver-patch dependency-group: modules ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 35a8eab commit 20c5807

File tree

2 files changed

+102
-96
lines changed

2 files changed

+102
-96
lines changed

go.mod

Lines changed: 8 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,18 @@ go 1.21.0
55
toolchain go1.22.0
66

77
require (
8-
github.com/charmbracelet/lipgloss v0.9.1
9-
github.com/charmbracelet/log v0.3.1
10-
github.com/fsnotify/fsnotify v1.7.0
11-
github.com/go-co-op/gocron v1.34.0
12-
github.com/mattn/go-colorable v0.1.13
8+
github.com/charmbracelet/lipgloss v1.0.0
9+
github.com/charmbracelet/log v0.4.0
10+
github.com/fsnotify/fsnotify v1.8.0
11+
github.com/go-co-op/gocron v1.37.0
12+
github.com/mattn/go-colorable v0.1.14
1313
github.com/teler-sh/teler-waf v1.5.1
1414
)
1515

1616
require (
1717
cloud.google.com/go v0.112.2 // indirect
1818
cloud.google.com/go/auth v0.4.1 // indirect
1919
cloud.google.com/go/auth/oauth2adapt v0.2.2 // indirect
20-
cloud.google.com/go/compute v1.25.1 // indirect
2120
cloud.google.com/go/compute/metadata v0.3.0 // indirect
2221
cloud.google.com/go/iam v1.1.8 // indirect
2322
cloud.google.com/go/storage v1.39.1 // indirect
@@ -40,6 +39,7 @@ require (
4039
github.com/caddyserver/zerossl v0.1.3 // indirect
4140
github.com/cespare/xxhash v1.1.0 // indirect
4241
github.com/cespare/xxhash/v2 v2.2.0 // indirect
42+
github.com/charmbracelet/x/ansi v0.4.2 // indirect
4343
github.com/chzyer/readline v1.5.1 // indirect
4444
github.com/codingsince1985/checksum v1.3.0 // indirect
4545
github.com/cpuguy83/go-md2man/v2 v2.0.3 // indirect
@@ -69,7 +69,6 @@ require (
6969
github.com/golang/protobuf v1.5.4 // indirect
7070
github.com/golang/snappy v0.0.4 // indirect
7171
github.com/google/cel-go v0.20.1 // indirect
72-
github.com/google/go-cmp v0.6.0 // indirect
7372
github.com/google/pprof v0.0.0-20231212022811-ec68065c825e // indirect
7473
github.com/google/s2a-go v0.1.7 // indirect
7574
github.com/google/uuid v1.6.0 // indirect
@@ -111,7 +110,6 @@ require (
111110
github.com/mitchellh/go-ps v1.0.0 // indirect
112111
github.com/mitchellh/go-testing-interface v1.14.1 // indirect
113112
github.com/mitchellh/reflectwalk v1.0.2 // indirect
114-
github.com/muesli/reflow v0.3.0 // indirect
115113
github.com/muesli/termenv v0.15.2 // indirect
116114
github.com/onsi/ginkgo/v2 v2.13.2 // indirect
117115
github.com/otiai10/copy v1.14.0 // indirect
@@ -126,7 +124,7 @@ require (
126124
github.com/prometheus/procfs v0.12.0 // indirect
127125
github.com/quic-go/qpack v0.4.0 // indirect
128126
github.com/quic-go/quic-go v0.44.0 // indirect
129-
github.com/rivo/uniseg v0.4.4 // indirect
127+
github.com/rivo/uniseg v0.4.7 // indirect
130128
github.com/robfig/cron/v3 v3.0.1 // indirect
131129
github.com/rs/xid v1.5.0 // indirect
132130
github.com/russross/blackfriday/v2 v2.1.0 // indirect
@@ -178,14 +176,12 @@ require (
178176
golang.org/x/net v0.27.0 // indirect
179177
golang.org/x/oauth2 v0.20.0 // indirect
180178
golang.org/x/sync v0.7.0 // indirect
181-
golang.org/x/sys v0.22.0 // indirect
179+
golang.org/x/sys v0.29.0 // indirect
182180
golang.org/x/term v0.22.0 // indirect
183181
golang.org/x/text v0.16.0 // indirect
184182
golang.org/x/time v0.5.0 // indirect
185183
golang.org/x/tools v0.21.1-0.20240508182429-e35e4ccd0d2d // indirect
186-
golang.org/x/xerrors v0.0.0-20231012003039-104605ab7028 // indirect
187184
google.golang.org/api v0.180.0 // indirect
188-
google.golang.org/appengine v1.6.8 // indirect
189185
google.golang.org/genproto v0.0.0-20240401170217-c3f982113cda // indirect
190186
google.golang.org/genproto/googleapis/api v0.0.0-20240506185236-b8a5c65736ae // indirect
191187
google.golang.org/genproto/googleapis/rpc v0.0.0-20240429193739-8cf5692501f6 // indirect

0 commit comments

Comments
 (0)