ruby-dbus 0.18.0.beta8 → 0.18.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/NEWS.md +36 -0
- data/VERSION +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 07f1f2fd26d13923b2601c9c3f29ccf57afd42c0348b937bceea0804eece6d66
|
4
|
+
data.tar.gz: 5ad80792234951e7ed422b6eba16e7f6e55b41f24a116ef40afaa7f32cdeef74
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: acbe18b2d9695f8959ef6d51a3871e989600291076d6eef870a9215768ed6c7afd599d3af2741e13a733fe2f5cc9f75fdf075a130cafd0a9144b4ca00bd80dc9
|
7
|
+
data.tar.gz: 0363375dd8c4465aa2650649d0bd62a4f95431b78178edb624a84f5326e395476e0c54e4755b27fedc86caf94b7c059abbdc15af28832417ec1d3e4770ea9ae0
|
data/NEWS.md
CHANGED
@@ -2,6 +2,42 @@
|
|
2
2
|
|
3
3
|
## Unreleased
|
4
4
|
|
5
|
+
## Ruby D-Bus 0.18.1 - 2022-07-13
|
6
|
+
|
7
|
+
No changes since 0.18.0.beta8.
|
8
|
+
Repeating the most important changes since 0.17.0:
|
9
|
+
|
10
|
+
API:
|
11
|
+
* Introduced DBus::Data classes, use them in Properties.Get,
|
12
|
+
Properties.GetAll to return correct types as declared ([#97][]).
|
13
|
+
* Introduced Object#dbus_properties_changed to send correctly typed property
|
14
|
+
values ([#115][]). Avoid calling PropertiesChanged directly as it will
|
15
|
+
guess the types.
|
16
|
+
* Service side `emits_changed_signal` to control emission of
|
17
|
+
PropertiesChanged: can be assigned within `dbus_interface` or as an option
|
18
|
+
when declaring properties ([#117][]).
|
19
|
+
* DBus.variant(type, value) is deprecated in favor of
|
20
|
+
Data::Variant.new(value, member_type:)
|
21
|
+
* Added type factories
|
22
|
+
* Type::Array[type]
|
23
|
+
* Type::Hash[key_type, value_type]
|
24
|
+
* Type::Struct[type1, type2...]
|
25
|
+
|
26
|
+
Bug fixes:
|
27
|
+
* Fix Object.dbus_reader to work with attr_accessor and automatically produce
|
28
|
+
dbus_properties_changed for properties that are read-write at
|
29
|
+
implementation side and read-only at D-Bus side ([#96][])
|
30
|
+
* Service-side properties: Fix Properties.Get, Properties.GetAll
|
31
|
+
to use the specific property signature, not the generic
|
32
|
+
Variant ([#97][], [#105][], [#109][]).
|
33
|
+
* Client-side properties: When calling Properties.Set in
|
34
|
+
ProxyObjectInterface#[]=, use the correct type ([#108][]).
|
35
|
+
* Added thorough tests (`spec/data/marshall.yaml`) to detect nearly all
|
36
|
+
invalid data at unmarshalling time.
|
37
|
+
|
38
|
+
Requirements:
|
39
|
+
* Require Ruby 2.4, because of RuboCop 1.0.
|
40
|
+
|
5
41
|
## Ruby D-Bus 0.18.0.beta8 - 2022-06-21
|
6
42
|
|
7
43
|
Bug fixes:
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.18.
|
1
|
+
0.18.1
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ruby-dbus
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.18.
|
4
|
+
version: 0.18.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ruby DBus Team
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-07-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rexml
|
@@ -216,9 +216,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
216
216
|
version: 2.4.0
|
217
217
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
218
218
|
requirements:
|
219
|
-
- - "
|
219
|
+
- - ">="
|
220
220
|
- !ruby/object:Gem::Version
|
221
|
-
version:
|
221
|
+
version: '0'
|
222
222
|
requirements: []
|
223
223
|
rubyforge_project:
|
224
224
|
rubygems_version: 2.7.6.3
|