diff options
-rw-r--r-- | CHANGELOG.md | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index f0813b97..c63337ff 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md | |||
@@ -5,7 +5,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) | |||
5 | and this project adheres to [Semantic Versioning](http://semver.org/). | 5 | and this project adheres to [Semantic Versioning](http://semver.org/). |
6 | 6 | ||
7 | 7 | ||
8 | ## [v0.9.0](https://github.com/shaarli/Shaarli/releases/tag/v0.9.0) - UNPUBLISHED | 8 | ## [v0.9.0](https://github.com/shaarli/Shaarli/releases/tag/v0.9.0) - 2017-05-07 |
9 | 9 | ||
10 | This release introduces the REST API, and requires updating HTTP server | 10 | This release introduces the REST API, and requires updating HTTP server |
11 | configuration to enable URL rewriting, see: | 11 | configuration to enable URL rewriting, see: |
@@ -21,6 +21,7 @@ configuration to enable URL rewriting, see: | |||
21 | - versioned API endpoints: | 21 | - versioned API endpoints: |
22 | - `/api/v1/info`: get general information on the Shaarli instance | 22 | - `/api/v1/info`: get general information on the Shaarli instance |
23 | - `/api/v1/links`: get a list of shaared links | 23 | - `/api/v1/links`: get a list of shaared links |
24 | - `/api/v1/history`: get a list of latest actions | ||
24 | Theming: | 25 | Theming: |
25 | - Introduce a new theme | 26 | - Introduce a new theme |
26 | - Allow selecting themes/templates from the configuration page | 27 | - Allow selecting themes/templates from the configuration page |
@@ -31,6 +32,8 @@ Theming: | |||
31 | - Add `campaign_` to the URL cleanup pattern list | 32 | - Add `campaign_` to the URL cleanup pattern list |
32 | - Add an AUTHORS file and Makefile target to list authors from Git commit data | 33 | - Add an AUTHORS file and Makefile target to list authors from Git commit data |
33 | - Link imports are now logged in `data/` folder, and can be debug using `dev.debug=true` setting. | 34 | - Link imports are now logged in `data/` folder, and can be debug using `dev.debug=true` setting. |
35 | - `composer.lock` is now included in git file to allow proper `composer install` | ||
36 | - History mechanism which logs link addition/modification/deletion | ||
34 | 37 | ||
35 | ### Changed | 38 | ### Changed |
36 | - Docker: enable nginx URL rewriting for the REST API | 39 | - Docker: enable nginx URL rewriting for the REST API |
@@ -40,6 +43,8 @@ Theming: | |||
40 | - Rename the legacy theme to `vintage` | 43 | - Rename the legacy theme to `vintage` |
41 | - Private only filter is now displayed as a search parameter | 44 | - Private only filter is now displayed as a search parameter |
42 | - Autocomplete: pre-select the first element | 45 | - Autocomplete: pre-select the first element |
46 | - Display daily date in the page title (browser title) | ||
47 | - Timezone lists are now passed as an array instead of raw HTML | ||
43 | - Move PubSubHub to a dedicated plugin | 48 | - Move PubSubHub to a dedicated plugin |
44 | - Coding style: | 49 | - Coding style: |
45 | - explicit method visibility | 50 | - explicit method visibility |
@@ -50,9 +55,13 @@ Theming: | |||
50 | - Improved client locale detection | 55 | - Improved client locale detection |
51 | - Improved date time display depending on the locale | 56 | - Improved date time display depending on the locale |
52 | - Partial namespace support for Shaarli classes | 57 | - Partial namespace support for Shaarli classes |
58 | - Shaarli version is now only present in `shaarli_version.php` | ||
59 | - Human readable maximum file size upload | ||
60 | |||
53 | 61 | ||
54 | ### Removed | 62 | ### Removed |
55 | - PHP < 5.5 compatibility | 63 | - PHP < 5.5 compatibility |
64 | - ReadItYourself plugin | ||
56 | 65 | ||
57 | ### Fixed | 66 | ### Fixed |
58 | - Ignore generated release tarballs | 67 | - Ignore generated release tarballs |
@@ -67,6 +76,7 @@ Theming: | |||
67 | - Remove extra spaces in the bookmarklet's name | 76 | - Remove extra spaces in the bookmarklet's name |
68 | - Piwik plugin: Piwik URL protocol can now be set (http or https) | 77 | - Piwik plugin: Piwik URL protocol can now be set (http or https) |
69 | - All inline JS has been moved to dedicated JS files | 78 | - All inline JS has been moved to dedicated JS files |
79 | - Keep tags after login redirection | ||
70 | 80 | ||
71 | ### Security | 81 | ### Security |
72 | - Markdown plugin: escape HTML entities by default | 82 | - Markdown plugin: escape HTML entities by default |