Skip to content

Latest commit

 

History

History
26 lines (17 loc) · 836 Bytes

UPGRADE.md

File metadata and controls

26 lines (17 loc) · 836 Bytes

Upgrade

2.0.0

Following dependencies are updated and have new minimum requirements:

  • sulu/sulu: ^1.6 -> ^2.2
  • php-task/task-bundle: ^1.2 -> ^2.0
  • jms/serializer-bundle: ^1.1 -> ^3.0
  • friendsofsymfony/rest-bundle: ^1.6 -> ^2.0 || ^3.0

The bundle was so refractored to be compatible with Sulu 2.0.

1.2.0

Fake-Request for task handlers

The task was extended by the column host and scheme to fake a similar request. This will ensure that the Cache will be delete correctly.

Update your database by running following SQL-Statement:

ALTER TABLE au_task ADD scheme VARCHAR(5) DEFAULT '' NOT NULL, ADD host VARCHAR(255) DEFAULT '' NOT NULL;
ALTER TABLE au_task CHANGE scheme scheme VARCHAR(5) NOT NULL, CHANGE host host VARCHAR(255) NOT NULL;