Skip to content

Commit e4a8a29

Browse files
committed
Copy generic CI/CD files
1 parent 4fc5ea6 commit e4a8a29

4 files changed

Lines changed: 13 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.0.7] - 12 September 2025
10+
### Fixed
11+
- Do not display empty minicart
12+
- WIP with add-to-wishlist
13+
- Fix cookie notice
14+
- Simple toggling in layered navigation
15+
- WIP with add-to-compare
16+
917
## [0.0.6] - 11 September 2025
1018
### Fixed
1119
- Fix messages not being fetched when FPC is enabled

ViewModel/CookieConfig.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public function isHttpOnly(): int
3636

3737
public function getSameSite(): string
3838
{
39-
return 'Strict'; // @todo Strict, Lax or None
39+
return 'Lax'; // @todo Strict, Lax or None
4040
}
4141
private function get(string $path): mixed
4242
{

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "loki/magento2-theme",
3-
"version": "0.0.6",
3+
"version": "0.0.7",
44
"description": "Module to allow for Loki Themes to work",
55
"type": "magento2-module",
66
"require": {

etc/frontend/di.xml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,9 @@
3838
<arguments>
3939
<argument name="componentDefinitions" xsi:type="array">
4040
<item name="messages" xsi:type="string">LumaMessages</item>
41+
<item name="catalog.leftnav" xsi:type="string">LumaLayeredNavigation</item>
42+
<item name="category.product.addto.wishlist" xsi:type="string">LumaAddToWishlist</item>
43+
<item name="category.product.addto.compare" xsi:type="string">LumaAddToCompare</item>
4144
</argument>
4245
</arguments>
4346
</type>

0 commit comments

Comments
 (0)