diff options
-rw-r--r-- | CHANGELOG.md | 17 | ||||
-rw-r--r-- | Dockerfile | 4 |
2 files changed, 20 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 04cb2fd1..18907c18 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md | |||
@@ -60,7 +60,6 @@ and this project adheres to [Semantic Versioning](http://semver.org/). | |||
60 | ### Security | 60 | ### Security |
61 | - Update `.htaccess` to prevent accessing Git metadata when using a Git-based installation | 61 | - Update `.htaccess` to prevent accessing Git metadata when using a Git-based installation |
62 | 62 | ||
63 | |||
64 | ## [v0.9.7](https://github.com/shaarli/Shaarli/releases/tag/v0.9.7) - 2018-06-20 | 63 | ## [v0.9.7](https://github.com/shaarli/Shaarli/releases/tag/v0.9.7) - 2018-06-20 |
65 | ### Changed | 64 | ### Changed |
66 | - Build the Docker images from the local Git sources | 65 | - Build the Docker images from the local Git sources |
@@ -280,6 +279,22 @@ Theming: | |||
280 | ### Security | 279 | ### Security |
281 | - Markdown plugin: escape HTML entities by default | 280 | - Markdown plugin: escape HTML entities by default |
282 | 281 | ||
282 | ## [v0.8.4](https://github.com/shaarli/Shaarli/releases/tag/v0.8.4) - 2017-03-04 | ||
283 | ### Security | ||
284 | - Markdown plugin: escape HTML entities by default | ||
285 | |||
286 | |||
287 | ## [v0.8.3](https://github.com/shaarli/Shaarli/releases/tag/v0.8.3) - 2017-01-20 | ||
288 | |||
289 | ### Fixed | ||
290 | |||
291 | - PHP 7.1 compatibility: add ConfigManager parameter to anti-bruteforce function call in login template. | ||
292 | |||
293 | ## [v0.8.2](https://github.com/shaarli/Shaarli/releases/tag/v0.8.2) - 2016-12-15 | ||
294 | |||
295 | ### Fixed | ||
296 | |||
297 | - Editing a link created before the new ID system would change its permalink. | ||
283 | 298 | ||
284 | ## [v0.8.7](https://github.com/shaarli/Shaarli/releases/tag/v0.8.7) - 2018-06-20 | 299 | ## [v0.8.7](https://github.com/shaarli/Shaarli/releases/tag/v0.8.7) - 2018-06-20 |
285 | ### Changed | 300 | ### Changed |
@@ -5,7 +5,11 @@ FROM python:3-alpine as docs | |||
5 | ADD . /usr/src/app/shaarli | 5 | ADD . /usr/src/app/shaarli |
6 | RUN cd /usr/src/app/shaarli \ | 6 | RUN cd /usr/src/app/shaarli \ |
7 | && pip install --no-cache-dir mkdocs \ | 7 | && pip install --no-cache-dir mkdocs \ |
8 | <<<<<<< HEAD | ||
9 | && mkdocs build | ||
10 | ======= | ||
8 | && mkdocs build --clean | 11 | && mkdocs build --clean |
12 | >>>>>>> v0.10.0 | ||
9 | 13 | ||
10 | # Stage 2: | 14 | # Stage 2: |
11 | # - Resolve PHP dependencies with Composer | 15 | # - Resolve PHP dependencies with Composer |