Skip to content

Commit fa91f38

Browse files
author
Radovan Sroka
committed
Preparation for release
Signed-off-by: Radovan Sroka <rsroka@redhat.com>
1 parent 574ba93 commit fa91f38

3 files changed

Lines changed: 56 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,54 @@
11
# Change Log
22

3+
4+
## 0.7.6 - 2019-11-08
5+
6+
### Added
7+
- Added missing options in manpage usbguard-daemon(8)
8+
- Extended the functionality of allow/block/reject commands
9+
- the command can handle rule as a param and not only its ID
10+
- e.g. in case of allow, command will allow each device that matches provided rule
11+
- Added debug info for malformed descriptors
12+
13+
### Fixed/Changed
14+
- Changed default backend to uevent
15+
- Fixed handling of add uevents during scanning
16+
- now we are sure that the enumeration is completed before processing any uevent
17+
- we are trying to avoid a race where the kernel is still enumerating the devices
18+
- and send the uevent while the parent is being authorised
19+
- Silenced 'bind' and 'unbind' uevents
20+
21+
22+
## 0.7.5 - 2019-07-02
23+
24+
### Added
25+
- Added daemon configuration option HidePII
26+
- Added check to avoid conflict between ASAN and TSAN
27+
- Added daemon configuration option for authorized_default
28+
- Added devpath option to generate-policy
29+
- Added # line comments to the rule grammar
30+
- Added ImplicitPolicyTarget to get/set parameter methods
31+
- Added option to filter rules by label when listing
32+
- Added the label attribute to rule
33+
- Added PropertyParameterChanged signal
34+
- Added support for portX/connect_type attribute
35+
- Added temporary option to append-rule
36+
- Added versioning to DBus service
37+
- Added optional LDAP support
38+
39+
### Fixed/Changed
40+
- Fixed invalid return value in Rule::Attribute::setSolveEqualsOrdered
41+
- Fixed KeyValueParser to validate keys only when known names are set
42+
- Fixed uninitialized variables found by coverity
43+
- Fixes and cleanups based on LGTM.com report
44+
- Hardened systemd service
45+
- Rename ListRules parameter 'query' to 'label'
46+
- Skip empty lines in usbguard-rule-parser
47+
48+
### Removed
49+
- The proof-of-concept Qt applet was removed. It is going to be maintained in a simplified form as a separate project.
50+
51+
352
## 0.7.4 - 2018-07-12
453

554
### Fixed/Changed
@@ -8,6 +57,7 @@
857
- Replaced Boost library based ext/stdio_filebuf.h implementation
958
with a custom FDStreamBuf implementation
1059

60+
1161
## 0.7.3 - 2018-07-11
1262

1363
### Changed

RELEASE_PROCESS.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,9 @@ $ git clean -x -f -d
1111
```
1212
$ ./autogen.sh
1313
$ mkdir build; cd build
14-
$ ../configure --enable-full-test-suite
15-
$ make check
14+
$ ../configure --enable-full-test-suite --with-crypto-library=gcrypt --with-ldap
15+
$ make
16+
$ sudo make check
1617
$ cd ..; rm -rf build
1718
```
1819

@@ -23,7 +24,7 @@ $ cd ..; rm -rf build
2324
```
2425
$ ./autogen.sh
2526
$ mkdir build; cd build
26-
$ ../configure
27+
$ ../configure --with-crypto-library=gcrypt
2728
$ make dist
2829
```
2930

@@ -39,7 +40,7 @@ $ git push origin usbguard-0.x.x
3940
```
4041
$ sha256sum usbguard-0.x.y.tar.gz > usbguard-0.x.y.tar.gz.sum
4142
$ gpg --armor --detach-sign usbguard-0.x.y.tar.gz
42-
$ gpg --clearsign usbguard-0.7.5.tar.gz.sum
43+
$ gpg --clearsign usbguard-0.x.y.tar.gz.sum
4344
```
4445

4546
7. Create a new GitHub release using the associated tag; add the relevant section from CHANGELOG.md. Upload:

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.7.5
1+
0.7.6

0 commit comments

Comments
 (0)