Skip to content

Commit

Permalink
Merge branch 'OpenPrinting:master' into pdfio-implement
Browse files Browse the repository at this point in the history
  • Loading branch information
uddhavphatak authored Oct 19, 2024
2 parents 475dd85 + 5cc755c commit 8c7e9fb
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 5 deletions.
13 changes: 12 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,15 @@
# CHANGES - OpenPrinting libcupsfilters v2.1b1 - 2024-08-14
# CHANGES - OpenPrinting libcupsfilters v2.1.0 - 2024-10-17

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

- `cfGetPrinterAttributes5()`: Validate response attributes before return
The IPP print destination which we are querying can be corrupted or
forged, so validate the response to strenghten security. Fixes
CVE-2024-47076.

- Include `cupsfilters/testfilters.sh` in release tarball
`check_SCRIPTS` is not automatically included, has to be added to
EXTRA_DIST.

## CHANGES IN V2.1b1 (14th August 2024)

Expand Down
4 changes: 2 additions & 2 deletions INSTALL.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@

# libcupsfilters v2.1b1 Installation Guide
# libcupsfilters v2.1.0 Installation Guide


## Overview

This guide provides step-by-step instructions for compiling and installing the OpenPrinting libcupsfilters version 2.0.0 from source code. For detailed information about libcupsfilters, refer to "README.md", and for a complete change log, see "CHANGES.md".
This guide provides step-by-step instructions for compiling and installing OpenPrinting libcupsfilters from source code. For detailed information about libcupsfilters, refer to "README.md", and for a complete change log, see "CHANGES.md".

### Important Note
For non-PDF printers (excluding Mac OS X users), you must install Ghostscript with specific drivers ("cups", "pwgraster", "appleraster", "urf", "pclm", "pclm8", "pdfwrite", "pdfimage24", "pdfimage32", "pdfimage8") after installing CUPS and before installing libcupsfilters.
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 libcupsfilters v2.1b1 - 2024-08-14
# OpenPrinting libcupsfilters 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([libcupsfilters], [2.1b1], [https://github.com/OpenPrinting/libcupsfilters/issues], [libcupsfilters], [https://github.com/OpenPrinting/libcupsfilters/])
AC_INIT([libcupsfilters], [2.1.0], [https://github.com/OpenPrinting/libcupsfilters/issues], [libcupsfilters], [https://github.com/OpenPrinting/libcupsfilters/])
libcupsfilters_version="AC_PACKAGE_VERSION"
libcupsfilters_version_major="`echo AC_PACKAGE_VERSION | awk -F. '{print $1}'`"
libcupsfilters_version_major="`echo AC_PACKAGE_VERSION | awk -F. '{printf("%d\n",$2);}'`"
Expand Down

0 comments on commit 8c7e9fb

Please sign in to comment.