From a490390d60b533fcac11179569de7d70ce06ac06 Mon Sep 17 00:00:00 2001 From: El RIDO Date: Thu, 13 Nov 2025 11:10:14 +0100 Subject: [PATCH] incrementing version --- CHANGELOG.md | 2 +- Makefile | 2 +- README.md | 2 +- SECURITY.md | 4 ++-- doc/Installation.md | 2 +- js/package-lock.json | 4 ++-- js/package.json | 2 +- lib/Controller.php | 2 +- 8 files changed, 10 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 86e455a9..927a95a4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # PrivateBin version history -## 1.7.9 (not yet released) +## 1.7.9 (2025-11-13) * CHANGED: Upgrading libraries to: base-x 5.0.1, bootstrap 5.3.8, DOMpurify 3.2.7, ip-lib 1.21.0 & kjua 0.10.0 * CHANGED: Refactored jQuery DOM element creation into plain JavaScript * FIXED: Prevent arbitrary PHP file inclusion when enabling template switching diff --git a/Makefile b/Makefile index 792e09d1..24b4aa8e 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ .PHONY: all coverage coverage-js coverage-php doc doc-js doc-php increment sign test test-js test-php help -CURRENT_VERSION = 1.7.8 +CURRENT_VERSION = 1.7.9 VERSION ?= 2.0.0 VERSION_FILES = README.md SECURITY.md doc/Installation.md js/package*.json lib/Controller.php Makefile REGEX_CURRENT_VERSION := $(shell echo $(CURRENT_VERSION) | sed "s/\./\\\./g") diff --git a/README.md b/README.md index 2ef2fcfb..fdf88c7d 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # [![PrivateBin](https://cdn.rawgit.com/PrivateBin/assets/master/images/preview/logoSmall.png)](https://privatebin.info/) -*Current version: 1.7.8* +*Current version: 1.7.9* **PrivateBin** is a minimalist, open source online [pastebin](https://en.wikipedia.org/wiki/Pastebin) diff --git a/SECURITY.md b/SECURITY.md index 276fce2a..2d73b265 100644 --- a/SECURITY.md +++ b/SECURITY.md @@ -4,8 +4,8 @@ | Version | Supported | | ------- | ------------------ | -| 1.7.8 | :heavy_check_mark: | -| < 1.7.8 | :x: | +| 1.7.9 | :heavy_check_mark: | +| < 1.7.9 | :x: | ## Reporting a Vulnerability diff --git a/doc/Installation.md b/doc/Installation.md index 4720a34b..e411d064 100644 --- a/doc/Installation.md +++ b/doc/Installation.md @@ -208,7 +208,7 @@ CREATE INDEX parent ON prefix_comment(pasteid); CREATE TABLE prefix_config ( id CHAR(16) NOT NULL, value TEXT, PRIMARY KEY (id) ); -INSERT INTO prefix_config VALUES('VERSION', '1.7.8'); +INSERT INTO prefix_config VALUES('VERSION', '1.7.9'); ``` In **PostgreSQL**, the `data`, `attachment`, `nickname` and `vizhash` columns diff --git a/js/package-lock.json b/js/package-lock.json index 976ceedf..af2052f9 100644 --- a/js/package-lock.json +++ b/js/package-lock.json @@ -1,12 +1,12 @@ { "name": "privatebin", - "version": "1.7.8", + "version": "1.7.9", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "privatebin", - "version": "1.7.8", + "version": "1.7.9", "license": "zlib-acknowledgement", "devDependencies": { "@peculiar/webcrypto": "^1.5.0", diff --git a/js/package.json b/js/package.json index c851e9ee..a08b02b9 100644 --- a/js/package.json +++ b/js/package.json @@ -1,6 +1,6 @@ { "name": "privatebin", - "version": "1.7.8", + "version": "1.7.9", "description": "PrivateBin is a minimalist, open source online pastebin where the server has zero knowledge of pasted data. Data is encrypted/decrypted in the browser using 256 bit AES in Galois Counter mode (GCM).", "main": "privatebin.js", "directories": { diff --git a/lib/Controller.php b/lib/Controller.php index 168f921b..9ed64f90 100644 --- a/lib/Controller.php +++ b/lib/Controller.php @@ -27,7 +27,7 @@ class Controller * * @const string */ - const VERSION = '1.7.8'; + const VERSION = '1.7.9'; /** * minimal required PHP version