summaryrefslogtreecommitdiffstats
path: root/NEWS
diff options
context:
space:
mode:
Diffstat (limited to 'NEWS')
-rw-r--r--NEWS115
1 files changed, 115 insertions, 0 deletions
diff --git a/NEWS b/NEWS
index d661e9020..b70320d2b 100644
--- a/NEWS
+++ b/NEWS
@@ -1,5 +1,120 @@
This file lists major, incompatible or otherwise important changes, you should look at it after every update.
+NEXT
+ - Fix password reset trying to send mails to deleted users
+
+4.0.1 2024-01-14
+ - Fix PHP 8.2 deprecation warnings
+ - Fix PHP 8.3 deprecation warnings
+ - Update CodeIgniter to development branch
+
+4.0.0 2022-04-10
+ - BREAKING CHANGE: Minimum required PHP version is now >= 7
+ - More PHP 8.1 compatibility fixes
+ - Fix exception in multipaste queue when queued item has been deleted
+
+3.6.2 2022-01-09
+ - Use python3 instead of python for Ubuntu 20.04 and Debian 11 compatibility.
+ If you do not have python 3, you will have to change shebang in
+ `scripts/get_lexer_list.py`. The script is still compatible with python 2.
+ - Update CodeIgniter to latest master for some additional PHP 8.0 and 8.1 fixes
+
+3.6.1 2021-04-11
+ - Copy filename when repasting file
+ - Add link to new android client
+
+3.6.0 2021-02-21
+ - PHP 8.0 comptibility fixes
+ - Add json and crystal filename extensions for highlighting
+
+3.5.0 2020-10-07
+ - API 2.2.0: Add `minimum-id-length` post parameter to
+ `file/create_multipaste` and `file/upload` endpoints
+
+3.4.5 2020-06-12
+ - Fix image orientation/rotation when viewing images with the
+ colorbox/lightbox in Firefox 76/Chromium 83.
+
+3.4.4 2020-04-19
+ - Log PublicApiException to error log
+ - Reclassify various user input/insufficient permission exceptions
+
+3.4.3 2019-12-07
+ - PHP 7.4 compatibility fixes
+
+3.4.2 2019-12-06
+ - PHP 7.4 compatibility fixes
+
+3.4.1 2019-09-27
+ - Update CodeIgniter to 3.1.11,
+ https://codeigniter.com/userguide3/changelog.html#version-3-1-11
+ - Remove (broken) thumbnails for PDF files from upload_history_thumbnails page
+ - Update composer files
+
+3.4.0 2019-05-21
+ - Allow data: URLs in Content-Security-Policy header for images and fonts
+
+3.3.2 2019-05-15
+ - Fix compatability with Pygments 2.4.0
+
+3.3.1 2019-01-28
+ - Fix CSRF issue breaking multipaste creation page
+ - Update codeigniter to 3.1.10
+ - Remove imagemagick PDF thumbnail support due to Arch Linux disabling it in
+ imagemagick due to repeated security concerns.
+
+3.3.0 2018-09-19
+ - LDAP: Allow optional binding/authentication
+ - LDAP: Allow optional filtering of allowed users
+ - Various Dockerfile fixes to make it work again
+ - Document finfo dependency
+
+3.2.0 2018-07-04
+ - Add `php index.php user delete_user` command for admin user deletion
+ - Document add_user admin command
+ - Update codeigniter to 3.1.9
+ - Document mbstring dependency
+
+3.1.1 2018-06-01
+ - Fix call to undefined method clean_multipaste_tarballs in cronjob
+
+3.1.0 2018-06-01
+ - Update asciinema player to support new cast format
+ - Allow users to delete invitation keys
+ - Add support to remove database entries without files to `php index.php file clean_stale_files`
+
+3.0.3 2018-03-23
+ - Update codeiginiter to 3.1.8
+
+3.0.2 2018-02-06
+ - Ensure newly uploaded files do not exist before adding them to the DB
+ - Update file modification time instead of overwriting it with it's own data
+ when a file is uploaded multiple times
+ - Minor changes:
+ + Support values that are not multiples of one day for upload_max_age
+ + Add config settings for testsuite to example configs
+ + Include most php extension dependencies in composer.json
+ + Use dedicated, temporary upload directory for testsuite
+
+3.0.1 2017-12-02
+ - Document different database settings for postgres in example config
+
+3.0.0 2017-12-02
+
+ - This version ensures PHP 7.2 support by updating the underlying framework
+
+ - INCOMPATIBLE: You need to perform the following actions for this update:
+ - Changes in application/config/database.php
+ + Change "$active_record = TRUE" to "$query_builder = TRUE"
+ + Change the pconnect setting to FALSE
+ + Change the stricton setting to TRUE
+ + If you use mysql: (NOT for postgres installations)
+ MYSQL Change the char_set setting to "utf8mb4"
+ MYSQL Change the dbcollat setting to "utf8mb4_bin"
+ - Changes in application/config/config-local.php
+ + Set base_url to your domain and, if used, installation directory.
+ Example: $config['base_url'] = "https://paste.xinu.at/"
+
2.1.3 2017-07-04
- API 2.1.1: Fix incorrect types of empty objects returned by file/history and file/delete