Skip to content

Commit

Permalink
fix(deps): replace all
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Jan 4, 2025
1 parent 4b8746f commit 8dbf04f
Show file tree
Hide file tree
Showing 5 changed files with 90 additions and 21 deletions.
2 changes: 1 addition & 1 deletion Dockerfile-openshift
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ COPY webui/ ./
RUN npm run build

# Stage 4: Final stage
FROM registry.access.redhat.com/ubi9/ubi-minimal:9.5-1733767867
FROM registry.access.redhat.com/ubi9/ubi-minimal:9.5-1734497536
ARG VERSION=unknown
LABEL maintainer="Moov <[email protected]>"
LABEL name="watchman"
Expand Down
2 changes: 1 addition & 1 deletion docs/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,5 @@ platforms :mingw, :x64_mingw, :mswin, :jruby do
end

# Performance-booster for watching directories on Windows
gem "wdm", "~> 0.1.1", :platforms => [:mingw, :x64_mingw, :mswin]
gem "wdm", "~> 0.2.0", :platforms => [:mingw, :x64_mingw, :mswin]

32 changes: 18 additions & 14 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,47 +1,51 @@
module github.com/moov-io/watchman

go 1.20
go 1.21

toolchain go1.23.4

require (
github.com/abadojack/whatlanggo v1.0.1
github.com/antchfx/htmlquery v1.3.3
github.com/antchfx/htmlquery v1.3.4
github.com/antihax/optional v1.0.0
github.com/bbalet/stopwords v1.0.0
github.com/go-kit/kit v0.13.0
github.com/gorilla/mux v1.8.1
github.com/jaswdr/faker v1.19.1
github.com/knieriem/odf v0.1.0
github.com/moov-io/base v0.48.2
github.com/moov-io/base v0.53.0
github.com/openvenues/gopostal v0.0.0-20240426055609-4fe3a773f519
github.com/pariz/gountries v0.1.6
github.com/prometheus/client_golang v1.17.0
github.com/stretchr/testify v1.8.4
github.com/xrash/smetrics v0.0.0-20201216005158-039620a65673
github.com/prometheus/client_golang v1.20.5
github.com/stretchr/testify v1.10.0
github.com/xrash/smetrics v0.0.0-20240521201337-686a1a2994c1
go4.org v0.0.0-20230225012048-214862532bf5
golang.org/x/oauth2 v0.14.0
golang.org/x/oauth2 v0.25.0
golang.org/x/sync v0.10.0
golang.org/x/text v0.21.0
)

require (
github.com/antchfx/xpath v1.3.2 // indirect
github.com/antchfx/xpath v1.3.3 // indirect
github.com/beorn7/perks v1.0.1 // indirect
github.com/cespare/xxhash/v2 v2.2.0 // indirect
github.com/cespare/xxhash/v2 v2.3.0 // indirect
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
github.com/go-kit/log v0.2.1 // indirect
github.com/go-logfmt/logfmt v0.6.0 // indirect
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
github.com/golang/protobuf v1.5.3 // indirect
github.com/klauspost/compress v1.17.9 // indirect
github.com/matttproud/golang_protobuf_extensions/v2 v2.0.0 // indirect
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
github.com/prometheus/client_model v0.5.0 // indirect
github.com/prometheus/common v0.45.0 // indirect
github.com/prometheus/procfs v0.12.0 // indirect
github.com/rickar/cal/v2 v2.1.13 // indirect
github.com/prometheus/client_model v0.6.1 // indirect
github.com/prometheus/common v0.55.0 // indirect
github.com/prometheus/procfs v0.15.1 // indirect
github.com/rickar/cal/v2 v2.1.19 // indirect
golang.org/x/net v0.33.0 // indirect
golang.org/x/sys v0.28.0 // indirect
google.golang.org/appengine v1.6.8 // indirect
google.golang.org/protobuf v1.33.0 // indirect
google.golang.org/protobuf v1.34.2 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
Loading

0 comments on commit 8dbf04f

Please sign in to comment.