From 7117e76fb572986c718d0f08e4b7740860504bec Mon Sep 17 00:00:00 2001 From: Roman Grebenchuk Date: Wed, 28 May 2014 19:51:12 +0300 Subject: [PATCH] Preparing release --- CHANGELOG.md | 55 +++++++++++++++++++++++++++++++++++++++++++++++++++- UPGRADE.md | 52 ++----------------------------------------------- 2 files changed, 56 insertions(+), 51 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2cb557731d..c6686b3830 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,57 @@ +CHANGELOG for 1.2.0 +=================== +This changelog references the relevant changes (new features, changes and bugs) done in 1.2.0 versions. + +* 1.2.0 (2014-05-28) + * Ability to delete Channels + * Workflow view + * Reset of Workflow data + * Line charts in Reports + * Fixed issues with Duplicated emails + * Fixed Issue Use of SQL keywords as extended entity field names + * Fixed Issue Creating one-to-many relationship on custom entity that inverses many-to-one relationship fails + * Fixed Community requests + +CHANGELOG for 1.2.0-rc1 +=================== +This changelog references the relevant changes (new features, changes and bugs) done in 1.2.0 RC1 versions. + +* 1.2.0 RC1 (2014-05-12) + * Ability to delete Channels + * Workflow view + * Reset of Workflow data + * Fixed issues with Duplicated emails + * Fixed Issue Use of SQL keywords as extended entity field names + * Fixed Issue Creating one-to-many relationship on custom entity that inverses many-to-one relationship fails + +CHANGELOG for 1.1.0 +=================== +This changelog references the relevant changes (new features, changes and bugs) done in 1.1.0 versions. + +* 1.1.0 (2014-04-28) + * Dashboard management + * Fixed problem with creation of on-demand segments + * Fixed broken WSSE authentication + * Fixed Incorrectly calculated totals in grids + +CHANGELOG for 1.0.1 +=================== +This changelog references the relevant changes (new features, changes and bugs) done in 1.0.1 versions. + +* 1.0.1 (2014-04-18) + * Issue #3979 – Problems with DB server verification on install + * Issue #3916 – Memory consumption is too high on installation + * Issue #3918 – Problems with installation of packages from console + * Issue #3841 – Very slow installation of packages + * Issue #3916 – Installed application is not working correctly because of knp-menu version + * Issue #3839 – Cache regeneration is too slow + * Issue #3525 – Broken filters on Entity Configuration grid + * Issue #3974 – Settings are not saved in sidebar widgets + * Issue #3962 – Workflow window opens with a significant delay + * Issue #2203 – Incorrect timezone processing in Calendar + * Issue #3909 – Multi-selection filters might be too long + * Issue #3899 – Broken link from Opportunity to related Contact Request + CHANGELOG for 1.0.0 =================== This changelog references the relevant changes (new features, changes and bugs) done in 1.0.0 versions. @@ -63,7 +117,6 @@ CHANGELOG for 1.0.0-beta4 This changelog references the relevant changes (new features, changes and bugs) done in 1.0.0-beta4 versions. * 1.0.0-beta4 (2013-11-21) - * Removed install.bat/install.sh * Grid refactoring * Form validation improvements * Make all entities as Extended diff --git a/UPGRADE.md b/UPGRADE.md index 0391e83a9c..ca9c4f6ae6 100644 --- a/UPGRADE.md +++ b/UPGRADE.md @@ -1,4 +1,3 @@ -UPGRADE to 1.0.0 from 1.0.0-RC3 ======================= ### General @@ -6,10 +5,11 @@ UPGRADE to 1.0.0 from 1.0.0-RC3 * Pull changes from repository ```bash git pull +git checkout ``` * Upgrade composer dependency ```bash -php composer.phar update --prefer-dist +php composer.phar install --prefer-dist ``` * Remove old caches and assets ```bash @@ -20,53 +20,5 @@ rm -rf web/css/* * Upgrade platform ```bash php app/console oro:platform:update --env=prod -``` -UPGRADE to 1.0.0-RC3 from 1.0.0-RC2 -======================= - -### General - - * Pull changes from repository -```bash -git pull -``` - * Upgrade composer dependency -```bash -php composer.phar update --prefer-dist -``` - * Remove old caches -```bash -rm -rf app/cache/* -``` - * Fix extended entities configuration by executing below queries in mysql console. - -delete FROM oro_entity_config_value where code = 'schema' and field_id is not null; -delete FROM oro_entity_config_value where field_id in (select id FROM oro_entity_config_field where field_name like 'field_%'); -delete FROM oro_entity_config_field where field_name like 'field_%'; -delete FROM oro_entity_config_value where code = 'set_options' and value = 'Array'; - - * Update extend entities configuration -```bash -php app/console oro:entity-extend:update-config --env=prod -php app/console oro:entity-extend:dump --env=prod -``` - * Upgrade platform -```bash -php app/console oro:platform:update --env=prod -``` - * Load new fixtures -```bash -php app/console oro:installer:fixtures:load --env=prod -``` - * Load new workflows definitions -```bash -php app/console oro:workflow:definitions:load --env=prod -``` - -UPGRADE to any 1.0.0-alpha and beta version -======================= - -### General - * Upgrade to 1.0.0-alpha or beta is not supported and full reinstall with drop database, clear cache folders is required \ No newline at end of file