From 5c29619feee2d645830e792e450cec360cec16e1 Mon Sep 17 00:00:00 2001 From: El RIDO Date: Sun, 11 Feb 2024 15:10:01 +0100 Subject: [PATCH] post-release cleanup - prep changelog for future changes - composer changes from re-running composer on the repo, testing deps - change to phpunit coverage make target, required with newer releases --- CHANGELOG.md | 8 +++++--- Makefile | 2 +- composer.json | 8 ++++---- 3 files changed, 10 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2cf32ed7..c96ec92f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,14 +1,16 @@ # PrivateBin version history +## 1.7.1 (not yet released) + ## 1.7.0 (2024-02-11) * ADDED: Translations for Romanian * ADDED: Detect and report on damaged pastes (#1218) -* CHANGED: Ask for confirmation, before loading burn after reading pastes #1237 +* CHANGED: Ask for confirmation, before loading burn after reading pastes (#1237) * CHANGED: Focus on password input in modal dialog * CHANGED: Upgrading libraries to: DOMpurify 3.0.8 & zlib 1.3.1 * FIXED: Support more types of valid URLs for shorteners, incl. IDN ones (#1224) -* FIXED: Email timezone buttons overlapping in some languages #1039 -* FIXED: Changing language mangles URL #1191 +* FIXED: Email timezone buttons overlapping in some languages (#1039) +* FIXED: Changing language mangles URL (#1191) * FIXED: Needless reload when visiting default URL ## 1.6.2 (2023-12-15) diff --git a/Makefile b/Makefile index 71d2758b..79903770 100644 --- a/Makefile +++ b/Makefile @@ -17,7 +17,7 @@ coverage-js: ## Run JS unit tests and generate code coverage reports. cd js && nyc mocha coverage-php: ## Run PHP unit tests and generate code coverage reports. - cd tst && phpunit 2> /dev/null + cd tst && XDEBUG_MODE=coverage phpunit 2> /dev/null cd tst/log/php-coverage-report && sed -i "s#$(CURDIR)/##g" *.html */*.html doc: doc-js doc-php ## Generate all code documentation. diff --git a/composer.json b/composer.json index 51409917..bbd720ae 100644 --- a/composer.json +++ b/composer.json @@ -24,10 +24,10 @@ "docs" : "https://privatebin.info/codedoc/" }, "require" : { - "php" : "^7.3 || ^8.0", - "yzalis/identicon" : "2.0.0", - "mlocati/ip-lib" : "1.18.0", - "jdenticon/jdenticon": "1.0.2" + "php": "^7.3 || ^8.0", + "jdenticon/jdenticon": "1.0.2", + "mlocati/ip-lib": "1.18.0", + "yzalis/identicon": "2.0.0" }, "suggest" : { "google/cloud-storage" : "1.32.0",