Commit graph

683 commits

Author SHA1 Message Date
Charlie Gunyon
311494e86e
Elastic adapter (#2727)
* Add stub source and elastic API funcs

* Spawn workers and ship chunks

* Now successfully detects a credential

- Added tests
- Added some documentation comments
- Threaded the passed context through to all the API requests

* Linting fixes

* Add integration tests and resolve some bugs they uncovered

* Logstash -> Elasticsearch

* Add support for --index-pattern

* Add support for --query-json

* Use structs instead of string building to construct a search body

* Support --since-timestamp

* Implement additional authentication methods

* Fix some small bugs

* Refactoring to support --best-effort-scan

* Finish implementation of --best-effort-scan

* Implement scan catch-up

* Finish connecting support for nodes CLI arg

* Add some integration tests around the catchup mechanism

* go mod tidy

* Fix some linting issues

* Remove some debugging Prints

* Move off of _doc

* Remove informational Printf and add informational logging

* Remove debugging logging

* Copy the index from the outer loop as well

* Don't burn up the ES API with rapid requests if there's no work to do in subsequent scans

* No need to export UnitOfWork.AddSearch

* Use a better name for the range query variable when building the timestamp range clause in searches

* Replace some unlocking defers with explicit unlocks to make the synchronized part of the code clearer

* found -> ok

* Remove superfluous buildElasticClient method

---------

Co-authored-by: Charlie Gunyon <charlie@spectral.energy>
2024-05-24 09:38:20 -05:00
renovate[bot]
0a3a62be0e
fix(deps): update module github.com/aws/aws-sdk-go to v1.53.6 (#2867)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-05-21 10:15:28 -07:00
renovate[bot]
4f833cbfa0
fix(deps): update module github.com/aws/aws-sdk-go to v1.53.5 (#2859)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-05-18 08:01:50 -07:00
renovate[bot]
760da097ad
fix(deps): update module google.golang.org/api to v0.181.0 (#2857)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-05-18 08:01:29 -07:00
renovate[bot]
970cd12e70
fix(deps): update module github.com/wasilibs/go-re2 to v1.5.3 (#2861)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-05-17 07:52:16 -07:00
ahrav
896e6e7c66
upgrade github dep (#2858) 2024-05-16 14:35:08 -07:00
renovate[bot]
bcbc9c5ff7
fix(deps): update module github.com/aws/aws-sdk-go to v1.53.3 (#2849)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-05-15 18:32:06 -07:00
renovate[bot]
f1e419f8fe
fix(deps): update module cloud.google.com/go/storage to v1.41.0 (#2843)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-05-13 18:45:01 -07:00
renovate[bot]
09e465b445
fix(deps): update module github.com/aws/aws-sdk-go to v1.53.1 (#2841)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-05-13 14:45:42 -07:00
renovate[bot]
daec737cce
fix(deps): update module github.com/fatih/color to v1.17.0 (#2837)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-05-13 14:45:25 -07:00
renovate[bot]
333c4f5296
fix(deps): update module github.com/aws/aws-sdk-go to v1.53.0 (#2830)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-05-13 08:08:47 -07:00
renovate[bot]
64be16c940
fix(deps): update module github.com/google/go-github/v61 to v62 (#2832)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-05-12 12:37:05 -07:00
renovate[bot]
7fd36f86cd
fix(deps): update module github.com/sassoftware/go-rpmutils to v0.4.0 (#2831)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-05-11 07:18:13 -07:00
renovate[bot]
a2b79fb128
fix(deps): update module google.golang.org/api to v0.180.0 (#2822)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-05-11 07:06:47 -07:00
renovate[bot]
82f450b00f
fix(deps): update module github.com/xanzy/go-gitlab to v0.105.0 (#2824)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-05-11 07:06:21 -07:00
renovate[bot]
b1b424f4ea
fix(deps): update testcontainers-go monorepo to v0.31.0 (#2823)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-05-11 07:05:59 -07:00
ahrav
570cec7565
[refactor] - Refactor Archive Handling Logic (#2703)
* Remove specialized handler and archive struct and restructure handlers pkg.

* Refactor RPM archive handlers to use a library instead of shelling out

* make rpm handling context aware

* update test

* Refactor AR/deb archive handler to use an existing library instead of shelling out

* Update tests

* add max size check

* add filename and size to context kvp

* move skip file check and is binary check before opening file

* fix test

* preserve existing funcitonality of not handling non-archive files in HandleFile

* Adjust check for rpm/deb archive type

* add additional deb mime type

* update comment

* Remove specialized handler and archive struct and restructure handlers pkg.

* Refactor RPM archive handlers to use a library instead of shelling out

* make rpm handling context aware

* update test

* Refactor AR/deb archive handler to use an existing library instead of shelling out

* Update tests

* add max size check

* add filename and size to context kvp

* move skip file check and is binary check before opening file

* fix test

* preserve existing funcitonality of not handling non-archive files in HandleFile

* Adjust check for rpm/deb archive type

* add additional deb mime type

* update comment

* go mod tidy

* update go mod

* go mod tidy

* add comment

* update max depth check to >

* go mod tidy

* rename

* [refactor] - Refactor Archive Handling Logic - Part 4: Non-Archive Data Handling and Cleanup (#2704)

* Handle non-archive data within the DefaultHandler

* make structs and methods private

* Remove non-archive data handling within sources

* Handle non-archive data within the DefaultHandler

* rebase

* Remove non-archive data handling within sources

* add gzip

* move diskbuffered rereader setup into handler pkg

* remove DiskBuffereReader creation logic within sources

* move rewind closer

* reduce log verbosity

* make defaultBufferSize a const

* use correct reader

* address comments

* update test

* [feat] - Add Prometheus Metrics for File Handlers (#2705)

* add metrics for file handling

* add metrics for errors

* add metrics for file handling

* add metrics for errors

* fix tests

* add metrics for max archive depth and skipped files

* update error

* skip symlinks and dirs

* update err

* fix err assignment

* add metrics for file handling

* add metrics for errors

* fix tests

* rebase

* add metrics for errors

* add metrics for max archive depth and skipped files

* update error

* skip symlinks and dirs

* update err

* fix err assignment

* rebase

* remove

* update metric to ms

* update comments

* address comments

* reduce indentations

* add metrics for archive depth

* [bug] - Enhanced Archive Handling to Address Interface Constraints (#2710)

* add metrics for file handling

* add metrics for errors

* add metrics for file handling

* add metrics for errors

* fix tests

* add metrics for max archive depth and skipped files

* update error

* skip symlinks and dirs

* update err

* Address incompatible reader to openArchive

* remove nil check

* fix err assignment

* wrap compReader with DiskbufferReader

* add metrics for file handling

* add metrics for errors

* fix tests

* rebase

* add metrics for errors

* add metrics for max archive depth and skipped files

* update error

* skip symlinks and dirs

* update err

* fix err assignment

* rebase

* remove

* update metric to ms

* update comments

* address comments

* reduce indentations

* replace diskbuffereader with bufferedfilereader

* updtes

* add metric back

* [bug] -  Fix bug and simplify git cat-file command execution and output handling (#2719)

* add metrics for file handling

* add metrics for errors

* add metrics for file handling

* add metrics for errors

* fix tests

* add metrics for max archive depth and skipped files

* update error

* skip symlinks and dirs

* update err

* Address incompatible reader to openArchive

* remove nil check

* fix err assignment

* Allow git cat-file blob to complete before trying to handle the file

* wrap compReader with DiskbufferReader

* Allow git cat-file blob to complete before trying to handle the file

* updates

* revert stuff

* update test

* remove

* add metrics for file handling

* add metrics for errors

* fix tests

* rebase

* add metrics for errors

* add metrics for max archive depth and skipped files

* update error

* skip symlinks and dirs

* update err

* fix err assignment

* rebase

* remove

* update metric to ms

* update comments

* address comments

* reduce indentations

* inline
2024-05-10 11:36:06 -07:00
renovate[bot]
0712df086b
fix(deps): update module github.com/prometheus/client_golang to v1.19.1 (#2821)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-05-10 07:21:54 -07:00
renovate[bot]
41781ab116
fix(deps): update module github.com/charmbracelet/bubbletea to v0.26.2 (#2818)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-05-09 18:57:16 -07:00
renovate[bot]
d35754ffbe
fix(deps): update module github.com/hashicorp/go-retryablehttp to v0.7.6 (#2819)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-05-09 18:56:40 -07:00
renovate[bot]
af4f9f5cdd
fix(deps): update module github.com/aws/aws-sdk-go to v1.52.6 (#2816)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-05-09 18:17:49 -07:00
renovate[bot]
305e1fb99f
fix(deps): update module github.com/snowflakedb/gosnowflake to v1.10.0 (#2810)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-05-09 18:14:07 -07:00
renovate[bot]
43d5a07924
fix(deps): update module github.com/rabbitmq/amqp091-go to v1.10.0 (#2809)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-05-09 18:13:47 -07:00
renovate[bot]
4712deed5b
fix(deps): update module github.com/xanzy/go-gitlab to v0.104.1 (#2784)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-05-09 13:36:37 -07:00
renovate[bot]
7568804771
fix(deps): update module google.golang.org/api to v0.178.0 (#2800)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-05-07 15:36:06 -07:00
renovate[bot]
418da524c4
fix(deps): update module github.com/aws/aws-sdk-go to v1.52.4 (#2794)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-05-07 15:12:23 -07:00
renovate[bot]
07b2ed7256
fix(deps): update module github.com/brianvoe/gofakeit/v7 to v7.0.3 (#2798)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-05-07 15:12:06 -07:00
renovate[bot]
799a190d46
fix(deps): update module golang.org/x/exp to v0.0.0-20240506185415-9bf2ced13842 (#2795)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-05-07 13:45:09 -07:00
renovate[bot]
b52936826e
fix(deps): update module golang.org/x/net to v0.25.0 (#2792)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-05-06 18:20:16 -04:00
renovate[bot]
b24b1150ad
fix(deps): update module google.golang.org/protobuf to v1.34.1 (#2790)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-05-06 10:06:27 -07:00
renovate[bot]
2a7e13a7a9
fix(deps): update module golang.org/x/text to v0.15.0 (#2786)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-05-05 13:39:24 -07:00
renovate[bot]
ac1197208f
fix(deps): update module golang.org/x/oauth2 to v0.20.0 (#2785)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-05-05 13:39:04 -07:00
renovate[bot]
692c3ad5aa
fix(deps): update module github.com/charmbracelet/bubbletea to v0.26.1 (#2777)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-05-05 07:52:13 -07:00
renovate[bot]
29240145c9
fix(deps): update module github.com/googleapis/gax-go/v2 to v2.12.4 (#2781)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-05-05 07:51:17 -07:00
renovate[bot]
05a2796680
fix(deps): update module github.com/aws/aws-sdk-go to v1.52.2 (#2776)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-05-05 07:50:52 -07:00
renovate[bot]
81f7688784
fix(deps): update module cloud.google.com/go/secretmanager to v1.13.0 (#2775)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-05-04 06:16:11 -07:00
renovate[bot]
2888f8cdfc
fix(deps): update module google.golang.org/api to v0.177.0 (#2770)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-04-30 18:29:59 -07:00
renovate[bot]
7654952dbd
fix(deps): update module github.com/aws/aws-sdk-go to v1.51.32 (#2769)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-04-30 18:29:32 -07:00
renovate[bot]
23b3ddde58
fix(deps): update module google.golang.org/protobuf to v1.34.0 (#2766)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-04-30 07:41:33 -07:00
renovate[bot]
6bf79b79b7
fix(deps): update module github.com/aws/aws-sdk-go to v1.51.31 (#2763)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-04-29 13:07:06 -07:00
renovate[bot]
8449f4b405
fix(deps): update module github.com/aws/aws-sdk-go to v1.51.30 (#2756)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-04-27 12:14:48 -07:00
renovate[bot]
efb01aec8f
fix(deps): update module github.com/aws/aws-sdk-go to v1.51.29 (#2751)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-04-25 13:10:09 -07:00
renovate[bot]
680bd7d0af
fix(deps): update module github.com/aws/aws-sdk-go to v1.51.28 (#2741)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-04-24 12:23:31 -07:00
renovate[bot]
46e0da1a92
fix(deps): update module google.golang.org/api to v0.176.1 (#2736)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-04-23 14:37:39 -07:00
renovate[bot]
bc48e9dc23
fix(deps): update module github.com/aws/aws-sdk-go to v1.51.27 (#2735)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-04-23 14:37:25 -07:00
renovate[bot]
642fce5edf
fix(deps): update module github.com/aws/aws-sdk-go to v1.51.26 (#2728)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-04-23 08:24:57 -07:00
renovate[bot]
be7e795750
fix(deps): update module google.golang.org/api to v0.176.0 (#2726)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-04-22 09:07:12 -07:00
renovate[bot]
6fd7305686
fix(deps): update module google.golang.org/api to v0.175.0 (#2724)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-04-21 08:36:43 -07:00
renovate[bot]
dae5881751
fix(deps): update module github.com/microsoft/go-mssqldb to v1.7.1 (#2720)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-04-20 10:06:48 -07:00
renovate[bot]
336f0e209c
fix(deps): update module github.com/aws/aws-sdk-go to v1.51.25 (#2723)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-04-20 10:05:58 -07:00
renovate[bot]
70bdf4eb2a
fix(deps): update module github.com/couchbase/gocb/v2 to v2.8.1 (#2714)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-04-18 17:54:31 -07:00
renovate[bot]
e35ec439db
fix(deps): update module github.com/xanzy/go-gitlab to v0.103.0 (#2715)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-04-18 15:43:32 -07:00
renovate[bot]
9c40ff409f
fix(deps): update module github.com/aws/aws-sdk-go to v1.51.24 (#2717)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-04-18 15:42:58 -07:00
renovate[bot]
3d04b5c58e
fix(deps): update module google.golang.org/api to v0.174.0 (#2712)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-04-17 14:15:08 -07:00
renovate[bot]
fb4f8e4fa5
fix(deps): update module github.com/aws/aws-sdk-go to v1.51.23 (#2711)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-04-17 14:14:57 -07:00
renovate[bot]
ee26986869
fix(deps): update module google.golang.org/api to v0.173.0 (#2709)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-04-17 09:10:45 -07:00
renovate[bot]
1deee78493
fix(deps): update module github.com/aws/aws-sdk-go to v1.51.22 (#2708)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-04-17 08:25:26 -07:00
renovate[bot]
f194b64067
fix(deps): update module github.com/go-ldap/ldap/v3 to v3.4.8 (#2707)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-04-16 12:08:56 -07:00
renovate[bot]
fad28b05fd
fix(deps): update golang.org/x/exp digest to fe59bbe (#2706)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-04-16 12:08:37 -07:00
renovate[bot]
198c63cb82
fix(deps): update module go.mongodb.org/mongo-driver to v1.15.0 (#2700)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-04-13 08:39:06 -07:00
renovate[bot]
1a2ed23abd
fix(deps): update module github.com/aws/aws-sdk-go to v1.51.21 (#2699)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-04-12 15:19:06 -07:00
renovate[bot]
ff5d9a413f
fix(deps): update module github.com/aws/aws-sdk-go to v1.51.20 (#2698)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-04-11 18:41:56 -07:00
renovate[bot]
253d274836
fix(deps): update module github.com/launchdarkly/go-server-sdk/v7 to v7.4.0 (#2697)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-04-11 17:26:55 -07:00
renovate[bot]
7332f91a8b
fix(deps): update module github.com/aws/aws-sdk-go to v1.51.19 (#2694)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-04-10 17:57:07 -07:00
renovate[bot]
58799302c0
fix(deps): update module github.com/aws/aws-sdk-go to v1.51.18 (#2690)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-04-09 17:19:38 -07:00
renovate[bot]
5cf08c23de
fix(deps): update golang.org/x/exp digest to 93d18d7 (#2688)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-04-09 09:08:53 -07:00
renovate[bot]
72e01061ff
fix(deps): update module github.com/aws/aws-sdk-go to v1.51.17 (#2686)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-04-08 15:22:56 -07:00
renovate[bot]
75a6ea9183
fix(deps): update module github.com/go-ldap/ldap/v3 to v3.4.7 (#2684)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-04-08 14:44:26 -07:00
renovate[bot]
f7ad0268f6
fix(deps): update testcontainers-go monorepo to v0.30.0 (#2685)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-04-08 09:55:14 -07:00
renovate[bot]
18e7d44efc
fix(deps): update module github.com/xanzy/go-gitlab to v0.102.0 (#2682)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-04-08 09:43:24 -07:00
renovate[bot]
62b89dd293
fix(deps): update module github.com/aws/aws-sdk-go to v1.51.16 (#2680)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-04-07 17:02:23 -07:00
renovate[bot]
8f6c9f074b
fix(deps): update golang.org/x/exp digest to c0f41cb (#2672)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-04-07 17:01:51 -07:00
renovate[bot]
e14411a0ea
fix(deps): update module github.com/wasilibs/go-re2 to v1.5.2 (#2681)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-04-06 13:29:29 -07:00
renovate[bot]
c8f6eb6691
fix(deps): update module github.com/thezeroslave/zapsentry to v1.23.0 (#2667)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-04-06 11:27:03 -07:00
renovate[bot]
21bd95b076
fix(deps): update module golang.org/x/net to v0.24.0 (#2662)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-04-06 11:25:55 -07:00
renovate[bot]
4153315464
fix(deps): update module golang.org/x/oauth2 to v0.19.0 (#2670)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-04-04 16:57:11 -07:00
ahrav
a8132839f8
[chore] - update go-github dep manually (#2664)
* update go-github dep

* remove commented out line
2024-04-03 19:19:14 -07:00
renovate[bot]
5af3ab6743
fix(deps): update module github.com/google/go-github/v57 to v61 (#2652)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-04-03 17:17:49 -07:00
renovate[bot]
9d0fe9f8f5
fix(deps): update module github.com/launchdarkly/go-server-sdk/v7 to v7.3.0 (#2660)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-04-03 17:12:27 -07:00
renovate[bot]
a31b91cb16
fix(deps): update module github.com/aws/aws-sdk-go to v1.51.14 (#2659)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-04-03 15:21:41 -07:00
ahrav
0fe39db56f
upgrade launchdarkly dep (#2650) 2024-04-03 07:24:20 -07:00
renovate[bot]
ea842ecf19
fix(deps): update module github.com/aws/aws-sdk-go to v1.51.13 (#2655)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-04-02 16:55:02 -07:00
renovate[bot]
becce51335
fix(deps): update module github.com/thezeroslave/zapsentry to v1.22.1 (#2654)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-04-02 09:20:58 -07:00
renovate[bot]
16d7665dc5
fix(deps): update module github.com/aws/aws-sdk-go to v1.51.12 (#2651)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-04-02 09:08:34 -07:00
renovate[bot]
1c727b66c0
fix(deps): update module github.com/go-git/go-git/v5 to v5.12.0 (#2649)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-03-31 11:01:16 -07:00
renovate[bot]
2baacefe84
fix(deps): update module github.com/thezeroslave/zapsentry to v1.22.0 (#2648)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-03-30 07:24:14 -07:00
renovate[bot]
6dd2c34d86
fix(deps): update module github.com/aws/aws-sdk-go to v1.51.11 (#2646)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-03-30 07:10:41 -07:00
renovate[bot]
e76dfb98ab
fix(deps): update module cloud.google.com/go/storage to v1.40.0 (#2645)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-03-29 10:51:41 -07:00
renovate[bot]
a71e56d22d
fix(deps): update module github.com/launchdarkly/go-server-sdk/v6 to v6.2.0 (#2638)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-03-29 09:01:36 -07:00
Richard Gomez
f16fdcac3e
build: fix 'toolchair not available' error (#2642) 2024-03-28 19:31:24 -07:00
renovate[bot]
862cb37610
fix(deps): update module github.com/aws/aws-sdk-go to v1.51.10 (#2636)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-03-28 15:46:15 -07:00
renovate[bot]
49bbf96983
fix(deps): update module google.golang.org/api to v0.172.0 (#2634)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-03-27 11:56:48 -07:00
renovate[bot]
cb5825059a
fix(deps): update module github.com/aws/aws-sdk-go to v1.51.8 (#2630)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-03-26 15:09:57 -07:00
renovate[bot]
1d91ac9f90
fix(deps): update module github.com/charmbracelet/glamour to v0.7.0 (#2627)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-03-26 14:52:28 -07:00
renovate[bot]
0bdce16e5c
fix(deps): update module github.com/go-sql-driver/mysql to v1.8.1 (#2626)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-03-26 14:51:57 -07:00
renovate[bot]
6048c43f97
fix(deps): update golang.org/x/exp digest to a685a6e (#2621)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-03-26 11:21:40 -07:00
ahrav
11afc3215b
[chore] - upgrade dep (#2618)
* upgrade dep

* remove dupe deps
2024-03-26 11:21:07 -07:00
renovate[bot]
de588bf6f6
fix(deps): update module github.com/aws/aws-sdk-go to v1.51.7 (#2623)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-03-25 15:22:38 -07:00
renovate[bot]
0a8cb77b83
fix(deps): update module github.com/aws/aws-sdk-go to v1.51.6 (#2615)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-03-24 13:02:38 -07:00
renovate[bot]
9cda1118b9
fix(deps): update module github.com/xanzy/go-gitlab to v0.101.0 (#2617)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-03-23 09:58:07 -07:00
renovate[bot]
f1abe2c0a7
fix(deps): update module github.com/brianvoe/gofakeit/v6 to v7 (#2612)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-03-22 09:25:00 -07:00
renovate[bot]
e8cc5be070
fix(deps): update module github.com/bradleyfalzon/ghinstallation/v2 to v2.10.0 (#2607)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-03-22 08:31:10 -07:00
renovate[bot]
d96823b7f3
fix(deps): update module google.golang.org/api to v0.171.0 (#2611)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-03-22 08:30:48 -07:00
renovate[bot]
4bd25e62fc
fix(deps): update module github.com/brianvoe/gofakeit/v6 to v7 (#2524)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-03-22 08:27:46 -07:00
renovate[bot]
2921370f54
fix(deps): update module github.com/launchdarkly/go-server-sdk/v6 to v7 (#2590)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-03-22 08:23:38 -07:00
Dustin Decker
41d58739bd
Use go 1.22 (#2599)
* Use go 1.22

* install non-pro goreleaser

* increment go-version

* build w/ go 1.22 for codeql
2024-03-22 08:23:04 -07:00
dependabot[bot]
eb0d4ae5d2
Bump github.com/docker/docker (#2603)
Bumps [github.com/docker/docker](https://github.com/docker/docker) from 25.0.3+incompatible to 25.0.5+incompatible.
- [Release notes](https://github.com/docker/docker/releases)
- [Commits](https://github.com/docker/docker/compare/v25.0.3...v25.0.5)

---
updated-dependencies:
- dependency-name: github.com/docker/docker
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-03-21 08:34:02 -07:00
renovate[bot]
3f47dbccfb
fix(deps): update module github.com/aws/aws-sdk-go to v1.51.4 (#2604)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-03-20 17:49:37 -07:00
renovate[bot]
6e4ef73059
fix(deps): update module github.com/wasilibs/go-re2 to v1.5.1 (#2596)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-03-20 07:39:35 -07:00
renovate[bot]
585103232a
fix(deps): update module cloud.google.com/go/secretmanager to v1.12.0 (#2595)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-03-19 18:45:13 -07:00
renovate[bot]
65720b703a
fix(deps): update module github.com/aws/aws-sdk-go to v1.51.3 (#2594)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-03-19 13:19:29 -07:00
renovate[bot]
7e164d4a84
fix(deps): update module github.com/aws/aws-sdk-go to v1.51.2 (#2593)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-03-18 15:23:46 -07:00
renovate[bot]
370895d3f1
fix(deps): update golang.org/x/exp digest to a85f2c6 (#2592)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-03-18 15:07:43 -07:00
renovate[bot]
0147fbb860
fix(deps): update module github.com/wasilibs/go-re2 to v1.5.0 (#2591)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-03-17 19:13:50 -07:00
renovate[bot]
3965fe6ff3
fix(deps): update module github.com/aws/aws-sdk-go to v1.51.1 (#2588)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-03-17 09:54:22 -07:00
renovate[bot]
0b81155521
fix(deps): update module google.golang.org/api to v0.170.0 (#2589)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-03-17 09:53:57 -07:00
renovate[bot]
4df6d4c004
fix(deps): update module github.com/googleapis/gax-go/v2 to v2.12.3 (#2587)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-03-16 12:21:00 -07:00
renovate[bot]
d0100f33bd
fix(deps): update module github.com/google/go-containerregistry to v0.19.1 (#2586)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-03-16 12:20:45 -07:00
renovate[bot]
1e2f0f484d
fix(deps): update module cloud.google.com/go/secretmanager to v1.11.6 (#2578)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-03-16 11:40:09 -07:00
renovate[bot]
4d128eff11
fix(deps): update module github.com/launchdarkly/go-server-sdk/v7 to v7.1.1 (#2576)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-03-16 11:39:47 -07:00
renovate[bot]
e66bdfb7f9
fix(deps): update golang.org/x/exp digest to c7f7c64 (#2575)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-03-14 18:20:20 -07:00
renovate[bot]
d7f4ec5488
fix(deps): update module github.com/couchbase/gocb/v2 to v2.8.0 (#2573)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-03-14 08:20:55 -07:00
renovate[bot]
f6a9fa96de
fix(deps): update module github.com/aws/aws-sdk-go to v1.50.38 (#2572)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-03-14 08:20:35 -07:00
renovate[bot]
906605785d
fix(deps): update module github.com/xanzy/go-gitlab to v0.100.0 (#2567)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-03-13 15:01:50 -07:00
renovate[bot]
5e1292c3f3
fix(deps): update module github.com/launchdarkly/go-server-sdk/v6 to v7 (#2568)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-03-13 15:01:25 -07:00
renovate[bot]
8b6d96ff5c
fix(deps): update module github.com/aws/aws-sdk-go to v1.50.36 (#2566)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-03-11 15:25:24 -07:00
renovate[bot]
0065b964ce
fix(deps): update module cloud.google.com/go/storage to v1.39.1 (#2565)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-03-11 15:25:07 -07:00
renovate[bot]
5aeea88f59
fix(deps): update module github.com/go-sql-driver/mysql to v1.8.0 (#2561)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-03-09 10:08:43 -08:00
renovate[bot]
0e798d96b7
fix(deps): update module github.com/aws/aws-sdk-go to v1.50.35 (#2560)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-03-09 09:48:43 -08:00
renovate[bot]
c7084248be
fix(deps): update module github.com/google/go-github/v57 to v60 (#2551)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-03-09 09:15:08 -08:00
renovate[bot]
2a89101f90
fix(deps): update module github.com/golang-jwt/jwt/v4 to v5 (#2550)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-03-08 08:38:31 -08:00
renovate[bot]
f2a0ea0b70
fix(deps): update module google.golang.org/protobuf to v1.33.0 (#2548)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-03-07 18:22:03 -08:00
renovate[bot]
0c171b8fad
fix(deps): update testcontainers-go monorepo to v0.29.1 (#2549)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-03-07 18:21:29 -08:00
joeleonjr
0bbb68931c
Canary verification (#2531)
* verify canaries against SNS; get ARN

* clean comments

* Update tests and logic

* added test for invalid canary secret

* added verify logic for canaries

* go mod tidy

---------

Co-authored-by: Dustin Decker <dustin@trufflesec.com>
2024-03-07 18:18:18 -08:00
renovate[bot]
1fea549c6c
fix(deps): update module google.golang.org/api to v0.169.0 (#2547)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-03-07 18:11:53 -08:00
renovate[bot]
e062e779a6
fix(deps): update module golang.org/x/oauth2 to v0.18.0 (#2546)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-03-07 17:10:44 -08:00
renovate[bot]
13c0fa1e83
fix(deps): update module github.com/xanzy/go-gitlab to v0.99.0 (#2543)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-03-07 14:57:20 -08:00
renovate[bot]
c35a76bda2
fix(deps): update module golang.org/x/crypto to v0.21.0 (#2544)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-03-07 14:56:56 -08:00
renovate[bot]
c3321b94d7
fix(deps): update module github.com/aws/aws-sdk-go to v1.50.34 (#2541)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-03-07 14:36:39 -08:00
renovate[bot]
1d3f973c1e
fix(deps): update module github.com/charmbracelet/lipgloss to v0.10.0 (#2542)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-03-07 14:36:28 -08:00
renovate[bot]
1d89efcf32
fix(deps): update module github.com/golang-jwt/jwt/v4 to v5 (#2535)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-03-07 13:25:25 -08:00
renovate[bot]
0bedda389a
fix(deps): update module github.com/launchdarkly/go-server-sdk/v6 to v7 (#2499)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-03-07 13:24:47 -08:00
renovate[bot]
7388b63f35
fix(deps): update module github.com/stretchr/testify to v1.9.0 (#2534)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-03-03 11:55:08 -08:00
renovate[bot]
e53beac11b
fix(deps): update module cloud.google.com/go/storage to v1.39.0 (#2533)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-03-03 11:38:09 -08:00
renovate[bot]
bc18d2c145
fix(deps): update module github.com/felixge/fgprof to v0.9.4 (#2532)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-03-03 11:11:51 -08:00
renovate[bot]
581a84f82e
fix(deps): update module github.com/aws/aws-sdk-go to v1.50.30 (#2529)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-03-03 10:57:05 -08:00
renovate[bot]
c325d09ac8
fix(deps): update module golang.org/x/crypto to v0.20.0 (#2523)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-02-28 15:37:16 -08:00
renovate[bot]
c2b6addfd7
fix(deps): update module github.com/prometheus/client_golang to v1.19.0 (#2522)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-02-28 14:33:42 -08:00
renovate[bot]
3f9360a12a
fix(deps): update module github.com/googleapis/gax-go/v2 to v2.12.2 (#2521)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-02-28 14:00:57 -08:00
renovate[bot]
c8218dd9f9
fix(deps): update module github.com/aws/aws-sdk-go to v1.50.28 (#2520)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-02-28 12:55:58 -08:00