aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md37
-rw-r--r--Makefile3
-rw-r--r--application/Updater.php2
-rw-r--r--index.php6
-rw-r--r--tests/Updater/UpdaterTest.php1
5 files changed, 46 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 652fb63d..9c1581d4 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -177,7 +177,40 @@ Theming:
177- `composer.lock` is now included in git file to allow proper `composer install` 177- `composer.lock` is now included in git file to allow proper `composer install`
178- History mechanism which logs link addition/modification/deletion 178- History mechanism which logs link addition/modification/deletion
179 179
180## [v0.8.7](https://github.com/shaarli/Shaarli/releases/tag/v0.8.7) - 2018-06-20
180### Changed 181### Changed
182- Build the Docker image from the local Git sources
183
184### Removed
185- Disable PHP 5.3 Travis build (unsupported)
186
187## [v0.8.6](https://github.com/shaarli/Shaarli/releases/tag/v0.8.6) - 2018-02-19
188### Changed
189<<<<<<< HEAD
190- Run version check tests against the 'stable' branch
191
192
193## [v0.8.5](https://github.com/shaarli/Shaarli/releases/tag/v0.8.5) - 2018-01-04
194
195 **XSS vulnerability fixed. Please update.**
196
197### Security
198- Fix an XSS (cross-site-scripting) vulnerability in `index.php`
199
200
201## [v0.8.4](https://github.com/shaarli/Shaarli/releases/tag/v0.8.4) - 2017-03-04
202### Security
203- Markdown plugin: escape HTML entities by default
204
205
206## [v0.8.3](https://github.com/shaarli/Shaarli/releases/tag/v0.8.3) - 2017-01-20
207
208### Fixed
209
210- PHP 7.1 compatibility: add ConfigManager parameter to anti-bruteforce function call in login template.
211
212## [v0.8.2](https://github.com/shaarli/Shaarli/releases/tag/v0.8.2) - 2016-12-15
213=======
181- Docker: enable nginx URL rewriting for the REST API 214- Docker: enable nginx URL rewriting for the REST API
182- Theming: 215- Theming:
183 - Move `user.css` to the `data` folder 216 - Move `user.css` to the `data` folder
@@ -199,6 +232,7 @@ Theming:
199- Partial namespace support for Shaarli classes 232- Partial namespace support for Shaarli classes
200- Shaarli version is now only present in `shaarli_version.php` 233- Shaarli version is now only present in `shaarli_version.php`
201- Human readable maximum file size upload 234- Human readable maximum file size upload
235>>>>>>> v0.9.7
202 236
203 237
204### Removed 238### Removed
@@ -239,9 +273,12 @@ Theming:
239### Fixed 273### Fixed
240- PHP 7.1 compatibility: add ConfigManager parameter to anti-bruteforce function call in login template. 274- PHP 7.1 compatibility: add ConfigManager parameter to anti-bruteforce function call in login template.
241 275
276<<<<<<< HEAD
277=======
242## [v0.8.2](https://github.com/shaarli/Shaarli/releases/tag/v0.8.2) - 2016-12-15 278## [v0.8.2](https://github.com/shaarli/Shaarli/releases/tag/v0.8.2) - 2016-12-15
243### Fixed 279### Fixed
244 280
281>>>>>>> v0.9.7
245- Editing a link created before the new ID system would change its permalink. 282- Editing a link created before the new ID system would change its permalink.
246 283
247## [v0.8.1](https://github.com/shaarli/Shaarli/releases/tag/v0.8.1) - 2016-12-12 284## [v0.8.1](https://github.com/shaarli/Shaarli/releases/tag/v0.8.1) - 2016-12-12
diff --git a/Makefile b/Makefile
index d659d908..0ae03226 100644
--- a/Makefile
+++ b/Makefile
@@ -203,7 +203,6 @@ htmldoc:
203 find doc/html/ -type f -exec chmod a-x '{}' \; 203 find doc/html/ -type f -exec chmod a-x '{}' \;
204 rm -r venv 204 rm -r venv
205 205
206
207### Generate Shaarli's translation compiled file (.mo) 206### Generate Shaarli's translation compiled file (.mo)
208translate: 207translate:
209 @find inc/languages/ -name shaarli.po -execdir msgfmt shaarli.po -o shaarli.mo \; \ No newline at end of file 208 @find inc/languages/ -name shaarli.po -execdir msgfmt shaarli.po -o shaarli.mo \;
diff --git a/application/Updater.php b/application/Updater.php
index 8d2bd577..034b8ed8 100644
--- a/application/Updater.php
+++ b/application/Updater.php
@@ -246,6 +246,8 @@ class Updater
246 } 246 }
247 247
248 /** 248 /**
249<<<<<<< HEAD
250=======
249 * Rename tags starting with a '-' to work with tag exclusion search. 251 * Rename tags starting with a '-' to work with tag exclusion search.
250 */ 252 */
251 public function updateMethodRenameDashTags() 253 public function updateMethodRenameDashTags()
diff --git a/index.php b/index.php
index 2de9be0a..e05055c3 100644
--- a/index.php
+++ b/index.php
@@ -1,6 +1,12 @@
1<?php 1<?php
2/** 2/**
3<<<<<<< HEAD
4 * Shaarli v0.8.7 - Shaare your links...
5 *
6 * The personal, minimalist, super-fast, database free, bookmarking service.
7=======
3 * Shaarli - The personal, minimalist, super-fast, database free, bookmarking service. 8 * Shaarli - The personal, minimalist, super-fast, database free, bookmarking service.
9>>>>>>> v0.9.7
4 * 10 *
5 * Friendly fork by the Shaarli community: 11 * Friendly fork by the Shaarli community:
6 * - https://github.com/shaarli/Shaarli 12 * - https://github.com/shaarli/Shaarli
diff --git a/tests/Updater/UpdaterTest.php b/tests/Updater/UpdaterTest.php
index fed175df..77578528 100644
--- a/tests/Updater/UpdaterTest.php
+++ b/tests/Updater/UpdaterTest.php
@@ -489,7 +489,6 @@ $GLOBALS[\'privateLinkByDefault\'] = true;';
489 $this->assertFalse($this->conf->get('security.markdown_escape')); 489 $this->assertFalse($this->conf->get('security.markdown_escape'));
490 } 490 }
491 491
492
493 /** 492 /**
494 * Test updateMethodEscapeMarkdown with markdown plugin disabled 493 * Test updateMethodEscapeMarkdown with markdown plugin disabled
495 * => setting markdown_escape set to true. 494 * => setting markdown_escape set to true.