mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-12-22 08:21:52 +00:00
Release 4.12.0
Signed-off-by: Edward Z. Yang <ezyang@mit.edu>
This commit is contained in:
parent
3060a5606c
commit
a617e55bc6
2
Doxyfile
2
Doxyfile
@ -31,7 +31,7 @@ PROJECT_NAME = HTMLPurifier
|
|||||||
# This could be handy for archiving the generated documentation or
|
# This could be handy for archiving the generated documentation or
|
||||||
# if some version control system is used.
|
# if some version control system is used.
|
||||||
|
|
||||||
PROJECT_NUMBER = 4.11.0
|
PROJECT_NUMBER = 4.12.0
|
||||||
|
|
||||||
# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
|
# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
|
||||||
# base path where the generated documentation will be put.
|
# base path where the generated documentation will be put.
|
||||||
|
2
NEWS
2
NEWS
@ -9,7 +9,7 @@ NEWS ( CHANGELOG and HISTORY ) HTMLPurifier
|
|||||||
. Internal change
|
. Internal change
|
||||||
==========================
|
==========================
|
||||||
|
|
||||||
4.12.0, unknown release date
|
4.12.0, released 2019-10-27
|
||||||
! PHP 7.4 is supported, thank you Witold Wasiczko, Mateuz Turcza and
|
! PHP 7.4 is supported, thank you Witold Wasiczko, Mateuz Turcza and
|
||||||
Edi Modrić
|
Edi Modrić
|
||||||
- PHPDocs for HTMLModule::addElement() and Bool attr are fixed (thanks
|
- PHPDocs for HTMLModule::addElement() and Bool attr are fixed (thanks
|
||||||
|
9
WHATSNEW
9
WHATSNEW
@ -1,7 +1,2 @@
|
|||||||
HTML Purifier 4.11.x is a maintenance release, collecting a year
|
HTML Purifier 4.12.x is a maintenance release which makes
|
||||||
and a half of accumulated bug fixes. Most notable fixes are
|
compatibility fixes for PHP 7.4.
|
||||||
compatibility with PHP 7.3, and case-sensitive matching for
|
|
||||||
the SafeScripting whitelist. There are a number small feature
|
|
||||||
enhancements, including an expanded supported color list,
|
|
||||||
initial and inherit support for {min-,max-,}{width,height}
|
|
||||||
and multidimensional array support for purifyArray.
|
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
* primary concern and you are using an opcode cache. PLEASE DO NOT EDIT THIS
|
* primary concern and you are using an opcode cache. PLEASE DO NOT EDIT THIS
|
||||||
* FILE, changes will be overwritten the next time the script is run.
|
* FILE, changes will be overwritten the next time the script is run.
|
||||||
*
|
*
|
||||||
* @version 4.11.0
|
* @version 4.12.0
|
||||||
*
|
*
|
||||||
* @warning
|
* @warning
|
||||||
* You must *not* include any other HTML Purifier files before this file,
|
* You must *not* include any other HTML Purifier files before this file,
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
HTML Purifier 4.11.0 - Standards Compliant HTML Filtering
|
HTML Purifier 4.12.0 - Standards Compliant HTML Filtering
|
||||||
Copyright (C) 2006-2008 Edward Z. Yang
|
Copyright (C) 2006-2008 Edward Z. Yang
|
||||||
|
|
||||||
This library is free software; you can redistribute it and/or
|
This library is free software; you can redistribute it and/or
|
||||||
@ -58,12 +58,12 @@ class HTMLPurifier
|
|||||||
* Version of HTML Purifier.
|
* Version of HTML Purifier.
|
||||||
* @type string
|
* @type string
|
||||||
*/
|
*/
|
||||||
public $version = '4.11.0';
|
public $version = '4.12.0';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Constant with version of HTML Purifier.
|
* Constant with version of HTML Purifier.
|
||||||
*/
|
*/
|
||||||
const VERSION = '4.11.0';
|
const VERSION = '4.12.0';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Global configuration object.
|
* Global configuration object.
|
||||||
|
@ -21,7 +21,7 @@ class HTMLPurifier_Config
|
|||||||
* HTML Purifier's version
|
* HTML Purifier's version
|
||||||
* @type string
|
* @type string
|
||||||
*/
|
*/
|
||||||
public $version = '4.11.0';
|
public $version = '4.12.0';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Whether or not to automatically finalize
|
* Whether or not to automatically finalize
|
||||||
|
Loading…
Reference in New Issue
Block a user