Skip to content

Commit ec1079c

Browse files
committed
cups-browsed 2.1.0 Release
1 parent 2933c16 commit ec1079c

File tree

4 files changed

+29
-4
lines changed

4 files changed

+29
-4
lines changed

CHANGES.md

Lines changed: 26 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,29 @@
1-
# CHANGES - OpenPrinting cups-browsed v2.0.1 - 2024-08-15
1+
# CHANGES - OpenPrinting cups-browsed v2.1.0 - 2024-10-17
2+
3+
## CHANGES IN V2.1.0 (17th October 2024)
4+
5+
- Removed support for legacy CUPS browsing and for LDAP
6+
Legacy CUPS browsing is not needed any more and, our implementation
7+
accepting any UDP packet on port 631, causes vulnerabilities, and
8+
our LDAP support is does not comly with RFC 7612 and is therefore
9+
limited. Fixes CVE-2024-47176 and CVE-2024-47850
10+
11+
- Default `BrowseRemoteProtocols` should not include `cups` protocol
12+
Works around CVE-2024-47176, the fix is the complete removal of
13+
legacy CUPS Browsing functionality
14+
15+
- Do not generate PPD for remote raw queues
16+
If the destination queue is raw, the local queue generated by
17+
cups-browsed should also be raw (Pull request #44).
18+
19+
- `daemon/cups-browsed.service`: Add `system-cups.slice`
20+
The `system-cups.slice` file is not required. The `system-cups`
21+
slice will be automatically created if the file is missing (cups
22+
Pull request #1035, Pull request #35).
23+
24+
- `cups-browsed.c`: Remove duplicate `#include ...`
25+
Pull request #40
26+
227

328
## CHANGES IN V2.0.1 (15th August 2024)
429

INSTALL

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
INSTALL - OpenPrinting cups-browsed v2.0.1 - 2024-08-15
1+
INSTALL - OpenPrinting cups-browsed v2.1.0 - 2024-10-17
22
-------------------------------------------------------
33

44
This file describes how to compile and install OpenPrinting

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# OpenPrinting cups-browsed v2.0.1 - 2024-08-15
1+
# OpenPrinting cups-browsed v2.1.0 - 2024-10-17
22

33
Looking for compile instructions? Read the file "INSTALL"
44
instead...

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ AC_PREREQ([2.65])
55
# ====================
66
# Version informations
77
# ====================
8-
AC_INIT([cups-browsed], [2.0.1], [https://github.com/OpenPrinting/cups-browsed/issues], [cups-browsed], [https://github.com/OpenPrinting/cups-browsed/])
8+
AC_INIT([cups-browsed], [2.1.0], [https://github.com/OpenPrinting/cups-browsed/issues], [cups-browsed], [https://github.com/OpenPrinting/cups-browsed/])
99
cups_browsed_version="AC_PACKAGE_VERSION"
1010
cups_browsed_version_major="`echo AC_PACKAGE_VERSION | awk -F. '{print $1}'`"
1111
cups_browsed_version_major="`echo AC_PACKAGE_VERSION | awk -F. '{printf("%d\n",$2);}'`"

0 commit comments

Comments
 (0)