Some fixes about upgrade from 2.0.x -> 2.1.0

This commit is contained in:
Nicolas Lœuillet 2016-09-28 10:02:31 +02:00
parent 92fa168344
commit 084fb0d303
11 changed files with 22 additions and 11 deletions

View file

@ -29,7 +29,11 @@ class Version20160812120952 extends AbstractMigration implements ContainerAwareI
*/
public function up(Schema $schema)
{
$this->addSql('ALTER TABLE '.$this->getTable('oauth2_clients').' ADD name longtext COLLATE \'utf8_unicode_ci\' DEFAULT NULL');
if ($this->connection->getDatabasePlatform()->getName() == 'sqlite') {
$this->addSql('ALTER TABLE '.$this->getTable('oauth2_clients').' ADD name longtext DEFAULT NULL');
} else {
$this->addSql('ALTER TABLE '.$this->getTable('oauth2_clients').' ADD name longtext COLLATE \'utf8_unicode_ci\' DEFAULT NULL');
}
}
/**

View file

@ -12,7 +12,7 @@ source_suffix = '.rst'
master_doc = 'index'
project = u'wallabag-fr'
copyright = u'2013-2016, Nicolas Lœuillet - MIT Licence'
version = '2.0.0'
version = '2.1.0'
release = version
exclude_patterns = ['_build']
pygments_style = 'sphinx'

View file

@ -11,7 +11,9 @@ Das neueste Release ist auf https://www.wallabag.org/pages/download-wallabag.htm
git fetch origin
git fetch --tags
git checkout 2.1.0
./install.sh
ASSETS=build ./install.sh
php bin/console doctrine:migrations:migrate --env=prod
php bin/console cache:clear --env=prod
Update auf einem Shared Webhosting
----------------------------------

View file

@ -12,7 +12,7 @@ source_suffix = '.rst'
master_doc = 'index'
project = u'wallabag'
copyright = u'2013-2016, Nicolas Lœuillet - MIT Licence'
version = '2.0.0'
version = '2.1.0'
release = version
exclude_patterns = ['_build']
pygments_style = 'sphinx'

View file

@ -11,7 +11,9 @@ The last release is published on https://www.wallabag.org/pages/download-wallaba
git fetch origin
git fetch --tags
git checkout 2.1.0
./install.sh
ASSETS=build ./install.sh
php bin/console doctrine:migrations:migrate --env=prod
php bin/console cache:clear --env=prod
Upgrade on a shared hosting
---------------------------

View file

@ -12,7 +12,7 @@ source_suffix = '.rst'
master_doc = 'index'
project = u'wallabag-fr'
copyright = u'2013-2016, Nicolas Lœuillet - MIT Licence'
version = '2.0.0'
version = '2.1.0'
release = version
exclude_patterns = ['_build']
pygments_style = 'sphinx'

View file

@ -11,7 +11,9 @@ La dernière version de wallabag est publiée à cette adresse : https://www.wal
git fetch origin
git fetch --tags
git checkout 2.1.0
./install.sh
ASSETS=build ./install.sh
php bin/console doctrine:migrations:migrate --env=prod
php bin/console cache:clear --env=prod
Mise à jour sur un hébergement mutualisé
----------------------------------------

View file

@ -48,6 +48,7 @@ footer:
page_title: 'Configuration'
config:
page_title: 'Configuration'
tab_menu:
settings: 'Paramètres'
rss: 'RSS'

View file

@ -47,7 +47,7 @@ class TagControllerTest extends WallabagCoreTestCase
$this->assertEquals(1, count($entry->getTags()));
# tag already exists and already assigned
// tag already exists and already assigned
$client->submit($form, $data);
$this->assertEquals(302, $client->getResponse()->getStatusCode());
@ -58,7 +58,7 @@ class TagControllerTest extends WallabagCoreTestCase
$this->assertEquals(1, count($newEntry->getTags()));
# tag already exists but still not assigned to this entry
// tag already exists but still not assigned to this entry
$data = [
'tag[label]' => 'foo',
];

View file

@ -83,7 +83,7 @@ abstract class WallabagCoreTestCase extends WebTestCase
/**
* Check if Redis is installed.
* If not, mark test as skip
* If not, mark test as skip.
*/
protected function checkRedis()
{

View file

@ -37,7 +37,7 @@ class AuthCodeMailerTest extends \PHPUnit_Framework_TestCase
);
$this->mailer = new \Swift_Mailer($transport);
$twigTemplate = <<<TWIG
$twigTemplate = <<<'TWIG'
{% block subject %}subject{% endblock %}
{% block body_html %}html body {{ code }}{% endblock %}
{% block body_text %}text body {{ support_url }}{% endblock %}