Skip to content

Commit b2db7b8

Browse files
committed
Merge remote-tracking branch 'remotes/dev/master'
2 parents 56e9f7c + a633c8b commit b2db7b8

9 files changed

+27
-34
lines changed

CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
CHANGELOG for 1.0.0-beta5
2+
===================
3+
This changelog references the relevant changes (new features, changes and bugs) done in 1.0.0-beta5 versions.
4+
5+
* 1.0.0-beta5 (2013-12-05)
6+
* ACL management in scope of organization and business unit
7+
* "Option Set" Field Type for Entity Field
8+
* Form validation improvements
9+
* Tabs implementation on entity view pages
10+
* Eliminated registry js-component
11+
* Implemented responsive markup on most pages
12+
113
CHANGELOG for 1.0.0-beta4
214
===================
315
This changelog references the relevant changes (new features, changes and bugs) done in 1.0.0-beta4 versions.

app/AppKernel.php

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
<?php
22

3-
use Symfony\Component\HttpKernel\Kernel;
43
use Symfony\Component\Config\Loader\LoaderInterface;
54

65
use Oro\Bundle\DistributionBundle\OroKernel;
@@ -9,7 +8,9 @@ class AppKernel extends OroKernel
98
{
109
public function registerBundles()
1110
{
12-
$bundles = array();
11+
$bundles = array(
12+
// bundles
13+
);
1314

1415
if (in_array($this->getEnvironment(), array('dev', 'test'))) {
1516
$bundles[] = new Symfony\Bundle\WebProfilerBundle\WebProfilerBundle();

app/config/config.yml

-4
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@ twig:
4343
assetic:
4444
debug: false
4545
use_controller: false
46-
4746
#java: /usr/bin/java
4847
filters:
4948
cssrewrite: ~
@@ -204,9 +203,6 @@ a2lix_translation_form:
204203
locales: [en, fr]
205204
templating: "OroUIBundle:Form:translateable.html.twig"
206205

207-
apy_js_form_validation:
208-
check_modes: [submit]
209-
210206
lexik_maintenance:
211207
authorized:
212208
path: "maintenance|.*\.js" # "maintenance" is only for demo purposes, remove in production!

app/config/config_dev.yml

-2
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,6 @@ monolog:
2323
level: info
2424

2525
oro_assetic:
26-
js_debug: ~
27-
js_debug_all: false
2826
css_debug: ~
2927
css_debug_all: false
3028

app/config/config_test.yml

-2
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,6 @@ monolog:
3434
level: error
3535

3636
oro_assetic:
37-
js_debug: ~
38-
js_debug_all: false
3937
css_debug: ~
4038
css_debug_all: false
4139

app/config/routing.yml

-3
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,6 @@ _imagine:
1212
resource: .
1313
type: imagine
1414

15-
_apy_jsformvalidation:
16-
resource: "@APYJsFormValidationBundle/Resources/config/routing/routing.yml"
17-
1815
#
1916
# ORO routes
2017
#

app/karma.conf.js.dist

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* global module, config */
1+
/* global module */
22
module.exports = function(config) {
33
'use strict';
44

@@ -22,23 +22,23 @@ module.exports = function(config) {
2222
],
2323

2424
preprocessors: {
25-
'web/bundles/*/js/**/*.js': ['requirejs-exposure', 'coverage']
25+
'web/bundles/*/js/**/*.js': ['requirejs-exposure']//, 'coverage']
2626
},
2727

2828
// use dots reporter, as travis terminal does not support escaping sequences
2929
// possible values: 'dots', 'progress'
3030
// CLI --reporters progress
31-
reporters: ['progress', 'coverage', 'junit'],
31+
reporters: ['progress', /*'coverage',*/ 'junit'],
3232

3333
junitReporter: {
3434
// will be resolved to basePath (in the same way as files/exclude patterns)
3535
outputFile: 'build/logs/karma.xml'
3636
},
3737

38-
coverageReporter: {
38+
/*coverageReporter: {
3939
type: 'html',
4040
dir: 'build/logs/js-coverage/'
41-
},
41+
},*/
4242

4343
// web server port
4444
// CLI --port 9876
@@ -85,7 +85,7 @@ module.exports = function(config) {
8585
'karma-requirejs',
8686
'karma-jasmine',
8787
'karma-junit-reporter',
88-
'karma-coverage',
88+
// 'karma-coverage',
8989
'karma-phantomjs-launcher',
9090
// 'karma-chrome-launcher',
9191
// 'karma-firefox-launcher',

composer.json

+3-7
Original file line numberDiff line numberDiff line change
@@ -10,24 +10,20 @@
1010
}
1111
},
1212
"require": {
13-
"oro/platform": "1.0.0-beta4"
13+
"oro/platform": "1.0.0-beta5"
1414
},
1515
"scripts": {
1616
"post-install-cmd": [
1717
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
1818
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
19-
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
20-
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
2119
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile",
22-
"php app/console fos:js-routing:dump --target=web/js/routes.js"
20+
"Oro\\Bundle\\InstallerBundle\\Composer\\ScriptHandler::installAssets"
2321
],
2422
"post-update-cmd": [
2523
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
2624
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
27-
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
28-
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
2925
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile",
30-
"php app/console fos:js-routing:dump --target=web/js/routes.js"
26+
"Oro\\Bundle\\InstallerBundle\\Composer\\ScriptHandler::installAssets"
3127
]
3228
},
3329
"minimum-stability": "dev",

web/install.php

+3-8
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)