Content-Length: 294785 | pFad | https://github.com/mubeng/mubeng/pull/263

06 build(deps): bump the gomod group with 6 updates by dependabot[bot] · Pull Request #263 · mubeng/mubeng · GitHub
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

build(deps): bump the gomod group with 6 updates #263

Merged
merged 1 commit into from
Jan 3, 2025

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 3, 2025

Bumps the gomod group with 6 updates:

Package From To
github.com/briandowns/spinner 1.23.0 1.23.1
github.com/elazarl/goproxy 0.0.0-20210110162100-a92cc753f88e 1.2.5
github.com/fsnotify/fsnotify 1.6.0 1.8.0
github.com/go-test/deep 1.0.7 1.1.1
github.com/henvic/httpretty 0.1.2 0.1.4
github.com/kardianos/service 1.2.0 1.2.2

Updates github.com/briandowns/spinner from 1.23.0 to 1.23.1

Release notes

Sourced from github.com/briandowns/spinner's releases.

v1.23.1

What's Changed

New Contributors

Full Changelog: briandowns/spinner@v1.23.0...v1.23.1

Commits

Updates github.com/elazarl/goproxy from 0.0.0-20210110162100-a92cc753f88e to 1.2.5

Release notes

Sourced from github.com/elazarl/goproxy's releases.

v1.2.5

What's Changed

Full Changelog: elazarl/goproxy@v1.2.4...v1.2.5

v1.2.4

What's Changed

Full Changelog: elazarl/goproxy@v1.2.3...v1.2.4

v1.2.3

What's Changed

Full Changelog: elazarl/goproxy@v1.2.2...v1.2.3

v1.2.2

What's Changed

Full Changelog: elazarl/goproxy@v1.2.1...v1.2.2

v1.2.1

What's Changed

New Contributors

... (truncated)

Commits

Updates github.com/fsnotify/fsnotify from 1.6.0 to 1.8.0

Release notes

Sourced from github.com/fsnotify/fsnotify's releases.

v1.8.0

Additions

  • all: add FSNOTIFY_DEBUG to print debug logs to stderr (#619)

Changes and fixes

  • windows: fix behaviour of WatchList() to be consistent with other platforms (#610)

  • kqueue: ignore events with Ident=0 (#590)

  • kqueue: set O_CLOEXEC to prevent passing file descriptors to children (#617)

  • kqueue: emit events as "/path/dir/file" instead of "path/link/file" when watching a symlink (#625)

  • inotify: don't send event for IN_DELETE_SELF when also watching the parent (#620)

  • inotify: fix panic when calling Remove() in a goroutine (#650)

  • fen: allow watching subdirectories of watched directories (#621)

v1.7.0

This version of fsnotify needs Go 1.17.

Additions

  • illumos: add FEN backend to support illumos and Solaris. (#371)

  • all: add NewBufferedWatcher() to use a buffered channel, which can be useful in cases where you can't control the kernel buffer and receive a large number of events in bursts. (#550, #572)

  • all: add AddWith(), which is identical to Add() but allows passing options. (#521)

  • windows: allow setting the ReadDirectoryChangesW() buffer size with fsnotify.WithBufferSize(); the default of 64K is the highest value that works on all platforms and is enough for most purposes, but in some cases a highest buffer is needed. (#521)

Changes and fixes

  • inotify: remove watcher if a watched path is renamed (#518)

    After a rename the reported name wasn't updated, or even an empty string. Inotify doesn't provide any good facilities to update it, so just remove the watcher. This is already how it worked on kqueue and FEN.

    On Windows this does work, and remains working.

  • windows: don't listen for file attribute changes (#520)

    File attribute changes are sent as FILE_ACTION_MODIFIED by the Windows API, with no way to see if they're a file write or attribute change, so would show up as a fsnotify.Write event. This is never useful, and could result in many spurious Write events.

  • windows: return ErrEventOverflow if the buffer is full (#525)

    Before it would merely return "short read", making it hard to detect this error.

... (truncated)

Changelog

Sourced from github.com/fsnotify/fsnotify's changelog.

1.8.0 2023-10-31

Additions

  • all: add FSNOTIFY_DEBUG to print debug logs to stderr (#619)

Changes and fixes

  • windows: fix behaviour of WatchList() to be consistent with other platforms (#610)

  • kqueue: ignore events with Ident=0 (#590)

  • kqueue: set O_CLOEXEC to prevent passing file descriptors to children (#617)

  • kqueue: emit events as "/path/dir/file" instead of "path/link/file" when watching a symlink (#625)

  • inotify: don't send event for IN_DELETE_SELF when also watching the parent (#620)

  • inotify: fix panic when calling Remove() in a goroutine (#650)

  • fen: allow watching subdirectories of watched directories (#621)

#590: fsnotify/fsnotify#590 #610: fsnotify/fsnotify#610 #617: fsnotify/fsnotify#617 #619: fsnotify/fsnotify#619 #620: fsnotify/fsnotify#620 #621: fsnotify/fsnotify#621 #625: fsnotify/fsnotify#625 #650: fsnotify/fsnotify#650

1.7.0 - 2023-10-22

This version of fsnotify needs Go 1.17.

Additions

  • illumos: add FEN backend to support illumos and Solaris. (#371)

  • all: add NewBufferedWatcher() to use a buffered channel, which can be useful in cases where you can't control the kernel buffer and receive a large number of events in bursts. (#550, #572)

  • all: add AddWith(), which is identical to Add() but allows passing options. (#521)

  • windows: allow setting the ReadDirectoryChangesW() buffer size with fsnotify.WithBufferSize(); the default of 64K is the highest value that works on all platforms and is enough for most purposes, but in some cases a

... (truncated)

Commits

Updates github.com/go-test/deep from 1.0.7 to 1.1.1

Release notes

Sourced from github.com/go-test/deep's releases.

v1.1.1

What's Changed

New Contributors

Full Changelog: go-test/deep@v1.1.0...v1.1.1

v1.1.0

New minor release, v1.1, that adds support for optional flags.

What's Changed

Full Changelog: go-test/deep@v1.0.9...v1.1.0

v1.0.9

What's Changed

Full Changelog: go-test/deep@v1.0.8...v1.0.9

Changelog

Sourced from github.com/go-test/deep's changelog.

v1.1.1 released 2024-06-23

  • Added NilPointersAreZero option: causes a nil pointer to be equal to a zero value (PR #61) (@​seveas)
  • Updated test matrix to go1.22, go1.21, and go1.20

v1.1.0 released 2022-12-09

  • Add optional flags: Equal(a, b, flags..) and FLAG_IGNORE_SLICE_ORDER (issue #28, PR #56) (@​alenkacz)

v1.0.9 released 2022-12-09

  • Fixed issue #45: Panic when comparing errors in unexported fields (PR #54) (@​seveas)
  • Fixed issue #46: Functions are handled differently from reflect.DeepEqual (PR #55) (@​countcb)
  • Updated test matrix to go1.17, go1.18, and go1.19 and moved testing to GitHub Actions

v1.0.8 released 2021-10-13

  • Updated test matrix to go1.15, go1.16, and go1.17
  • Added SECURITY.md and GitHub code analysis
Commits
  • 9e863ff Release v1.1.1
  • dc5b2f6 Update SECURITY.md
  • 185886d Restore 100% test coverage (NilPointersAreZero case)
  • 47ae1b8 Merge pull request #61 from seveas/nil-pointers-are-zero
  • 93c35ac Merge branch 'master' into nil-pointers-are-zero
  • 2982c5c Update test matrix to latest 3 Go versions
  • 2b8252e Add an option to consider nil pointers to be equivalent to zero values
  • 95fb3b1 Merge pull request #58 from bartleyg/patch-1
  • 1127c84 fix copy pasta test
  • 7ff4e92 Update changelog for v1.1.0
  • Additional commits viewable in compare view

Updates github.com/henvic/httpretty from 0.1.2 to 0.1.4

Commits
  • 3a02507 cover: remove example directory from code coverage
  • b5852d6 mod: require Go 1.22+ and update workflows
  • 962ad53 Add Align to align HTTP headers
  • b2e47bd ci: add dependabot.yml
  • 10e5c53 ci: update workflows
  • 8ccaa9c fix: test assertion for TestOutgoingTLSBadClientCertificate message
  • d3bb0e6 fix: make test TestOutgoingTLSBadClientCertificate less strict
  • 938aae5 fix: replace deprecated io/ioutil calls
  • 90010f0 mod: require Go 1.20 onwards
  • 45a60f1 chore: add test for HTTP proxy support
  • Additional commits viewable in compare view

Updates github.com/kardianos/service from 1.2.0 to 1.2.2

Commits
  • f4a4df2 Update launchd template (#346)
  • 645b10f Add EnvVars to linux init.d (#339)
  • 380dcf8 Replace deprecated IsAnInteractiveSession() call (#344)
  • 6547573 Do not create windows services with an empty environment key (#343)
  • 29f8c79 Windows access service with minimal perms (#313)
  • abe98a9 Provide custom log directory for posix (#311)
  • bc65850 Allow setting environment variables for services (#312)
  • ff1da96 Run systemd commands with --user flag (#310)
  • ed46af2 Replace std out/err path to an existing directory (#307)
  • 5c08916 fix: use /etc/rc.d/rc2.d instead of /etc/rc2.d depending on AIX version (#317)
  • Additional commits viewable in compare view

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 <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the gomod group with 6 updates:

| Package | From | To |
| --- | --- | --- |
| [github.com/briandowns/spinner](https://github.com/briandowns/spinner) | `1.23.0` | `1.23.1` |
| [github.com/elazarl/goproxy](https://github.com/elazarl/goproxy) | `0.0.0-20210110162100-a92cc753f88e` | `1.2.5` |
| [github.com/fsnotify/fsnotify](https://github.com/fsnotify/fsnotify) | `1.6.0` | `1.8.0` |
| [github.com/go-test/deep](https://github.com/go-test/deep) | `1.0.7` | `1.1.1` |
| [github.com/henvic/httpretty](https://github.com/henvic/httpretty) | `0.1.2` | `0.1.4` |
| [github.com/kardianos/service](https://github.com/kardianos/service) | `1.2.0` | `1.2.2` |


Updates `github.com/briandowns/spinner` from 1.23.0 to 1.23.1
- [Release notes](https://github.com/briandowns/spinner/releases)
- [Commits](briandowns/spinner@v1.23.0...v1.23.1)

Updates `github.com/elazarl/goproxy` from 0.0.0-20210110162100-a92cc753f88e to 1.2.5
- [Release notes](https://github.com/elazarl/goproxy/releases)
- [Commits](https://github.com/elazarl/goproxy/commits/v1.2.5)

Updates `github.com/fsnotify/fsnotify` from 1.6.0 to 1.8.0
- [Release notes](https://github.com/fsnotify/fsnotify/releases)
- [Changelog](https://github.com/fsnotify/fsnotify/blob/main/CHANGELOG.md)
- [Commits](fsnotify/fsnotify@v1.6.0...v1.8.0)

Updates `github.com/go-test/deep` from 1.0.7 to 1.1.1
- [Release notes](https://github.com/go-test/deep/releases)
- [Changelog](https://github.com/go-test/deep/blob/master/CHANGES.md)
- [Commits](go-test/deep@v1.0.7...v1.1.1)

Updates `github.com/henvic/httpretty` from 0.1.2 to 0.1.4
- [Commits](henvic/httpretty@v0.1.2...v0.1.4)

Updates `github.com/kardianos/service` from 1.2.0 to 1.2.2
- [Commits](kardianos/service@v1.2.0...v1.2.2)

---
updated-dependencies:
- dependency-name: github.com/briandowns/spinner
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gomod
- dependency-name: github.com/elazarl/goproxy
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: gomod
- dependency-name: github.com/fsnotify/fsnotify
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod
- dependency-name: github.com/go-test/deep
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod
- dependency-name: github.com/henvic/httpretty
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gomod
- dependency-name: github.com/kardianos/service
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gomod
...

Signed-off-by: dependabot[bot] <support@github.com>
@dwisiswant0 dwisiswant0 merged commit 9d875d0 into master Jan 3, 2025
@dwisiswant0 dwisiswant0 deleted the dependabot/go_modules/gomod-25b26619af branch January 3, 2025 11:51
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant








ApplySandwichStrip

pFad - (p)hone/(F)rame/(a)nonymizer/(d)eclutterfier!      Saves Data!


--- a PPN by Garber Painting Akron. With Image Size Reduction included!

Fetched URL: https://github.com/mubeng/mubeng/pull/263

Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy