Closed dependabot[bot] closed 3 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
- Derive basic traits on the Service context structs. (#18 https://redirect.github.com/chipsenkbeil/service-manager-rs/issues/18 )
- Introduced support for specifying environment variables for systemd. The specified variables are now written on separate lines. (#17 https://redirect.github.com/chipsenkbeil/service-manager-rs/issues/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 https://github.com/chipsenkbeil/service-manager-rs/commit/2a760172e92d39877c49364cc63860de33721460 Bump version to 0.7.0
- 743a911 https://github.com/chipsenkbeil/service-manager-rs/commit/743a9116c580139ccb030d1f5e6a0d91c540c0e6 Introduce autostart field on ServiceInstallCtx (#25 https://redirect.github.com/chipsenkbeil/service-manager-rs/issues/25 )
- bc95878 https://github.com/chipsenkbeil/service-manager-rs/commit/bc95878f6f565ac2066a1c74d1a079d8df132260 Bump version to 0.6.2
- 41a06af https://github.com/chipsenkbeil/service-manager-rs/commit/41a06af82b13e7200af58a4e19e72b23579501a7 Update changelog to reflect 0.6.2
- 2cb4ca9 https://github.com/chipsenkbeil/service-manager-rs/commit/2cb4ca980d4c5e31b0e8cda239490ca74d206be9 WinSW uninstall deletes service directories (#24 https://redirect.github.com/chipsenkbeil/service-manager-rs/issues/24 )
- 0329f6f https://github.com/chipsenkbeil/service-manager-rs/commit/0329f6fa3cb177f56e3508802ce2ca8e6c178228 Bump to 0.6.1
- bcf66bd https://github.com/chipsenkbeil/service-manager-rs/commit/bcf66bda429ab77dd2917fb4646fc61357f955f0 Remove user for user level service in Systemd (#22 https://redirect.github.com/chipsenkbeil/service-manager-rs/issues/22 )
- 60db459 https://github.com/chipsenkbeil/service-manager-rs/commit/60db4590725575a815b9a91ada74868bfcc72ebb fix: remove calls to launchctl start and stop (#21 https://redirect.github.com/chipsenkbeil/service-manager-rs/issues/21 )
- 2f8934c https://github.com/chipsenkbeil/service-manager-rs/commit/2f8934c4408882a692e520a59894fb6eba2988a7 Disable rc.d tests until we have time to investigate the faulty environment
- c79c98c https://github.com/chipsenkbeil/service-manager-rs/commit/c79c98cb94f5c357e7360ec2ca082cf3a79f385e Update changelog and apply 'cargo fmt --all'
- Additional commits viewable in compare view https://github.com/chipsenkbeil/service-manager-rs/compare/v0.6.0...v0.7.0
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
- 57117b1 https://github.com/andrewdavidmackenzie/pingr/pull/75/commits/57117b10b0cf727c47f71dd531345099bfd2c452 Update service-manager requirement from 0.6.0 to 0.7.0
File Changes
(1 file https://github.com/andrewdavidmackenzie/pingr/pull/75/files)
- M wimon/Cargo.toml https://github.com/andrewdavidmackenzie/pingr/pull/75/files#diff-6c3cfda70bba23b6325207f8c297b3d42e9a38698c4d466967ce309d79409066 (2)
Patch Links:
- https://github.com/andrewdavidmackenzie/pingr/pull/75.patch
- https://github.com/andrewdavidmackenzie/pingr/pull/75.diff
— 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: @.***>
Superseded by #76.
Updates the requirements on service-manager to permit the latest version.
Changelog
Sourced from service-manager's changelog.
... (truncated)
Commits
2a76017
Bump version to 0.7.0743a911
Introduceautostart
field onServiceInstallCtx
(#25)bc95878
Bump version to 0.6.241a06af
Update changelog to reflect 0.6.22cb4ca9
WinSW uninstall deletes service directories (#24)0329f6f
Bump to 0.6.1bcf66bd
Remove user for user level service in Systemd (#22)60db459
fix: remove calls to launchctlstart
andstop
(#21)2f8934c
Disable rc.d tests until we have time to investigate the faulty environmentc79c98c
Update changelog and apply 'cargo fmt --all'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