Skip to content

Commit

Permalink
Preparing release
Browse files Browse the repository at this point in the history
  • Loading branch information
rgrebenchuk committed May 28, 2014
1 parent b8a3a7e commit 7117e76
Show file tree
Hide file tree
Showing 2 changed files with 56 additions and 51 deletions.
55 changes: 54 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down Expand Up @@ -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
Expand Down
52 changes: 2 additions & 50 deletions UPGRADE.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
UPGRADE to 1.0.0 from 1.0.0-RC3
=======================

### General

* Pull changes from repository
```bash
git pull
git checkout <VERSION TO UPGRADE>
```
* Upgrade composer dependency
```bash
php composer.phar update --prefer-dist
php composer.phar install --prefer-dist
```
* Remove old caches and assets
```bash
Expand All @@ -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

0 comments on commit 7117e76

Please sign in to comment.