Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): bump github.com/snivilised/extendio from 0.3.1 to 0.4.0 #231

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 4, 2023

Bumps github.com/snivilised/extendio from 0.3.1 to 0.4.0.

Release notes

Sourced from github.com/snivilised/extendio's releases.

v0.4.0

Changelog

⚠️ BREAKING CHANGE

  • DoExtend on TraverseOptions has been removed. All TraverseItems now include the fully populated Extension

✨ Introducing:

  • Sampling: a partial traversal can now be run where by a sample is taken for each directory navigated. This will be useful in those situations where a relatively long running process (eg invoking an external command which may take a few seconds or more as oppossed to micro seconds to complete, is invoked for every file encountered). So a client may wish to perform a preview operation where the command to invoke per file file, only runs on a reduced set. This reduce set an be defined 1 of 3 ways: 📌 slice: take slice of directory contents. The slice may be the first or last n entries (as defined in Options/Store/Sampling.NoOf). By default, the first entries are taken as the sample, but this can be changed to take the last, by setting Options/Store/Sampling.SamplingInReverse to true. 📌 filter: requires a filter to be defined. The sampler will use the filter to create the sample set and will also use the NoOf (mentioned above), to quantify the number of files/folders or both (for universal). 📌 custom: requires the client to define 2 new predicates in Options/Sampler.Custom, each and where. Together, they allow to client to customise how encountered directory's sample is taken
  • New filter scope: 2 new scopes have been introduced, for files and directories. This means the client can now target file or directory types for filtering.

🚀 Features

  • 0446725ea8a25400d5c95206242913d4429e0b5e: feat(nav): implement directory sampling (#369) (@​plastikfan)
  • dfa50885ea316c528734f47260dd5ff40ac3d8a3: feat(nav): implement directory sampling (#373) (@​plastikfan)

🐛 Bug fixes

  • fe9ee3961064767ed5362cbed086133fc5a7e609: fix(nav): traversal skip (#363) (@​plastikfan)

🥝 Others

  • aeb9bb4c279b62a4ffc92b7698d906502179c85c: chore(deps): bump github.com/onsi/ginkgo/v2 from 2.13.0 to 2.13.1 (@​dependabot[bot])
  • fa956de168c3433ba523b3188d5787cd81861213: chore(deps): bump github.com/onsi/gomega from 1.29.0 to 1.30.0 (@​dependabot[bot])
  • e4bd3975d957371a465f7a06cf5a9423d4f40f79: chore(deps): bump golang.org/x/text from 0.13.0 to 0.14.0 (@​dependabot[bot])
  • 216e7ffdff52d1a29757307baebd0a85984229ba: ref(nav): make extendion mandatory (#375) (@​plastikfan)
  • 566d8c72bc8bdf4ae5f14e786e524494ae67f5d9: test(nav): add sampling tests for folders with files (#369) (@​plastikfan)
Commits
  • 216e7ff ref(nav): make extendion mandatory (#375)
  • dfa5088 feat(nav): implement directory sampling (#373)
  • 566d8c7 test(nav): add sampling tests for folders with files (#369)
  • 0446725 feat(nav): implement directory sampling (#369)
  • 3c72df9 feat(nav): add supporting code and failing tests for sample (#366)
  • aeb9bb4 chore(deps): bump github.com/onsi/ginkgo/v2 from 2.13.0 to 2.13.1
  • fa956de chore(deps): bump github.com/onsi/gomega from 1.29.0 to 1.30.0
  • fe9ee39 fix(nav): traversal skip (#363)
  • e4bd397 chore(deps): bump golang.org/x/text from 0.13.0 to 0.14.0
  • See full diff in compare view

Dependabot compatibility score

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 commands and options

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)

@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Dec 4, 2023
Bumps [github.com/snivilised/extendio](https://github.com/snivilised/extendio) from 0.3.1 to 0.4.0.
- [Release notes](https://github.com/snivilised/extendio/releases)
- [Changelog](https://github.com/snivilised/extendio/blob/master/.goreleaser.yaml)
- [Commits](snivilised/extendio@v0.3.1...v0.4.0)

---
updated-dependencies:
- dependency-name: github.com/snivilised/extendio
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/go_modules/github.com/snivilised/extendio-0.4.0 branch from 0d903d6 to 44476ce Compare December 6, 2023 11:06
@plastikfan plastikfan merged commit 8153ee1 into master Dec 6, 2023
5 checks passed
@plastikfan plastikfan deleted the dependabot/go_modules/github.com/snivilised/extendio-0.4.0 branch December 6, 2023 11:28
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant