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: update dependency watchdog {2.2.1 => 6.0.0} - autoclosed #125

Closed
wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Feb 28, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
watchdog (changelog) ==2.2.1 -> ==6.0.0 age adoption passing confidence

Release Notes

gorakhargosh/watchdog (watchdog)

v6.0.0: 6.0.0

Compare Source

Breaking Changes

  • [inotify] Use of select.poll() instead of deprecated select.select(), if available. (#​1078)
  • [utils] Removed the unused echo_class() function from the echo module.
  • [utils] Removed the unused echo_instancemethod() function from the echo module.
  • [utils] Removed the unused echo_module() function from the echo module.
  • [utils] Removed the unused is_class_private_name() function from the echo module.
  • [utils] Removed the unused is_classmethod() function from the echo module.
  • [utils] Removed the unused is_method(met() function from the echo module.
  • [utils] Removed the unused method_name() function from the echo module.
  • [utils] Removed the unused name() function from the echo module.
  • [watchmedo] Removed the --trace CLI argument from the watchmedo log command, useless since events are logged by default at the LoggerTrick class level.

Other Changes

  • Pin test dependecies.
  • [docs] Add typing info to quick start. (#​1082)
  • [inotify] Fix reading inotify file descriptor after closing it. (#​1081)
  • [utils] The stop_signal keyword-argument type of the AutoRestartTrick class can now be either a signal.Signals or an int.
  • [utils] Added the __repr__() method to the Trick class.
  • [watchmedo] Fixed Mypy issues.
  • [watchmedo] Added the __repr__() method to the HelpFormatter class.
  • [windows] Fixed Mypy issues.

💟 Thanks to our beloved contributors: @​g-pichler, @​ethan-vanderheijden, @​nhairs, @​BoboTiG

v5.0.3: 5.0.3

Compare Source

  • [inotify] Improve cleaning up Inotify threads, and add eventlet test cases (#​1070)

💟 Thanks to our beloved contributors: @​ethan-vanderheijden, @​BoboTiG

v5.0.2: 5.0.2

Compare Source

  • Enable OS specific Mypy checks (#​1064)
  • [watchmedo] Fix tricks argument type of schedule_tricks() (#​1063)

💟 Thanks to our beloved contributors: @​gnought, @​BoboTiG

v5.0.1: 5.0.1

Compare Source

  • [kqueue] Fix TypeError: kqueue.control() only accepts positional parameters (#​1062)

💟 Thanks to our beloved contributors: @​apoirier, @​BoboTiG

v5.0.0: 5.0.0

Compare Source

Breaking Changes

  • Drop support for Python 3.8 (#​1055)
  • [core] Enforced usage of proper keyword-arguments (#​1057)
  • [core] Renamed the BaseObserverSubclassCallable class to ObserverType (#​1055)
  • [inotify] Renamed the inotify_event_struct class to InotifyEventStruct (#​1055)
  • [inotify] Renamed the UnsupportedLibc exception to UnsupportedLibcError (#​1057)
  • [inotify] Removed the InotifyConstants.IN_CLOSE constant (#​1046)
  • [watchmedo] Renamed the LogLevelException exception to LogLevelError (#​1057)
  • [watchmedo] Renamed the WatchdogShutdown exception to WatchdogShutdownError (#​1057)
  • [windows] Renamed the FILE_NOTIFY_INFORMATION class to FileNotifyInformation (#​1055)
  • [windows] Removed the unused WATCHDOG_TRAVERSE_MOVED_DIR_DELAY constant (#​1057)

Other Changes

  • [core] Enable disallow_untyped_calls Mypy rule (#​1055)
  • [core] Enable disallow_untyped_defs Mypy rule (#​1060)
  • [core] Improve typing references for events (#​1040)
  • [inotify] Add support for IN_CLOSE_NOWRITE events. A FileClosedNoWriteEvent event will be fired, and its on_closed_no_write() dispatcher has been introduced (#​1046)

💟 Thanks to our beloved contributors: @​BoboTiG

v4.0.2: 4.0.2

Compare Source

  • Add support for Python 3.13 (#​1052)
  • [core] Run ruff, apply several fixes (#​1033)
  • [core] Remove execution rights from events.py
  • [documentation] Update PatternMatchingEventHandler docstrings (#​1048)
  • [documentation] Simplify the quickstart example (#​1047)
  • [fsevents] Add missing event_filter keyword-argument to FSEventsObserver.schedule() (#​1049)
  • [utils] Fix a possible race condition in AutoRestartTrick (#​1002)
  • [watchmedo] Remove execution rights from watchmedo.py

💟 Thanks to our beloved contributors: @​BoboTiG, @​nbelakovski, @​ivg

v4.0.1: 4.0.1

Compare Source

  • [inotify] Fix missing event_filter for the full emitter (#​1032)

💟 Thanks to our beloved contributors: @​mraspaud, @​BoboTiG

v4.0.0: 4.0.0

Compare Source

Breaking Changes

  • Drop support for Python 3.7.
  • [events] FileSystemEvent, and subclasses, are now dataclasses, and their repr() has changed
  • [windows] WinAPINativeEvent is now a dataclass, and its repr() has changed
  • [windows] The observers.read_directory_changes.WATCHDOG_TRAVERSE_MOVED_DIR_DELAY hack was removed. The constant will be kept to prevent breaking other softwares.

Other Changes

  • Add support for Python 3.12.
  • [snapshot] Add typing to dirsnapshot (#​1012)
  • [snapshot] Added DirectorySnapshotDiff.ContextManager (#​1011)
  • [events] Log FileOpenedEvent, and FileClosedEvent, events in LoggingEventHandler
  • [tests] Improve FileSystemEvent coverage
  • [watchmedo] Log all events in LoggerTrick

💟 Thanks to our beloved contributors: @​BoboTiG, @​msabramo

v3.0.0: 3.0.0

Compare Source

Breaking Changes

  • Drop support for Python 3.6.

Other Changes

  • watchdog is now PEP 561 compatible, and tested with mypy
  • Fix missing > in FileSystemEvent.__repr__() (#​980)
  • [ci] Lots of improvements
  • [inotify] Return from InotifyEmitter.queue_events() if not launched when thread is inactive (#​963)
  • [tests] Stability improvements
  • [utils] Remove handling of threading.Event.isSet spelling (#​962)
  • [watchmedo] Fixed tricks YAML generation (#​965)

💟 Thanks to our beloved contributors: @​kurtmckee, @​altendky, @​agroszer, @​BoboTiG

v2.3.1: 2.3.1

Compare Source

  • Run black on the entire source code
  • Bundle the requirements-tests.txt file in the source distribution (#​939)
  • [watchmedo] Exclude FileOpenedEvent events from AutoRestartTrick, and ShellCommandTrick, to restore watchdog < 2.3.0 behavior. A better solution should be found in the future. (#​949)
  • [watchmedo] Log FileOpenedEvent, and FileClosedEvent, events in LoggerTrick

💟 Thanks to our beloved contributors: @​BoboTiG

v2.3.0: 2.3.0

Compare Source

  • [inotify] Add support for IN_OPEN events: a FileOpenedEvent event will be fired (#​941)
  • [watchmedo] Add optional event debouncing for auto-restart, only restarting once if many events happen in quick succession (--debounce-interval) (#​940)
  • [watchmedo] Add option to not auto-restart the command after it exits (--no-restart-on-command-exit) (#​946)
  • [watchmedo] Exit gracefully on KeyboardInterrupt exception (Ctrl+C) (#​945)

💟 Thanks to our beloved contributors: @​BoboTiG, @​dstaple, @​taleinat, @​cernekj


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot requested a review from TheMrMilchmann as a code owner February 28, 2025 15:49
@renovate renovate bot added a:chore Maintenance work in:build in:dependencies Pull requests that update a dependency file in:docs Improvements or additions to documentation labels Feb 28, 2025
@TheMrMilchmann TheMrMilchmann added the was:invalid This doesn't seem right label Feb 28, 2025
@renovate renovate bot changed the title build: update dependency watchdog {2.2.1 => 6.0.0} build: update dependency watchdog {2.2.1 => 6.0.0} - autoclosed Feb 28, 2025
@renovate renovate bot closed this Feb 28, 2025
@renovate renovate bot deleted the renovate/watchdog-6.x branch February 28, 2025 17:13
@TheMrMilchmann TheMrMilchmann self-assigned this Feb 28, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
a:chore Maintenance work in:build in:dependencies Pull requests that update a dependency file in:docs Improvements or additions to documentation was:invalid This doesn't seem right
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant