Skip to content

Commit 0894503

Browse files
committed
cups-browsed 2.1.1 Release
1 parent f6bf616 commit 0894503

File tree

4 files changed

+20
-4
lines changed

4 files changed

+20
-4
lines changed

CHANGES.md

+17-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,20 @@
1-
# CHANGES - OpenPrinting cups-browsed v2.1.0 - 2024-10-17
1+
# CHANGES - OpenPrinting cups-browsed v2.1.1 - 2025-01-08
2+
3+
## CHANGES IN V2.1.1 (8th January 2025)
4+
5+
- Do not use global HTTP connection to local CUPS
6+
cups-browsed used a simgle HTTP connection to CUPS and preserved it
7+
in a global variable throughout its whole life. With the addition of
8+
multi-threading this caused race-conditions and especially
9+
cups-browsed getting stuck in a busy loop. Now we create separate
10+
HTTP connections each time we need one, to eliminate this problem
11+
(Ubuntu bugs #2049315, #2067918, and #2073504, CUPS Issue #879).
12+
13+
- Fix uninitialized make_model in create_queue()
14+
Initialized the buffer by putting a terminating zero to its
15+
beginning, also removed a wrong use of sizeof() (applying to pointer
16+
no to buffer, Issue #42).
17+
218

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

INSTALL

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
INSTALL - OpenPrinting cups-browsed v2.1.0 - 2024-10-17
1+
INSTALL - OpenPrinting cups-browsed v2.1.1 - 2025-01-08
22
-------------------------------------------------------
33

44
This file describes how to compile and install OpenPrinting

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# OpenPrinting cups-browsed v2.1.0 - 2024-10-17
1+
# OpenPrinting cups-browsed v2.1.1 - 2025-01-08
22

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

configure.ac

+1-1
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.1.0], [https://github.com/OpenPrinting/cups-browsed/issues], [cups-browsed], [https://github.com/OpenPrinting/cups-browsed/])
8+
AC_INIT([cups-browsed], [2.1.1], [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)