Skip to content

Commit

Permalink
Bunch o' dependency updates
Browse files Browse the repository at this point in the history
  • Loading branch information
neilotoole committed Nov 19, 2023
1 parent f07edef commit 515f573
Show file tree
Hide file tree
Showing 4 changed files with 87 additions and 106 deletions.
3 changes: 1 addition & 2 deletions drivers/xlsx/ingest.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import (
"context"
"database/sql"
"fmt"
"slices"
"strings"
"time"

Expand All @@ -13,8 +14,6 @@ import (

"github.com/xuri/excelize/v2"

"golang.org/x/exp/slices"

"github.com/neilotoole/sq/libsq/core/options"

"github.com/neilotoole/sq/libsq/core/lg/lga"
Expand Down
32 changes: 10 additions & 22 deletions drivers/xlsx/xlsx_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,37 +7,25 @@ import (
"testing"
"time"

"github.com/neilotoole/sq/libsq/core/record"

"golang.org/x/exp/maps"

"github.com/neilotoole/sq/libsq/core/timez"

"github.com/samber/lo"

"github.com/neilotoole/sq/cli/testrun"
"github.com/neilotoole/sq/drivers/xlsx"
"github.com/neilotoole/sq/libsq/core/errz"

"github.com/stretchr/testify/assert"

"github.com/neilotoole/sq/libsq/core/loz"

"github.com/neilotoole/sq/libsq/core/kind"

"github.com/neilotoole/sq/cli/testrun"

"github.com/neilotoole/sq/libsq/driver"

"github.com/neilotoole/sq/libsq/core/loz"
"github.com/neilotoole/sq/libsq/core/options"

"github.com/neilotoole/sq/testh/tutil"

"github.com/stretchr/testify/require"

"github.com/neilotoole/sq/drivers/xlsx"
"github.com/neilotoole/sq/libsq/core/record"
"github.com/neilotoole/sq/libsq/core/timez"
"github.com/neilotoole/sq/libsq/driver"
"github.com/neilotoole/sq/libsq/source"
"github.com/neilotoole/sq/testh"
"github.com/neilotoole/sq/testh/proj"
"github.com/neilotoole/sq/testh/sakila"
"github.com/neilotoole/sq/testh/tutil"
"github.com/samber/lo"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)

var sakilaSheets = []string{
Expand Down
54 changes: 24 additions & 30 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -10,45 +10,40 @@ require (
github.com/djherbis/fscache v0.10.1
github.com/ecnepsnai/osquery v1.0.1
github.com/emirpasic/gods v1.18.1
github.com/fatih/color v1.15.0
github.com/fatih/color v1.16.0
github.com/go-sql-driver/mysql v1.7.1
github.com/goccy/go-yaml v1.11.2
github.com/google/uuid v1.3.1
github.com/google/uuid v1.4.0
github.com/h2non/filetype v1.1.3
github.com/jackc/pgx/v5 v5.4.3
github.com/jackc/pgx/v5 v5.5.0
github.com/mattn/go-colorable v0.1.13
github.com/mattn/go-isatty v0.0.19
github.com/mattn/go-isatty v0.0.20
github.com/mattn/go-runewidth v0.0.15
github.com/mattn/go-sqlite3 v1.14.17
github.com/mattn/go-sqlite3 v1.14.18
github.com/microsoft/go-mssqldb v1.6.0
github.com/mitchellh/go-wordwrap v1.0.1
github.com/muesli/mango-cobra v1.2.0
github.com/muesli/roff v0.1.0
github.com/ncruces/go-strftime v0.1.9
github.com/neilotoole/shelleditor v0.4.1
github.com/neilotoole/slogt v1.1.0
github.com/otiai10/copy v1.12.0
github.com/ryboe/q v1.0.19
github.com/otiai10/copy v1.14.0
github.com/ryboe/q v1.0.20
github.com/samber/lo v1.38.1
github.com/segmentio/encoding v0.1.14 // WARNING: Be very careful changing pkg segmentio/encoding. A specific version is used by our json encoder.
github.com/sethvargo/go-retry v0.2.4
github.com/spf13/cobra v1.7.0
github.com/spf13/cobra v1.8.0
github.com/spf13/pflag v1.0.5
github.com/stretchr/testify v1.8.4
github.com/xo/dburl v0.16.0

// At the time of writing (2023-08-13), there was an issue with the latest
// release of excelize, so we're using master. On the next release we
// hopefully can change back to a tagged release.
// See: https://github.com/qax-os/excelize/issues/660
github.com/xuri/excelize/v2 v2.7.2-0.20230808161106-ae17fa87d506
github.com/xo/dburl v0.18.2
github.com/xuri/excelize/v2 v2.8.0
go.uber.org/atomic v1.11.0
go.uber.org/multierr v1.11.0
golang.org/x/exp v0.0.0-20230905200255-921286631fa9
golang.org/x/mod v0.12.0
golang.org/x/net v0.15.0
golang.org/x/sync v0.3.0
golang.org/x/term v0.12.0
golang.org/x/exp v0.0.0-20231110203233-9a3e6036ecaa
golang.org/x/mod v0.14.0
golang.org/x/net v0.18.0
golang.org/x/sync v0.5.0
golang.org/x/term v0.14.0
)

require (
Expand All @@ -59,7 +54,7 @@ require (
github.com/golang-sql/civil v0.0.0-20220223132316-b832511892a9 // indirect
github.com/golang-sql/sqlexp v0.1.0 // indirect
github.com/huandu/xstrings v1.4.0 // indirect
github.com/imdario/mergo v0.3.11 // indirect
github.com/imdario/mergo v0.3.16 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/jackc/pgpassfile v1.0.0 // indirect
github.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a // indirect
Expand All @@ -70,22 +65,21 @@ require (
github.com/mitchellh/reflectwalk v1.0.2 // indirect
github.com/moby/term v0.5.0 // indirect
github.com/mohae/deepcopy v0.0.0-20170929034955-c48cc78d4826 // indirect
github.com/muesli/mango v0.1.0 // indirect
github.com/muesli/mango v0.2.0 // indirect
github.com/muesli/mango-pflag v0.1.0 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/richardlehane/mscfb v1.0.4 // indirect
github.com/richardlehane/msoleps v1.0.3 // indirect
github.com/rivo/uniseg v0.4.4 // indirect
github.com/rogpeppe/go-internal v1.10.0 // indirect
github.com/rqlite/sql v0.0.0-20221103124402-8f9ff0ceb8f0 // indirect
github.com/rogpeppe/go-internal v1.11.0 // indirect
github.com/shopspring/decimal v1.3.1 // indirect
github.com/spf13/cast v1.5.1 // indirect
github.com/xuri/efp v0.0.0-20230802181842-ad255f2331ca // indirect
github.com/xuri/nfp v0.0.0-20230802015359-2d5eeba905e9 // indirect
golang.org/x/crypto v0.13.0 // indirect
golang.org/x/sys v0.12.0 // indirect
golang.org/x/text v0.13.0 // indirect
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect
github.com/xuri/efp v0.0.0-20231025114914-d1ff6096ae53 // indirect
github.com/xuri/nfp v0.0.0-20230919160717-d98342af3f05 // indirect
golang.org/x/crypto v0.15.0 // indirect
golang.org/x/sys v0.14.0 // indirect
golang.org/x/text v0.14.0 // indirect
golang.org/x/xerrors v0.0.0-20231012003039-104605ab7028 // indirect
gopkg.in/djherbis/atime.v1 v1.0.0 // indirect
gopkg.in/djherbis/stream.v1 v1.3.1 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
Expand Down
Loading

0 comments on commit 515f573

Please sign in to comment.