-
Notifications
You must be signed in to change notification settings - Fork 0
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
Update service-manager requirement from 0.6.0 to 0.7.0 #75
Closed
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Updates the requirements on [service-manager](https://github.com/chipsenkbeil/service-manager-rs) to permit the latest version. - [Changelog](https://github.com/chipsenkbeil/service-manager-rs/blob/main/CHANGELOG.md) - [Commits](chipsenkbeil/service-manager-rs@v0.6.0...v0.7.0) --- updated-dependencies: - dependency-name: service-manager dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
@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
<chipsenkbeil/service-manager-rs@2a76017>
Bump version to 0.7.0
- 743a911
<chipsenkbeil/service-manager-rs@743a911>
Introduce autostart field on ServiceInstallCtx (#25
<https://redirect.github.com/chipsenkbeil/service-manager-rs/issues/25>
)
- bc95878
<chipsenkbeil/service-manager-rs@bc95878>
Bump version to 0.6.2
- 41a06af
<chipsenkbeil/service-manager-rs@41a06af>
Update changelog to reflect 0.6.2
- 2cb4ca9
<chipsenkbeil/service-manager-rs@2cb4ca9>
WinSW uninstall deletes service directories (#24
<https://redirect.github.com/chipsenkbeil/service-manager-rs/issues/24>
)
- 0329f6f
<chipsenkbeil/service-manager-rs@0329f6f>
Bump to 0.6.1
- bcf66bd
<chipsenkbeil/service-manager-rs@bcf66bd>
Remove user for user level service in Systemd (#22
<https://redirect.github.com/chipsenkbeil/service-manager-rs/issues/22>
)
- 60db459
<chipsenkbeil/service-manager-rs@60db459>
fix: remove calls to launchctl start and stop (#21
<https://redirect.github.com/chipsenkbeil/service-manager-rs/issues/21>
)
- 2f8934c
<chipsenkbeil/service-manager-rs@2f8934c>
Disable rc.d tests until we have time to investigate the faulty environment
- c79c98c
<chipsenkbeil/service-manager-rs@c79c98c>
Update changelog and apply 'cargo fmt --all'
- Additional commits viewable in compare view
<chipsenkbeil/service-manager-rs@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 <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)
------------------------------
You can view, comment on, or merge this pull request online at:
#75
Commit Summary
- 57117b1
<57117b1>
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
<#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. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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 <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)