]> git.ipfire.org Git - thirdparty/cups.git/log
thirdparty/cups.git
15 hours agoTranslated using Weblate (Portuguese) 1594/head
Américo Monteiro [Fri, 5 Jun 2026 21:41:32 +0000 (23:41 +0200)] 
Translated using Weblate (Portuguese)

Currently translated at 95.4% (3994 of 4183 strings)

Translation: CUPS/CUPS
Translate-URL: https://hosted.weblate.org/projects/cups/cups/pt/

13 days agoFix whitespace.
Michael R Sweet [Sun, 24 May 2026 18:41:21 +0000 (14:41 -0400)] 
Fix whitespace.

13 days agoFix test suite crash caused by changes for duplicate printers (Issue #1531)
Michael R Sweet [Sun, 24 May 2026 18:32:58 +0000 (14:32 -0400)] 
Fix test suite crash caused by changes for duplicate printers (Issue #1531)

13 days agoChangelog.
Michael R Sweet [Sun, 24 May 2026 17:29:13 +0000 (13:29 -0400)] 
Changelog.

13 days agoMerge pull request #1573 from abubakarsabir924-cell/fix-local-printer-duplicate-1531
Michael R Sweet [Sun, 24 May 2026 17:28:22 +0000 (13:28 -0400)] 
Merge pull request #1573 from abubakarsabir924-cell/fix-local-printer-duplicate-1531

Fix duplicate local printers in DNS-SD discovery (Issue #1531)

13 days agoMerge pull request #1577 from abubakarsabir924-cell/fix/issue-1304-satisfy-all
Michael R Sweet [Sun, 24 May 2026 17:25:13 +0000 (13:25 -0400)] 
Merge pull request #1577 from abubakarsabir924-cell/fix/issue-1304-satisfy-all

Fix: Satisfy all with multiple Require directives (issue #1304)

13 days agoMerge pull request #1582 from abubakarsabir924-cell/fix/docker-libcups-runtime-issue...
Michael R Sweet [Sun, 24 May 2026 17:16:05 +0000 (13:16 -0400)] 
Merge pull request #1582 from abubakarsabir924-cell/fix/docker-libcups-runtime-issue-1275

Fix Docker: embed rpath and copy libcups.so.2 into runtime stage (issue #1275)

2 weeks agoFix duplicate local printers using UUID comparison (Issue #1531) 1573/head
abubakarsabir924-cell [Sat, 23 May 2026 15:32:15 +0000 (11:32 -0400)] 
Fix duplicate local printers using UUID comparison (Issue #1531)

Updated fix based on michaelrsweet feedback:
- Added printer-uuid to pattrs array in _cupsGetDests()
- Compare UUID from DNS-SD TXT record against local queue
  printer-uuid values in cups_dest_query_cb()
- UUID is guaranteed unique unlike rp value

2 weeks agoRemove redundant libgnutls packages and translate comments to English 1582/head
abubakarsabir924-cell [Sat, 23 May 2026 14:47:16 +0000 (10:47 -0400)] 
Remove redundant libgnutls packages and translate comments to English

2 weeks agoFix review comments: use bool, English comments, collapse else-if 1577/head
abubakarsabir924-cell [Sat, 23 May 2026 03:40:06 +0000 (23:40 -0400)] 
Fix review comments: use bool, English comments, collapse else-if

2 weeks agoDon't strip '@domain' portion of username if StripUserDomain isn't enabled (Issue...
Michael R Sweet [Fri, 22 May 2026 20:14:33 +0000 (16:14 -0400)] 
Don't strip '@domain' portion of username if StripUserDomain isn't enabled (Issue #1584)

2 weeks agoFix: use --libdir=/usr/lib to ensure library installs to standard path
abubakarsabir924-cell [Tue, 19 May 2026 03:44:03 +0000 (23:44 -0400)] 
Fix: use --libdir=/usr/lib to ensure library installs to standard path

Previous approach used /usr/lib64 which is x86_64 specific and
not present in Ubuntu's ldconfig search path. Using --libdir=/usr/lib
at configure time ensures libcups.so.2 installs to the standard
location that ldconfig finds on all architectures.

Also using make install DESTDIR=/buildroot as suggested by
@michaelrsweet to copy the entire build root instead of
individual files.

Tested: container stays Up, curl returns HTTP 200

2 weeks agoAddress review feedback from @michaelrsweet
abubakarsabir924-cell [Tue, 19 May 2026 02:21:06 +0000 (22:21 -0400)] 
Address review feedback from @michaelrsweet

- Remove LDFLAGS rpath (not needed, not portable across architectures)
- Use make install DESTDIR=/buildroot instead of copying individual files
- Add lib64->lib symlink and run ldconfig for library discovery

Tested: container stays Up, curl returns HTTP 200

2 weeks agoFix Docker: embed rpath and copy runtime files (issue #1275)
abubakarsabir924-cell [Mon, 18 May 2026 22:10:23 +0000 (18:10 -0400)] 
Fix Docker: embed rpath and copy runtime files (issue #1275)

PR #1153 introduced a multi-stage Dockerfile but left two bugs:

1. libcups.so.2 was not copied into the runtime stage, causing:
   error while loading shared libraries: libcups.so.2: cannot open
   shared object file: No such file or directory

2. Runtime apt dependencies (openssl, libavahi-client3, etc.)
   were missing from the runtime stage.

Fix:
- Pass LDFLAGS='-Wl,-rpath,/usr/lib64' at configure time
- Explicitly COPY libcups.so.2 into runtime stage
- Install correct runtime packages in runtime stage
- Add Browsing No to prevent avahi crash in container
- Run ldconfig in runtime stage

Fixes #1275

3 weeks agoMerge pull request #1579 from weblate/weblate-cups-cups
Michael R Sweet [Fri, 15 May 2026 18:51:55 +0000 (14:51 -0400)] 
Merge pull request #1579 from weblate/weblate-cups-cups

Translations update from Hosted Weblate

3 weeks agoTranslated using Weblate (Italian) 1579/head
Pierfrancesco Passerini [Thu, 14 May 2026 18:17:48 +0000 (20:17 +0200)] 
Translated using Weblate (Italian)

Currently translated at 78.4% (3281 of 4183 strings)

Translation: CUPS/CUPS
Translate-URL: https://hosted.weblate.org/projects/cups/cups/it/

3 weeks agoFix: Satisfy all with multiple Require directives
abubakarsabir924-cell [Fri, 15 May 2026 00:42:34 +0000 (20:42 -0400)] 
Fix: Satisfy all with multiple Require directives

- conf.c: Prevent level overwrite when multiple Require
  directives are used in same Location block
- auth.c: Implement AND logic for Satisfy all with
  multiple Require conditions instead of OR logic

Fixes #1304

3 weeks agofix duplicate local printers in DNS-SD discovery (Issue #1531)
abubakarsabir924-cell [Sun, 10 May 2026 06:07:31 +0000 (02:07 -0400)] 
fix duplicate local printers in DNS-SD discovery (Issue #1531)

4 weeks agoMerge pull request #1571 from weblate/weblate-cups-cups
Michael R Sweet [Thu, 7 May 2026 14:36:23 +0000 (10:36 -0400)] 
Merge pull request #1571 from weblate/weblate-cups-cups

Translations update from Hosted Weblate

4 weeks agoTranslated using Weblate (Italian) 1571/head
Pierfrancesco Passerini [Thu, 7 May 2026 13:27:43 +0000 (15:27 +0200)] 
Translated using Weblate (Italian)

Currently translated at 78.1% (3267 of 4183 strings)

Translation: CUPS/CUPS
Translate-URL: https://hosted.weblate.org/projects/cups/cups/it/

4 weeks agoMerge pull request #1567 from weblate/weblate-cups-cups
Michael R Sweet [Wed, 6 May 2026 16:16:58 +0000 (12:16 -0400)] 
Merge pull request #1567 from weblate/weblate-cups-cups

Translations update from Hosted Weblate

4 weeks agoTranslated using Weblate (Italian) 1567/head
Pierfrancesco Passerini [Wed, 6 May 2026 13:19:56 +0000 (15:19 +0200)] 
Translated using Weblate (Italian)

Currently translated at 76.9% (3217 of 4183 strings)

Translation: CUPS/CUPS
Translate-URL: https://hosted.weblate.org/projects/cups/cups/it/

4 weeks agoSupport standard PPD, PWG, and legacy names for media/PageSize regardless of the...
Michael R Sweet [Mon, 4 May 2026 20:18:44 +0000 (16:18 -0400)] 
Support standard PPD, PWG, and legacy names for media/PageSize regardless of the PPD file (Issue #1375)

4 weeks agoDo some cleanup and generate the HTML version of the cupsd.conf man page.
Michael R Sweet [Mon, 4 May 2026 11:55:19 +0000 (07:55 -0400)] 
Do some cleanup and generate the HTML version of the cupsd.conf man page.

4 weeks agoMerge pull request #1564 from abubakarsabir924-cell/fix/auth-failure-log-level
Michael R Sweet [Mon, 4 May 2026 11:42:54 +0000 (07:42 -0400)] 
Merge pull request #1564 from abubakarsabir924-cell/fix/auth-failure-log-level

Add BrowseIPPSOnly boolean directive and update man page

4 weeks agoMerge pull request #1566 from weblate/weblate-cups-cups
Michael R Sweet [Sun, 3 May 2026 20:31:34 +0000 (16:31 -0400)] 
Merge pull request #1566 from weblate/weblate-cups-cups

Translations update from Hosted Weblate

4 weeks agoTranslated using Weblate (Danish) 1566/head
JonasBentin [Sat, 2 May 2026 18:28:30 +0000 (20:28 +0200)] 
Translated using Weblate (Danish)

Currently translated at 8.6% (363 of 4183 strings)

Translation: CUPS/CUPS
Translate-URL: https://hosted.weblate.org/projects/cups/cups/da/

4 weeks agoMerge pull request #1565 from weblate/weblate-cups-cups
Michael R Sweet [Sun, 3 May 2026 14:12:10 +0000 (10:12 -0400)] 
Merge pull request #1565 from weblate/weblate-cups-cups

Translations update from Hosted Weblate

5 weeks agoReuse TXT record for both IPP and IPPS services 1564/head
abubakarsabir924-cell [Sat, 2 May 2026 17:10:39 +0000 (22:10 +0500)] 
Reuse TXT record for both IPP and IPPS services

5 weeks agoFix: Initialize variable and wrap standard IPP registration
abubakarsabir924-cell [Sat, 2 May 2026 04:18:40 +0000 (09:18 +0500)] 
Fix: Initialize variable and wrap standard IPP registration

5 weeks agoTranslated using Weblate (German) 1565/head
Ettore Atalan [Fri, 1 May 2026 03:41:30 +0000 (05:41 +0200)] 
Translated using Weblate (German)

Currently translated at 74.4% (3113 of 4183 strings)

Translation: CUPS/CUPS
Translate-URL: https://hosted.weblate.org/projects/cups/cups/de/

5 weeks agoFix: Initialize variable and wrap standard IPP registration
abubakarsabir924-cell [Fri, 1 May 2026 20:07:13 +0000 (01:07 +0500)] 
Fix: Initialize variable and wrap standard IPP registration

5 weeks agoFix: Initialize variable and wrap standard IPP registration
abubakarsabir924-cell [Fri, 1 May 2026 20:00:27 +0000 (01:00 +0500)] 
Fix: Initialize variable and wrap standard IPP registration

5 weeks agoFix: Wrap IPP registration and restore deleted comment
abubakarsabir924-cell [Fri, 1 May 2026 19:25:11 +0000 (00:25 +0500)] 
Fix: Wrap IPP registration and restore deleted comment

5 weeks agoAdd BrowseIPPSOnly boolean directive and update man page
abubakarsabir924-cell [Fri, 1 May 2026 01:32:18 +0000 (06:32 +0500)] 
Add BrowseIPPSOnly boolean directive and update man page

5 weeks agoHandle some more compound makes (Issue #1313)
Michael R Sweet [Thu, 30 Apr 2026 21:29:26 +0000 (17:29 -0400)] 
Handle some more compound makes (Issue #1313)

5 weeks agoClean up and normalize all of the authentication/authorization messages.
Michael R Sweet [Tue, 28 Apr 2026 23:19:28 +0000 (19:19 -0400)] 
Clean up and normalize all of the authentication/authorization messages.

5 weeks agoMerge pull request #1561 from abubakarsabir924-cell/fix/auth-failure-log-level
Michael R Sweet [Tue, 28 Apr 2026 21:47:54 +0000 (17:47 -0400)] 
Merge pull request #1561 from abubakarsabir924-cell/fix/auth-failure-log-level

scheduler: Raise auth failure log level from DEBUG to WARN for fail2ban compatibility

5 weeks agoFix filter PPD keyword processing (Issue #1562)
Michael R Sweet [Tue, 28 Apr 2026 21:41:54 +0000 (17:41 -0400)] 
Fix filter PPD keyword processing (Issue #1562)

5 weeks agoUpdate authentication log messages for consistency and fix argument mismatch 1561/head
abubakar sabir [Tue, 28 Apr 2026 03:28:37 +0000 (08:28 +0500)] 
Update authentication log messages for consistency and fix argument mismatch

5 weeks agoscheduler: Restore pam_end() call after auth failure massage
abubakar sabir [Mon, 27 Apr 2026 22:49:31 +0000 (03:49 +0500)] 
scheduler: Restore pam_end() call after auth failure massage

5 weeks agoStandardize authentication failure logging
abubakar sabir [Mon, 27 Apr 2026 22:28:00 +0000 (03:28 +0500)] 
Standardize authentication failure logging

5 weeks agoStandardize authentication failure logging
abubakar sabir [Mon, 27 Apr 2026 20:16:36 +0000 (01:16 +0500)] 
Standardize authentication failure logging

5 weeks agoscheduler: add explicit WARN log with client IP when PAM authentication fails
abubakar sabir [Sun, 26 Apr 2026 20:04:44 +0000 (01:04 +0500)] 
scheduler: add explicit WARN log with client IP when PAM authentication fails

5 weeks agoscheduler: Raise auth failure log level from DEBUG to WARN for fail2ban compatibility
abubakar sabir [Sun, 26 Apr 2026 02:36:18 +0000 (07:36 +0500)] 
scheduler: Raise auth failure log level from DEBUG to WARN for fail2ban compatibility

6 weeks agoAdd yes and no translations to the new Kazakh messgae catalog.
Michael R Sweet [Fri, 24 Apr 2026 18:10:50 +0000 (14:10 -0400)] 
Add yes and no translations to the new Kazakh messgae catalog.

6 weeks agoClean up code formatting.
Michael R Sweet [Fri, 24 Apr 2026 18:05:19 +0000 (14:05 -0400)] 
Clean up code formatting.

6 weeks agoFix unauthenticated print policies (Issue #1557)
Michael R Sweet [Fri, 24 Apr 2026 18:01:37 +0000 (14:01 -0400)] 
Fix unauthenticated print policies (Issue #1557)

6 weeks agoUpdate the default policy for the Set-Printer-Attributes operation as admin.
Michael R Sweet [Wed, 22 Apr 2026 19:11:46 +0000 (15:11 -0400)] 
Update the default policy for the Set-Printer-Attributes operation as admin.

6 weeks agoAdd missing value tag test to cupsCheckDestSupported.
Michael R Sweet [Wed, 22 Apr 2026 19:04:07 +0000 (15:04 -0400)] 
Add missing value tag test to cupsCheckDestSupported.

6 weeks agoUpdate PPD generator to only support custom boolean, integer, and keyword member...
Michael R Sweet [Wed, 22 Apr 2026 18:55:22 +0000 (14:55 -0400)] 
Update PPD generator to only support custom boolean, integer, and keyword member attributes in job-presets-supported.

6 weeks agoUpdate translation guide.
Michael R Sweet [Sun, 19 Apr 2026 18:20:52 +0000 (14:20 -0400)] 
Update translation guide.

6 weeks agoUpdate desktop file with Romanian translations (Issue #1554)
Michael R Sweet [Sun, 19 Apr 2026 17:50:36 +0000 (13:50 -0400)] 
Update desktop file with Romanian translations (Issue #1554)

7 weeks agoMerge pull request #1552 from weblate/weblate-cups-cups
Michael R Sweet [Sat, 18 Apr 2026 21:06:45 +0000 (17:06 -0400)] 
Merge pull request #1552 from weblate/weblate-cups-cups

Translations update from Hosted Weblate

7 weeks agoAdded translation using Weblate (Kazakh) 1552/head
Baurzhan Muftakhidinov [Sat, 18 Apr 2026 18:22:18 +0000 (20:22 +0200)] 
Added translation using Weblate (Kazakh)

7 weeks agoTranslated using Weblate (Romanian)
Remus-Gabriel Chelu [Sat, 18 Apr 2026 16:37:34 +0000 (18:37 +0200)] 
Translated using Weblate (Romanian)

Currently translated at 100.0% (4183 of 4183 strings)

Translation: CUPS/CUPS
Translate-URL: https://hosted.weblate.org/projects/cups/cups/ro/

7 weeks agoFix regression in cupsRasterRead/WriteHeader.
Michael R Sweet [Thu, 16 Apr 2026 17:15:31 +0000 (13:15 -0400)] 
Fix regression in cupsRasterRead/WriteHeader.

7 weeks agoSend options for PCLm content as well (Issue #1551)
Michael R Sweet [Thu, 16 Apr 2026 13:31:55 +0000 (09:31 -0400)] 
Send options for PCLm content as well (Issue #1551)

7 weeks agoMerge pull request #1549 from weblate/weblate-cups-cups
Michael R Sweet [Wed, 15 Apr 2026 18:40:46 +0000 (14:40 -0400)] 
Merge pull request #1549 from weblate/weblate-cups-cups

Translations update from Hosted Weblate

7 weeks agoTranslated using Weblate (Spanish) 1549/head
Francisco Serrador [Tue, 14 Apr 2026 15:22:52 +0000 (17:22 +0200)] 
Translated using Weblate (Spanish)

Currently translated at 100.0% (4183 of 4183 strings)

Translation: CUPS/CUPS
Translate-URL: https://hosted.weblate.org/projects/cups/cups/es/

7 weeks agoCalculate actual size of number values when exporting, and fix argument to _cupsStrFo...
Michael R Sweet [Mon, 13 Apr 2026 18:50:28 +0000 (14:50 -0400)] 
Calculate actual size of number values when exporting, and fix argument to _cupsStrFormatd (Issue #1546)

7 weeks agoDon't allow form data to try setting environment variables, and duplicate environment...
Michael R Sweet [Mon, 13 Apr 2026 18:25:22 +0000 (14:25 -0400)] 
Don't allow form data to try setting environment variables, and duplicate environment variable values as needed (Issue #1547)

7 weeks agoFix builds on systems that don't define OFF_MAX.
Michael R Sweet [Mon, 13 Apr 2026 18:17:51 +0000 (14:17 -0400)] 
Fix builds on systems that don't define OFF_MAX.

7 weeks agoAlso allow a length of 841 points.
Michael R Sweet [Mon, 13 Apr 2026 18:00:52 +0000 (14:00 -0400)] 
Also allow a length of 841 points.

7 weeks agoAdd size check to A4 support (Issue #1544)
Michael R Sweet [Mon, 13 Apr 2026 17:58:16 +0000 (13:58 -0400)] 
Add size check to A4 support (Issue #1544)

7 weeks agoFix blank line detection in rastertolabel (Issue #1545)
Michael R Sweet [Mon, 13 Apr 2026 17:51:54 +0000 (13:51 -0400)] 
Fix blank line detection in rastertolabel (Issue #1545)

7 weeks agoLimit test page resolution from 1 to 9600dpi (Issue #1541)
Michael R Sweet [Mon, 13 Apr 2026 17:48:39 +0000 (13:48 -0400)] 
Limit test page resolution from 1 to 9600dpi (Issue #1541)

7 weeks agoUpdate processing of LimitRequestBody, MaxLogSize, and MaxRequestSize to support...
Michael R Sweet [Mon, 13 Apr 2026 17:18:29 +0000 (13:18 -0400)] 
Update processing of LimitRequestBody, MaxLogSize, and MaxRequestSize to support full range of file sizes (Issue #1540)

7 weeks agoProtect against deep collection values (Issue #1539)
Michael R Sweet [Mon, 13 Apr 2026 16:19:46 +0000 (12:19 -0400)] 
Protect against deep collection values (Issue #1539)

7 weeks agoRange check cached SNMP supply level info (Issue #1538)
Michael R Sweet [Mon, 13 Apr 2026 16:02:17 +0000 (12:02 -0400)] 
Range check cached SNMP supply level info (Issue #1538)

7 weeks agoFix rastertoepson allocation bug in unused driver code (Issue #1537)
Michael R Sweet [Mon, 13 Apr 2026 15:55:37 +0000 (11:55 -0400)] 
Fix rastertoepson allocation bug in unused driver code (Issue #1537)

7 weeks agoFix compiler warning about 'misleading indentation' in the macOS USB backend code.
Michael R Sweet [Mon, 13 Apr 2026 15:52:41 +0000 (11:52 -0400)] 
Fix compiler warning about 'misleading indentation' in the macOS USB backend code.

7 weeks agoLimit num_bytes for SNMP string values.
Michael R Sweet [Mon, 13 Apr 2026 15:47:05 +0000 (11:47 -0400)] 
Limit num_bytes for SNMP string values.

7 weeks agoMerge pull request #1536 from weblate/weblate-cups-cups
Michael R Sweet [Sun, 12 Apr 2026 15:38:55 +0000 (11:38 -0400)] 
Merge pull request #1536 from weblate/weblate-cups-cups

Translations update from Hosted Weblate

8 weeks agoTranslated using Weblate (Spanish) 1536/head
Yago Raña Gayoso [Fri, 10 Apr 2026 18:11:40 +0000 (20:11 +0200)] 
Translated using Weblate (Spanish)

Currently translated at 99.9% (4181 of 4183 strings)

Translation: CUPS/CUPS
Translate-URL: https://hosted.weblate.org/projects/cups/cups/es/

8 weeks agoFix a long-standing logging issue with messages logged from a background printer...
Michael R Sweet [Fri, 10 Apr 2026 20:05:46 +0000 (16:05 -0400)] 
Fix a long-standing logging issue with messages logged from a background printer setup thread (Issue #1450)

8 weeks agoMake sure xxx-default and xxx-supported string attributes are strings.
Michael R Sweet [Fri, 10 Apr 2026 19:21:41 +0000 (15:21 -0400)] 
Make sure xxx-default and xxx-supported string attributes are strings.

8 weeks agoMerge pull request #1533 from weblate/weblate-cups-cups
Michael R Sweet [Thu, 9 Apr 2026 19:03:15 +0000 (15:03 -0400)] 
Merge pull request #1533 from weblate/weblate-cups-cups

Translations update from Hosted Weblate

8 weeks agoTranslated using Weblate (Spanish) 1533/head
Yago Raña Gayoso [Wed, 8 Apr 2026 17:16:08 +0000 (19:16 +0200)] 
Translated using Weblate (Spanish)

Currently translated at 99.8% (4176 of 4183 strings)

Translation: CUPS/CUPS
Translate-URL: https://hosted.weblate.org/projects/cups/cups/es/

8 weeks agoMirror change for GSSAPI (Kerberos) support.
Michael R Sweet [Thu, 9 Apr 2026 16:41:18 +0000 (12:41 -0400)] 
Mirror change for GSSAPI (Kerberos) support.

8 weeks agoTweak wording.
Michael R Sweet [Wed, 8 Apr 2026 21:13:30 +0000 (17:13 -0400)] 
Tweak wording.

8 weeks agoFix get_options regression (Issue #1532)
Michael R Sweet [Wed, 8 Apr 2026 20:42:48 +0000 (16:42 -0400)] 
Fix get_options regression (Issue #1532)

8 weeks agoMerge pull request #1530 from weblate/weblate-cups-cups
Michael R Sweet [Wed, 8 Apr 2026 14:59:56 +0000 (10:59 -0400)] 
Merge pull request #1530 from weblate/weblate-cups-cups

Translations update from Hosted Weblate

8 weeks agoTranslated using Weblate (Spanish) 1530/head
Yago Raña Gayoso [Mon, 6 Apr 2026 20:28:03 +0000 (22:28 +0200)] 
Translated using Weblate (Spanish)

Currently translated at 99.7% (4173 of 4183 strings)

Translation: CUPS/CUPS
Translate-URL: https://hosted.weblate.org/projects/cups/cups/es/

8 weeks agoFix DNS-SD callbacks on Windows (Issue #1528)
Michael R Sweet [Tue, 7 Apr 2026 15:31:23 +0000 (11:31 -0400)] 
Fix DNS-SD callbacks on Windows (Issue #1528)

2 months agoFix CodeQL duplicate variable.
Michael R Sweet [Sun, 5 Apr 2026 15:46:46 +0000 (11:46 -0400)] 
Fix CodeQL duplicate variable.

2 months agoFix deadlock issue with RSS subscriptions (Issue #1526)
Michael R Sweet [Sun, 5 Apr 2026 15:43:42 +0000 (11:43 -0400)] 
Fix deadlock issue with RSS subscriptions (Issue #1526)

2 months agoExpire per-printer subscriptions before deleting.
Michael R Sweet [Sun, 5 Apr 2026 15:32:33 +0000 (11:32 -0400)] 
Expire per-printer subscriptions before deleting.

2 months agoFix parsing bug in cgiCheckVariables.
Michael R Sweet [Sun, 5 Apr 2026 14:59:49 +0000 (10:59 -0400)] 
Fix parsing bug in cgiCheckVariables.

2 months agoRange check job-password-supported.
Michael R Sweet [Sun, 5 Apr 2026 14:44:10 +0000 (10:44 -0400)] 
Range check job-password-supported.

2 months agoFix an httpPeek edge case on compressed streams.
Michael R Sweet [Sun, 5 Apr 2026 14:24:16 +0000 (10:24 -0400)] 
Fix an httpPeek edge case on compressed streams.

2 months agoDon't call inflateEnd if inflateCopy fails.
Michael R Sweet [Sun, 5 Apr 2026 13:57:34 +0000 (09:57 -0400)] 
Don't call inflateEnd if inflateCopy fails.

2 months agoSanity check HWResolution when writing Apple Raster.
Michael R Sweet [Sun, 5 Apr 2026 13:46:32 +0000 (09:46 -0400)] 
Sanity check HWResolution when writing Apple Raster.

2 months agoRange check cupsBytesPerLine in rastertoepson.
Michael R Sweet [Sun, 5 Apr 2026 13:42:39 +0000 (09:42 -0400)] 
Range check cupsBytesPerLine in rastertoepson.

2 months agoFix an SNMP bug in the IPP backend.
Michael R Sweet [Sun, 5 Apr 2026 13:35:41 +0000 (09:35 -0400)] 
Fix an SNMP bug in the IPP backend.

2 months agoProtect against a driver reporting a supply type with a trailing '-'.
Michael R Sweet [Sun, 5 Apr 2026 13:22:58 +0000 (09:22 -0400)] 
Protect against a driver reporting a supply type with a trailing '-'.

2 months agoMerge pull request #1525 from weblate/weblate-cups-cups
Michael R Sweet [Fri, 3 Apr 2026 21:15:26 +0000 (17:15 -0400)] 
Merge pull request #1525 from weblate/weblate-cups-cups

Translations update from Hosted Weblate

2 months agoTranslated using Weblate (Ukrainian) 1525/head
Gordon Freeman [Thu, 2 Apr 2026 11:09:06 +0000 (13:09 +0200)] 
Translated using Weblate (Ukrainian)

Currently translated at 0.4% (19 of 4183 strings)

Translation: CUPS/CUPS
Translate-URL: https://hosted.weblate.org/projects/cups/cups/uk/

2 months agoUpdate deprecation messages to point to new web page (Issue #1357)
Michael R Sweet [Wed, 1 Apr 2026 17:31:27 +0000 (13:31 -0400)] 
Update deprecation messages to point to new web page (Issue #1357)

2 months agoMerge pull request #1524 from OpenPrinting/dependabot/github_actions/microsoft/setup...
Michael R Sweet [Wed, 1 Apr 2026 12:48:32 +0000 (08:48 -0400)] 
Merge pull request #1524 from OpenPrinting/dependabot/github_actions/microsoft/setup-msbuild-3.0.0

Bump microsoft/setup-msbuild from 2.0.0 to 3.0.0