aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorJeremy Benoist <jeremy.benoist@gmail.com>2018-11-21 21:11:55 +0100
committerJeremy Benoist <jeremy.benoist@gmail.com>2018-11-23 08:34:13 +0100
commitdc90eab32bd1912a1541ba238dcd2c34e6171e94 (patch)
treeabd5465c0336354193020cf0b052e3249b275e2f
parente01b00298aca4d58e330e03e3c0f1f7a39884db7 (diff)
downloadwallabag-dc90eab32bd1912a1541ba238dcd2c34e6171e94.tar.gz
wallabag-dc90eab32bd1912a1541ba238dcd2c34e6171e94.tar.zst
wallabag-dc90eab32bd1912a1541ba238dcd2c34e6171e94.zip
Prepare 2.3.4 release
-rw-r--r--CHANGELOG.md37
-rw-r--r--app/config/wallabag.yml2
-rw-r--r--tests/Wallabag/CoreBundle/Controller/EntryControllerTest.php5
3 files changed, 40 insertions, 4 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 73fe6798..eb2c3084 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,42 @@
1# Changelog 1# Changelog
2 2
3## [2.3.4](https://github.com/wallabag/wallabag/tree/2.3.4)
4 [Full Changelog](https://github.com/wallabag/wallabag/compare/2.3.3...2.3.4)
5
6### Fixes
7
8- Fix image downloading on null image path [#3684](https://github.com/wallabag/wallabag/pull/3684)
9- Remove remaining deprecation notices [#3686](https://github.com/wallabag/wallabag/pull/3686)
10- Fix mobile viewport on big iframe and video elements [#3683](https://github.com/wallabag/wallabag/pull/3683)
11- Autofocus the username field on the login page [#3691](https://github.com/wallabag/wallabag/pull/3691)
12- Feature/svg logo [#3692](https://github.com/wallabag/wallabag/pull/3692)
13- Fixes a typo [#3702](https://github.com/wallabag/wallabag/pull/3702)
14- Update release script [#3705](https://github.com/wallabag/wallabag/pull/3705)
15- Removing failing test from Travis [#3707](https://github.com/wallabag/wallabag/pull/3707)
16- Replace SO url by lemonde.fr to avoid random failing test [#3685](https://github.com/wallabag/wallabag/pull/3685)
17- php-cs-fixer: native_function_invocation [#3716](https://github.com/wallabag/wallabag/pull/3716)
18- PHP 7.2 shouldn't fail [#3717](https://github.com/wallabag/wallabag/pull/3717)
19- Liberation goes https [#3726](https://github.com/wallabag/wallabag/pull/3726)
20- Bugfix: Sanitize the title of a saved webpage from invalid UTF-8 characters. [#3725](https://github.com/wallabag/wallabag/pull/3725)
21- Fix dockerfile php72 [#3734](https://github.com/wallabag/wallabag/pull/3734)
22- Fix sort parameters [#3719](https://github.com/wallabag/wallabag/pull/3719)
23- Add note on GitHub PR template to auto-close issues [#3763](https://github.com/wallabag/wallabag/pull/3763)
24- Fix link to wallabag requirements in documentation [#3766](https://github.com/wallabag/wallabag/pull/3766)
25- Update translation when marking as read [#3772](https://github.com/wallabag/wallabag/pull/3772)
26- Makefile fixes for non GNU systems [#3706](https://github.com/wallabag/wallabag/pull/3706)
27- Card no preview replaced by wallabag logo [#3774](https://github.com/wallabag/wallabag/pull/3774)
28
29### Changes
30
31- Propose YunoHost badge for installing [#3678](https://github.com/wallabag/wallabag/pull/3678)
32- More robust srcset image attribute handling [#3690](https://github.com/wallabag/wallabag/pull/3690)
33- Rename getBuilderByUser and refactor query for untagged entries [#3712](https://github.com/wallabag/wallabag/pull/3712)
34- Show tags on non-image gallery preview card [#3743](https://github.com/wallabag/wallabag/pull/3743)
35- add manifest.json for android pwa [#3606](https://github.com/wallabag/wallabag/pull/3606)
36- Add placeholder image to card-based gallery entries page [#3745](https://github.com/wallabag/wallabag/pull/3745)
37- Abort running install and update script if root [#3733](https://github.com/wallabag/wallabag/pull/3733)
38- Swap entry url with origin url if graby provides an updated one [#3553](https://github.com/wallabag/wallabag/pull/3553)
39
3## [2.3.3](https://github.com/wallabag/wallabag/tree/2.3.3) 40## [2.3.3](https://github.com/wallabag/wallabag/tree/2.3.3)
4 [Full Changelog](https://github.com/wallabag/wallabag/compare/2.3.2...2.3.3) 41 [Full Changelog](https://github.com/wallabag/wallabag/compare/2.3.2...2.3.3)
5 42
diff --git a/app/config/wallabag.yml b/app/config/wallabag.yml
index d2476959..6354b22f 100644
--- a/app/config/wallabag.yml
+++ b/app/config/wallabag.yml
@@ -1,5 +1,5 @@
1wallabag_core: 1wallabag_core:
2 version: 2.3.3 2 version: 2.3.4
3 paypal_url: "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=9UBA65LG3FX9Y&lc=gb" 3 paypal_url: "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=9UBA65LG3FX9Y&lc=gb"
4 languages: 4 languages:
5 en: 'English' 5 en: 'English'
diff --git a/tests/Wallabag/CoreBundle/Controller/EntryControllerTest.php b/tests/Wallabag/CoreBundle/Controller/EntryControllerTest.php
index bf0068b4..479e0700 100644
--- a/tests/Wallabag/CoreBundle/Controller/EntryControllerTest.php
+++ b/tests/Wallabag/CoreBundle/Controller/EntryControllerTest.php
@@ -166,9 +166,8 @@ class EntryControllerTest extends WallabagCoreTestCase
166 $this->assertSame($this->url, $content->getUrl()); 166 $this->assertSame($this->url, $content->getUrl());
167 $this->assertContains('Google', $content->getTitle()); 167 $this->assertContains('Google', $content->getTitle());
168 $this->assertSame('fr', $content->getLanguage()); 168 $this->assertSame('fr', $content->getLanguage());
169 $this->assertSame('2015-03-28 11:43:19', $content->getPublishedAt()->format('Y-m-d H:i:s')); 169 $this->assertSame('2016-04-07 19:01:35', $content->getPublishedAt()->format('Y-m-d H:i:s'));
170 $this->assertSame('Morgane Tual', $author[0]); 170 $this->assertArrayHasKey('x-frame-options', $content->getHeaders());
171 $this->assertArrayHasKey('x-varnish1', $content->getHeaders());
172 $client->getContainer()->get('craue_config')->set('store_article_headers', 0); 171 $client->getContainer()->get('craue_config')->set('store_article_headers', 0);
173 } 172 }
174 173