Skip to content

Commit

Permalink
Merge branch '1.1' into 1.2
Browse files Browse the repository at this point in the history
* 1.1:
  Apply coding standard fixes
  Update "Configuring taxation" docs
  [GridBundle] Do not put unnecessary "andWhere" in ExpressionBuilder
  [Grid] Fix getting enabled grid items
  [ThemeBundle] Replace "symfony/symfony" dependency with specific Symfony packages
  Keep the existing pagination when changing sorting on product list page
  Fix API validation tests
  [ShippingBundle] Add validation for ShippingMethod calculator
  Narrow down selectors to prevent unexpected bugs
  [CoreBundle] Make sure promotion action/rule amount is an integer
  set gender `u` as default value - resolves Sylius#8493
  [Order] Fixed sylius:remove-expired-carts help
  Make ArrayGridProvider more performant & suitable for PHP-PM
  [Documentation] Fix API example for creating a taxon
  • Loading branch information
pamil committed Oct 3, 2018
2 parents 148c50a + 38e4f79 commit 3f4aa81
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Resources/views/Product/Index/_sorting.html.twig
Expand Up @@ -3,7 +3,7 @@
{% set definition = resources.definition %}

{% set route = app.request.attributes.get('_route') %}
{% set route_parameters = app.request.attributes.get('_route_params') %}
{% set route_parameters = app.request.attributes.get('_route_params')|merge(app.request.query.all) %}

{% set criteria = app.request.query.get('criteria', {}) %}

Expand Down
3 changes: 2 additions & 1 deletion composer.json
Expand Up @@ -31,7 +31,8 @@
"sonata-project/intl-bundle": "^2.2",
"sylius/core-bundle": "^1.2",
"sylius/ui-bundle": "^1.2",
"symfony/framework-bundle": "^3.4|^4.1.1"
"symfony/framework-bundle": "^3.4|^4.1.1",
"symfony/security-bundle": "^3.4|^4.1.1"
},
"require-dev": {
"matthiasnoback/symfony-config-test": "^3.0",
Expand Down

0 comments on commit 3f4aa81

Please sign in to comment.