Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 4.0.0 #1107

Merged
merged 30 commits into from
Dec 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
daf849c
Make backport return items ordered by position
Hlavtox May 9, 2024
7ec2527
Bump webpack from 5.92.1 to 5.93.0
dependabot[bot] Jul 12, 2024
41eda29
Bump @babel/node from 7.24.7 to 7.24.8
dependabot[bot] Jul 12, 2024
0ddd34d
Merge pull request #1055 from PrestaShop/dependabot/npm_and_yarn/dev/…
nicosomb Jul 12, 2024
3f8f506
Bump @babel/eslint-parser from 7.24.7 to 7.24.8
dependabot[bot] Jul 12, 2024
06f985b
Merge pull request #1053 from PrestaShop/dependabot/npm_and_yarn/dev/…
nicosomb Jul 12, 2024
0626e15
Merge pull request #1054 from PrestaShop/dependabot/npm_and_yarn/dev/…
nicosomb Jul 12, 2024
1f29e0d
Bump @babel/core from 7.24.7 to 7.24.8
dependabot[bot] Jul 12, 2024
89d52b6
Merge pull request #1052 from PrestaShop/dependabot/npm_and_yarn/dev/…
nicosomb Jul 12, 2024
5e49f7e
Bump @babel/preset-env from 7.24.7 to 7.24.8
dependabot[bot] Jul 12, 2024
a964dc3
Merge pull request #1051 from PrestaShop/dependabot/npm_and_yarn/dev/…
nicosomb Jul 12, 2024
15005ec
Bump @babel/cli from 7.24.7 to 7.24.8
dependabot[bot] Jul 12, 2024
ddb2861
Merge pull request #1050 from PrestaShop/dependabot/npm_and_yarn/dev/…
nicosomb Jul 12, 2024
1b4fdf2
Bump @babel/core from 7.24.8 to 7.24.9
dependabot[bot] Jul 16, 2024
9c52edb
Merge pull request #1057 from PrestaShop/dependabot/npm_and_yarn/dev/…
nicosomb Jul 16, 2024
09ac0a7
Merge pull request #1021 from Hlavtox/implement-search-priority
Hlavtox Sep 10, 2024
350da2a
Bump @babel/preset-env from 7.24.8 to 7.25.8
dependabot[bot] Oct 11, 2024
bb2219b
Bump @babel/eslint-parser from 7.24.8 to 7.25.8
dependabot[bot] Oct 11, 2024
a9779ff
Implicit nullable type
Hlavtox Nov 26, 2024
3884832
Update SearchProvider.php
Hlavtox Nov 26, 2024
77d1fc7
Update ProductSearch.php
Hlavtox Nov 26, 2024
efdc3b2
Update SearchProviderTest.php
Hlavtox Nov 26, 2024
7d982c7
Update ProductSearch.php
Hlavtox Nov 26, 2024
ee57151
Merge pull request #1092 from PrestaShop/dependabot/npm_and_yarn/dev/…
kpodemski Nov 28, 2024
1872d56
Merge pull request #1091 from PrestaShop/dependabot/npm_and_yarn/dev/…
kpodemski Nov 28, 2024
79d694e
Merge pull request #1094 from Hlavtox/php-84
Hlavtox Nov 29, 2024
165480e
Update PHP minimum version to 7.1
jolelievre Nov 29, 2024
f2f814e
Bump version to 4.0.0 because minimum PrestaShop version is now 1.7.7
jolelievre Nov 29, 2024
b3adaf6
Check PHP syntax for PHP 8.3 and 8.4
jolelievre Nov 29, 2024
f4540bf
Merge pull request #1106 from jolelievre/version-400
jolelievre Nov 29, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .github/workflows/php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: PHP tests
on: [push, pull_request]
jobs:
php-linter:
name: PHP Syntax check 7.1 => 8.2
name: PHP Syntax check
runs-on: ubuntu-latest
steps:
- name: Checkout
Expand All @@ -29,6 +29,11 @@ jobs:
- name: PHP syntax checker 8.2
uses: prestashop/github-action-php-lint/8.2@master

- name: PHP syntax checker 8.3
uses: prestashop/github-action-php-lint/8.3@master

- name: PHP syntax checker 8.4
uses: prestashop/github-action-php-lint/8.4@master

# Check the PHP code follow the coding standards
php-cs-fixer:
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
}
],
"require": {
"php": ">=5.6",
"php": ">=7.1",
"doctrine/collections": "^1.4"
},
"require-dev": {
Expand All @@ -20,7 +20,7 @@
},
"config": {
"platform": {
"php": "5.6.0"
"php": "7.1.0"
},
"preferred-install": "dist",
"prepend-autoloader": false
Expand Down
16 changes: 8 additions & 8 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<module>
<name>ps_facetedsearch</name>
<displayName><![CDATA[Faceted search]]></displayName>
<version><![CDATA[3.16.1]]></version>
<version><![CDATA[4.0.0]]></version>
<description><![CDATA[Displays a block allowing multiple filters.]]></description>
<author><![CDATA[PrestaShop]]></author>
<tab><![CDATA[front_office_features]]></tab>
Expand Down
Loading
Loading