Skip to content

Commit

Permalink
chore: v3.1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
thorsten committed Jul 23, 2022
1 parent aa3d0b6 commit c3e0aeb
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 4 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
@@ -1,11 +1,18 @@
# phpMyFAQ 3.1.5
# phpMyFAQ 3.1.6

**Codename "Poseidon"**

## CHANGELOG

This is a log of major user-visible changes in each phpMyFAQ release.


### phpMyFAQ v3.1.6 - 2022-07-23

- fixed XSS vulnerability (jhond0e, Thorsten)
- fixed dismiss error for cookie consent (Thorsten)
- fixed minor bugs (Thorsten)

### phpMyFAQ v3.1.5 - 2022-06-27

- added compatibility with Elasticsearch v8+ (Thorsten)
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "@thorsten/phpmyfaq",
"version": "3.1.5",
"version": "3.1.6",
"description": "phpMyFAQ",
"repository": "git://github.com/thorsten/phpMyFAQ.git",
"author": "Thorsten Rinne",
Expand Down
3 changes: 2 additions & 1 deletion phpmyfaq/src/phpMyFAQ/System.php
Expand Up @@ -45,7 +45,7 @@ class System
/**
* Patch level.
*/
private const VERSION_PATCH_LEVEL = 5;
private const VERSION_PATCH_LEVEL = 6;

/**
* Pre-release version.
Expand Down Expand Up @@ -340,6 +340,7 @@ public function createHashes(): string
'/config/constants.php' => false,
'/config/constants_elasticsearch.php' => false,
'/config/database.php' => false,
'/config/elasticsearch.php' => false,
'/config/ldap.php' => false,
];
$current = '';
Expand Down
2 changes: 1 addition & 1 deletion scripts/version.sh
@@ -1,4 +1,4 @@
#!/bin/sh
if [ "x${PMF_VERSION}" = "x" ]; then
PMF_VERSION="3.1.5"
PMF_VERSION="3.1.6"
fi

0 comments on commit c3e0aeb

Please sign in to comment.