Skip to content

Releases: Linkvalue/Appbuild

Fix dependencies security issues

23 Jul 11:51
45f392a
Compare
Choose a tag to compare
Merge pull request #104 from Linkvalue/security/update-dependencies

deps(update): fix security issues

Support application images

23 Mar 13:39
09042d6
Compare
Choose a tag to compare

Appbuild 3.0.1

22 Sep 08:27
Compare
Choose a tag to compare

Renamed project from MajoraOTAStore to Appbuild (+ some nice features and fixes)

15 Sep 12:05
Compare
Choose a tag to compare

PR

How to migrate from v2 to v3:

  • backup your database (mysqldump ... > my-backup.sql)
  • make prod-deploy (this should create appbuild_ tables)
  • remove all entries in migration_versions except the last 20170915074948
  • moves your data from older tables to newer:
START TRANSACTION;
INSERT INTO appbuild_user (id, email, password, roles, enabled, firstname, lastname, created_at, updated_at) SELECT id, email, password, roles, enabled, firstname, lastname, created_at, updated_at FROM majoraotastore_user;
INSERT INTO appbuild_application (id, label, description, support, package_name, enabled, created_at, updated_at) SELECT id, label, description, support, package_name, enabled, created_at, updated_at FROM majoraotastore_application;
INSERT INTO appbuild_application_user (application_id, user_id) SELECT application_id, user_id FROM majoraotastore_application_user;
INSERT INTO appbuild_build (id, application_id, version, comment, file_path, enabled, created_at, updated_at) SELECT id, application_id, version, comment, file_path, enabled, created_at, updated_at FROM majoraotastore_build;
INSERT INTO appbuild_build_token (id, build_id, token, expired_at) SELECT id, build_id, token, expired_at FROM majoraotastore_build_token;
COMMIT;

check your data, then delete your majoraotastore_* tables

Backoffice v2 - New Design

27 Jun 20:23
Compare
Choose a tag to compare

Production ready

21 May 22:16
Compare
Choose a tag to compare

Features

  • Backoffice with user accounts (authentications, authorizations, etc.), available in English and French
  • Upload/download Android/iOS applications (with comment, description, version, etc.)
  • Public API to grab info about last application builds