async-service 0.24.0 → 0.25.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- checksums.yaml.gz.sig +0 -0
- data/lib/async/service/managed/environment.rb +1 -0
- data/lib/async/service/managed/service.rb +0 -2
- data/lib/async/service/version.rb +1 -1
- data/readme.md +8 -11
- data/releases.md +8 -0
- data.tar.gz.sig +0 -0
- metadata +2 -2
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 12c3f120c5c934839cfe37a81db340866c28e6d4b5ff9240c9d5bc58f3ad9ccb
|
|
4
|
+
data.tar.gz: a630283b433dea14ab8563fdc9819d1d878f15a0f13b0346a1c537819df09b23
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8563cd67bc46bdf2fdd01b2d026fffc6b580e7ce329037b481083218353a268021d8a57b44e44446d2f560f7f2b88e60d34d0b5dc0337b5c4dfcb568906aeacf
|
|
7
|
+
data.tar.gz: 3ae5883cc880484fb100a3cfa565e890ae2fa2c749fdda48956f2b8dc0a4c5c575366e52700a85ad1090cd938fa5ce57b1f056cc1eacf309f0622f67fa415f58
|
checksums.yaml.gz.sig
CHANGED
|
Binary file
|
data/readme.md
CHANGED
|
@@ -31,6 +31,14 @@ Please see the [project documentation](https://socketry.github.io/async-service/
|
|
|
31
31
|
|
|
32
32
|
Please see the [project releases](https://socketry.github.io/async-service/releases/index) for all releases.
|
|
33
33
|
|
|
34
|
+
### v0.25.0
|
|
35
|
+
|
|
36
|
+
- Configured preload failures now abort service startup instead of being logged and ignored, preventing services from starting with partially initialized state.
|
|
37
|
+
|
|
38
|
+
### v0.24.1
|
|
39
|
+
|
|
40
|
+
- Managed services now pass their service name through container options by default, restoring process titles for forked and hybrid containers.
|
|
41
|
+
|
|
34
42
|
### v0.23.0
|
|
35
43
|
|
|
36
44
|
- `Async::Service::Generic.wrap` now checks for a `make_service(environment)` method on the evaluator before falling back to `service_class`. This allows environments to compose child environments and return a fully-constructed service without introducing a dedicated service class.
|
|
@@ -71,17 +79,6 @@ Please see the [project releases](https://socketry.github.io/async-service/relea
|
|
|
71
79
|
- Emit prepared and running log messages with durations (e.g. how long it took to transition to prepared and running states).
|
|
72
80
|
- `Async::Service::Configuration.build{|loader|...}` can now take an argument for more flexible configuration construction.
|
|
73
81
|
|
|
74
|
-
### v0.17.0
|
|
75
|
-
|
|
76
|
-
- `ManagedService` now sends `status!` messages during startup to prevent premature health check timeouts for slow-starting services.
|
|
77
|
-
- Support for `startup_timeout` option via `container_options` to detect processes that hang during startup and never become ready.
|
|
78
|
-
|
|
79
|
-
### v0.16.0
|
|
80
|
-
|
|
81
|
-
- Renamed `Async::Service::Generic` -\> `Async::Service::GenericService`, added compatibilty alias.
|
|
82
|
-
- Renamed `Async::Service::Managed::Service` -\> `Async::Service::ManagedService`.
|
|
83
|
-
- Renamed `Async::Service::Managed::Environment` -\> `Async::Service::ManagedEnvironment`.
|
|
84
|
-
|
|
85
82
|
## Contributing
|
|
86
83
|
|
|
87
84
|
We welcome contributions to this project.
|
data/releases.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Releases
|
|
2
2
|
|
|
3
|
+
## v0.25.0
|
|
4
|
+
|
|
5
|
+
- Configured preload failures now abort service startup instead of being logged and ignored, preventing services from starting with partially initialized state.
|
|
6
|
+
|
|
7
|
+
## v0.24.1
|
|
8
|
+
|
|
9
|
+
- Managed services now pass their service name through container options by default, restoring process titles for forked and hybrid containers.
|
|
10
|
+
|
|
3
11
|
## v0.23.0
|
|
4
12
|
|
|
5
13
|
- `Async::Service::Generic.wrap` now checks for a `make_service(environment)` method on the evaluator before falling back to `service_class`. This allows environments to compose child environments and return a fully-constructed service without introducing a dedicated service class.
|
data.tar.gz.sig
CHANGED
|
Binary file
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: async-service
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.25.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Samuel Williams
|
|
@@ -134,7 +134,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
134
134
|
- !ruby/object:Gem::Version
|
|
135
135
|
version: '0'
|
|
136
136
|
requirements: []
|
|
137
|
-
rubygems_version: 4.0.
|
|
137
|
+
rubygems_version: 4.0.10
|
|
138
138
|
specification_version: 4
|
|
139
139
|
summary: A service layer for Async.
|
|
140
140
|
test_files: []
|
metadata.gz.sig
CHANGED
|
Binary file
|