Skip to content

Commit 7fcd5be

Browse files
chore(deps): bump github.com/bmatcuk/doublestar/v4 from 4.6.1 to 4.7.1 (#463)
Bumps [github.com/bmatcuk/doublestar/v4](https://github.com/bmatcuk/doublestar) from 4.6.1 to 4.7.1. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/bmatcuk/doublestar/releases">github.com/bmatcuk/doublestar/v4's releases</a>.</em></p> <blockquote> <h2>Fixed FilepathGlob(&quot;&quot;)</h2> <p>To be consistent with <code>filepath.Glob</code>, <code>FilepathGlob(&quot;&quot;)</code> returns nil.</p> <h2>Added MatchUnvalidated, PathMatchUnvalidated</h2> <p>These functions provide a small performance improvement in cases where you don't care about whether or not the pattern is valid (maybe because you already ran <code>ValidatePattern</code>).</p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/bmatcuk/doublestar/commit/1e20c6dbac3e865d289d5edb5e18368fbc897c5c"><code>1e20c6d</code></a> fixes <a href="https://redirect.github.com/bmatcuk/doublestar/issues/95">#95</a> FilepathGlob(&quot;&quot;) should return nil</li> <li><a href="https://github.com/bmatcuk/doublestar/commit/da152ef1a007761b5c7070ecd8cdef7a6d652145"><code>da152ef</code></a> add docs for MatchUnvalidated, PathMatchUnvalidated</li> <li><a href="https://github.com/bmatcuk/doublestar/commit/2832f673278941422907eaaaabcc7d67c14bb4f9"><code>2832f67</code></a> closes <a href="https://redirect.github.com/bmatcuk/doublestar/issues/92">#92</a> adds MatchUnvalidated</li> <li><a href="https://github.com/bmatcuk/doublestar/commit/424062b06d944bcf70c4e2f19b49a032af0dabe0"><code>424062b</code></a> added sponsor: MASV</li> <li>See full diff in <a href="https://github.com/bmatcuk/doublestar/compare/v4.6.1...v4.7.1">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/bmatcuk/doublestar/v4&package-manager=go_modules&previous-version=4.6.1&new-version=4.7.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent d98e82a commit 7fcd5be

File tree

6 files changed

+65
-4
lines changed

6 files changed

+65
-4
lines changed

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module github.com/launchdarkly/ld-find-code-refs/v2
33
go 1.20
44

55
require (
6-
github.com/bmatcuk/doublestar/v4 v4.6.1
6+
github.com/bmatcuk/doublestar/v4 v4.7.1
77
github.com/go-git/go-git/v5 v5.12.0
88
github.com/hashicorp/go-retryablehttp v0.7.7
99
github.com/iancoleman/strcase v0.3.0

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@ github.com/ProtonMail/go-crypto v1.0.0 h1:LRuvITjQWX+WIfr930YHG2HNfjR1uOfyf5vE0k
4242
github.com/ProtonMail/go-crypto v1.0.0/go.mod h1:EjAoLdwvbIOoOQr3ihjnSoLZRtE8azugULFRteWMNc0=
4343
github.com/anmitsu/go-shlex v0.0.0-20200514113438-38f4b401e2be h1:9AeTilPcZAjCFIImctFaOjnTIavg87rW78vTPkQqLI8=
4444
github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5 h1:0CwZNZbxp69SHPdPJAN/hZIm0C4OItdklCFmMRWYpio=
45-
github.com/bmatcuk/doublestar/v4 v4.6.1 h1:FH9SifrbvJhnlQpztAx++wlkk70QBf0iBWDwNy7PA4I=
46-
github.com/bmatcuk/doublestar/v4 v4.6.1/go.mod h1:xBQ8jztBU6kakFMg+8WGxn0c6z1fTSPVIjEY1Wr7jzc=
45+
github.com/bmatcuk/doublestar/v4 v4.7.1 h1:fdDeAqgT47acgwd9bd9HxJRDmc9UAmPpc+2m0CXv75Q=
46+
github.com/bmatcuk/doublestar/v4 v4.7.1/go.mod h1:xBQ8jztBU6kakFMg+8WGxn0c6z1fTSPVIjEY1Wr7jzc=
4747
github.com/bwesterb/go-ristretto v1.2.3/go.mod h1:fUIoIZaG73pV5biE2Blr2xEzDoMj7NFEuV9ekS419A0=
4848
github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU=
4949
github.com/chzyer/logex v1.1.10/go.mod h1:+Ywpsq7O8HXn0nuIou7OrIPyXbp3wmkHB+jjWRnGsAI=

vendor/github.com/bmatcuk/doublestar/v4/README.md

Lines changed: 29 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/bmatcuk/doublestar/v4/match.go

Lines changed: 22 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/bmatcuk/doublestar/v4/utils.go

Lines changed: 10 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/modules.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ github.com/ProtonMail/go-crypto/openpgp/internal/ecc
2828
github.com/ProtonMail/go-crypto/openpgp/internal/encoding
2929
github.com/ProtonMail/go-crypto/openpgp/packet
3030
github.com/ProtonMail/go-crypto/openpgp/s2k
31-
# github.com/bmatcuk/doublestar/v4 v4.6.1
31+
# github.com/bmatcuk/doublestar/v4 v4.7.1
3232
## explicit; go 1.16
3333
github.com/bmatcuk/doublestar/v4
3434
# github.com/cloudflare/circl v1.3.7

0 commit comments

Comments
 (0)