andrewdavidmackenzie / pingr

A wifi monitoring tool
MIT License
6 stars 0 forks source link

Update service-manager requirement from 0.6.0 to 0.7.0 #75

Closed dependabot[bot] closed 3 months ago

dependabot[bot] commented 5 months ago

Updates the requirements on service-manager to permit the latest version.

Changelog

Sourced from service-manager's changelog.

[0.7.0] - 2024-05-31

Added

  • The WinSW service manager can read the location of the WinSW binary from the WINSW_PATH environment variable. This is useful to avoid the necessity of having it in a location that is on the Path variable, which can be a bit more awkward on Windows. There are a lack of standard locations that can be written to without administrative privileges.
  • Introduce the autostart field on ServiceInstallCtx. This controls whether a service should automatically start upon rebooting the OS. It's an option common to all service managers and it's useful for developers to think about whether their services should automatically start up. If the service is resource intensive or uses a lot of bandwidth, some users actually don't want automatic start because it can potentially render their machine unusable.

[0.6.2] - 2024-05-27

  • The WinSW service manager will delete service directories upon uninstall

[0.6.1] - 2024-05-03

  • Fix issue where calling stop on MacOS service does not halt the service due to the service's default auto-restart setting. (#19)
  • Remove user specification for user-mode service definitions in Systemd. In a user-mode service, it will run as the current user, and the service won't actually start correctly if the user is specified. The user specification is really for system-wide services that don't run as root.

[0.6.0] - 2024-02-18

  • Derive basic traits on the Service context structs. (#18)
  • Introduced support for specifying environment variables for systemd. The specified variables are now written on separate lines. (#17)

[0.5.1] - 2023-11-22

  • Fix a small issue in the WinSW service manager which caused the service management directories to be created at the current directory, rather than the intended location at C:\ProgramData\service-manager.

[0.5.0] - 2023-11-06

  • Support for the WinSW service manager was added. WinSW can run any application as a Windows service by providing the boilerplate code for interacting with the Windows service infrastructure. Most, but not all, configuration options are supported in this initial setup.
  • The ServiceInstallCtx is extended with optional working_directory and environment fields, which assign a working directory and pass a list of environment variables to the process launched by the service. Most service managers support these. This is a backwards incompatible change.

[0.4.0] - 2023-10-19

Added

  • The ServiceInstallCtx is extended with a username field to support

... (truncated)

Commits
  • 2a76017 Bump version to 0.7.0
  • 743a911 Introduce autostart field on ServiceInstallCtx (#25)
  • bc95878 Bump version to 0.6.2
  • 41a06af Update changelog to reflect 0.6.2
  • 2cb4ca9 WinSW uninstall deletes service directories (#24)
  • 0329f6f Bump to 0.6.1
  • bcf66bd Remove user for user level service in Systemd (#22)
  • 60db459 fix: remove calls to launchctl start and stop (#21)
  • 2f8934c Disable rc.d tests until we have time to investigate the faulty environment
  • c79c98c Update changelog and apply 'cargo fmt --all'
  • 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 will merge this PR once CI passes on it, as requested by @andrewdavidmackenzie.


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 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)
andrewdavidmackenzie commented 5 months ago

@dependabot merge

On Mon, Jun 3, 2024, 7:16 PM dependabot[bot] @.***> wrote:

Updates the requirements on service-manager https://github.com/chipsenkbeil/service-manager-rs to permit the latest version. Changelog

Sourced from service-manager's changelog https://github.com/chipsenkbeil/service-manager-rs/blob/main/CHANGELOG.md.

[0.7.0] - 2024-05-31 Added

  • The WinSW service manager can read the location of the WinSW binary from the WINSW_PATH environment variable. This is useful to avoid the necessity of having it in a location that is on the Path variable, which can be a bit more awkward on Windows. There are a lack of standard locations that can be written to without administrative privileges.
  • Introduce the autostart field on ServiceInstallCtx. This controls whether a service should automatically start upon rebooting the OS. It's an option common to all service managers and it's useful for developers to think about whether their services should automatically start up. If the service is resource intensive or uses a lot of bandwidth, some users actually don't want automatic start because it can potentially render their machine unusable.

[0.6.2] - 2024-05-27

  • The WinSW service manager will delete service directories upon uninstall

[0.6.1] - 2024-05-03

  • Fix issue where calling stop on MacOS service does not halt the service due to the service's default auto-restart setting. (#19 https://redirect.github.com/chipsenkbeil/service-manager-rs/issues/19 )
  • Remove user specification for user-mode service definitions in Systemd. In a user-mode service, it will run as the current user, and the service won't actually start correctly if the user is specified. The user specification is really for system-wide services that don't run as root.

[0.6.0] - 2024-02-18

[0.5.1] - 2023-11-22

  • Fix a small issue in the WinSW service manager which caused the service management directories to be created at the current directory, rather than the intended location at C:\ProgramData\service-manager.

[0.5.0] - 2023-11-06

  • Support for the WinSW service manager was added. WinSW can run any application as a Windows service by providing the boilerplate code for interacting with the Windows service infrastructure. Most, but not all, configuration options are supported in this initial setup.
  • The ServiceInstallCtx is extended with optional working_directory and environment fields, which assign a working directory and pass a list of environment variables to the process launched by the service. Most service managers support these. This is a backwards incompatible change.

[0.4.0] - 2023-10-19 Added

  • The ServiceInstallCtx is extended with a username field to support

... (truncated) Commits

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 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)

You can view, comment on, or merge this pull request online at:

https://github.com/andrewdavidmackenzie/pingr/pull/75 Commit Summary

File Changes

(1 file https://github.com/andrewdavidmackenzie/pingr/pull/75/files)

Patch Links:

— Reply to this email directly, view it on GitHub https://github.com/andrewdavidmackenzie/pingr/pull/75, or unsubscribe https://github.com/notifications/unsubscribe-auth/ABKF4LDBJHTVIOFJBXMWO5LZFSQFTAVCNFSM6AAAAABIW5OUI2VHI2DSMVQWIX3LMV43ASLTON2WKOZSGMZTCNRWGU4TKMA . You are receiving this because you are subscribed to this thread.Message ID: @.***>

dependabot[bot] commented 3 months ago

Superseded by #76.