Skip to content

Commit

Permalink
Merge branch '4.1' into next
Browse files Browse the repository at this point in the history
* 4.1:
  [Release] 3.2.14
  Revert "Revert "[Twig] twig >= 3.14 is compatible again""
  Revert "[Twig] twig >= 3.14 is compatible again"
  [Store] fix cached store context
  [Twig] remove deferred blocks
  [Twig] twig >= 3.14 is compatible again
  • Loading branch information
dpfaffenbauer committed Oct 16, 2024
2 parents 3a4c523 + b6428b2 commit e7260f5
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG-3.2.x.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# 3.2.14
* [Pimcore] introduce LocalizedFallbackHelper by @dpfaffenbauer in https://github.com/coreshop/CoreShop/pull/2723
* [Translations] add missing translations by @dpfaffenbauer in https://github.com/coreshop/CoreShop/pull/2721
* [Payum] 2.6 compatibility by @dpfaffenbauer in https://github.com/coreshop/CoreShop/pull/2722

# 3.2.13
* [Currency/Money] implement Pimcore Grid Column by @dpfaffenbauer in https://github.com/coreshop/CoreShop/pull/2686
* [StorageList] make sure to remove StorageList from Session on Logout by @dpfaffenbauer in https://github.com/coreshop/CoreShop/pull/2684
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@
},
"conflict": {
"jms/serializer-bundle": "4.1.0",
"twig/twig": "^3.9.0",
"twig/twig": ">=3.9.0 <3.14.0",
"pimcore/pimcore": "11.3.1"
},
"autoload": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@
{% do pimcore_head_title().setSeparator(' | ') %}
{%- endapply -%}

{% block layout_head_meta deferred %}
{% block layout_head_meta %}
{{ pimcore_head_title('CoreShop') }}
{{ pimcore_head_meta() }}
{% endblock %}

{% block head_stylesheets deferred %}
{% block head_stylesheets %}
{{ pimcore_head_link() }}
{% endblock %}
</head>
Expand All @@ -53,7 +53,7 @@
{% include '@CoreShopFrontend/_footer.html.twig' %}
{% endblock %}

{% block scripts deferred %}
{% block scripts %}
{{ pimcore_head_script() }}
{% endblock %}
</body>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ public function __construct(
public function getStore(): StoreInterface
{
if (false === $this->initialized) {
$this->initialized = true;
$this->cachedStore = $this->requestBasedStoreContext->getStore();
$this->initialized = true;
} elseif (!$this->cachedStore) {
throw new StoreNotFoundException();
}
Expand Down

0 comments on commit e7260f5

Please sign in to comment.