Skip to content

Commit

Permalink
cups-browsed 2.1.0 Release
Browse files Browse the repository at this point in the history
  • Loading branch information
tillkamppeter committed Oct 17, 2024
1 parent 2933c16 commit ec1079c
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 4 deletions.
27 changes: 26 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,29 @@
# CHANGES - OpenPrinting cups-browsed v2.0.1 - 2024-08-15
# CHANGES - OpenPrinting cups-browsed v2.1.0 - 2024-10-17

## CHANGES IN V2.1.0 (17th October 2024)

- Removed support for legacy CUPS browsing and for LDAP
Legacy CUPS browsing is not needed any more and, our implementation
accepting any UDP packet on port 631, causes vulnerabilities, and
our LDAP support is does not comly with RFC 7612 and is therefore
limited. Fixes CVE-2024-47176 and CVE-2024-47850

- Default `BrowseRemoteProtocols` should not include `cups` protocol
Works around CVE-2024-47176, the fix is the complete removal of
legacy CUPS Browsing functionality

- Do not generate PPD for remote raw queues
If the destination queue is raw, the local queue generated by
cups-browsed should also be raw (Pull request #44).

- `daemon/cups-browsed.service`: Add `system-cups.slice`
The `system-cups.slice` file is not required. The `system-cups`
slice will be automatically created if the file is missing (cups
Pull request #1035, Pull request #35).

- `cups-browsed.c`: Remove duplicate `#include ...`
Pull request #40


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

Expand Down
2 changes: 1 addition & 1 deletion INSTALL
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
INSTALL - OpenPrinting cups-browsed v2.0.1 - 2024-08-15
INSTALL - OpenPrinting cups-browsed v2.1.0 - 2024-10-17
-------------------------------------------------------

This file describes how to compile and install OpenPrinting
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# OpenPrinting cups-browsed v2.0.1 - 2024-08-15
# OpenPrinting cups-browsed v2.1.0 - 2024-10-17

Looking for compile instructions? Read the file "INSTALL"
instead...
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ AC_PREREQ([2.65])
# ====================
# Version informations
# ====================
AC_INIT([cups-browsed], [2.0.1], [https://github.com/OpenPrinting/cups-browsed/issues], [cups-browsed], [https://github.com/OpenPrinting/cups-browsed/])
AC_INIT([cups-browsed], [2.1.0], [https://github.com/OpenPrinting/cups-browsed/issues], [cups-browsed], [https://github.com/OpenPrinting/cups-browsed/])
cups_browsed_version="AC_PACKAGE_VERSION"
cups_browsed_version_major="`echo AC_PACKAGE_VERSION | awk -F. '{print $1}'`"
cups_browsed_version_major="`echo AC_PACKAGE_VERSION | awk -F. '{printf("%d\n",$2);}'`"
Expand Down

0 comments on commit ec1079c

Please sign in to comment.