Skip to content

0.0.40

Compare
Choose a tag to compare
@REBELinBLUE REBELinBLUE released this 24 Nov 22:55
  • Added: Webhooks now support Gogs & Gitea (thanks @axeloz)
  • Added: The beanstalkd port can now be supplied in .env (thanks @uLow)
  • Fixed: Repositories with git submodules did not work properly
  • Fixed: DB_TYPE undefined error

Important

If you had a failed upgrade to 0.0.39 you may need to run the following queries to clean up your database before attempting the upgrade

DELETE FROM migrations WHERE migration = '2016_09_06_195043_add_targetable_attributes';

ALTER TABLE commands DROP COLUMN target_id;
ALTER TABLE commands DROP COLUMN target_type;

ALTER TABLE variables DROP COLUMN target_id;
ALTER TABLE variables DROP COLUMN target_type;

ALTER TABLE config_files DROP COLUMN target_id;
ALTER TABLE config_files DROP COLUMN target_type;

ALTER TABLE shared_files DROP COLUMN target_id;
ALTER TABLE shared_files DROP COLUMN target_type;

Please ensure that you backup your database before doing this just to be on the safe side