Skip to content

Commit

Permalink
#1220935 - changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
livca-smile committed Sep 21, 2023
1 parent efd2484 commit 7231b93
Show file tree
Hide file tree
Showing 6 changed files with 81 additions and 61 deletions.
25 changes: 0 additions & 25 deletions .codeclimate.yml

This file was deleted.

66 changes: 66 additions & 0 deletions .github/workflows/static-analysis.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
name: 'Static Analysis'

on:
pull_request: ~
push:
branches:
- 'master'

jobs:
static-analysis:
runs-on: 'ubuntu-latest'

strategy:
matrix:
php-version:
- '8.1'

steps:
- name: 'Checkout'
uses: 'actions/checkout@v3'

- name: 'Install PHP'
uses: 'shivammathur/setup-php@v2'
with:
php-version: '${{ matrix.php-version }}'
coverage: 'none'
tools: 'composer:v2'
env:
COMPOSER_AUTH_JSON: |
{
"http-basic": {
"repo.magento.com": {
"username": "${{ secrets.MAGENTO_USERNAME }}",
"password": "${{ secrets.MAGENTO_PASSWORD }}"
}
}
}
- name: 'Get composer cache directory'
id: 'composer-cache'
run: 'echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT'

- name: 'Cache dependencies'
uses: 'actions/cache@v3'
with:
path: '${{ steps.composer-cache.outputs.dir }}'
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
restore-keys: '${{ runner.os }}-composer-'

- name: 'Install dependencies'
run: 'composer install --prefer-dist'

- name: 'Run composer audit'
run: 'composer audit --format=plain'

- name: 'Run Parallel Lint'
run: 'vendor/bin/parallel-lint --exclude vendor .'

- name: 'Run PHP CodeSniffer'
run: 'vendor/bin/phpcs --extensions=php,phtml'

- name: 'Run PHPMD'
run: 'vendor/bin/phpmd . xml phpmd.xml.dist'

- name: 'Run PHPStan'
run: 'vendor/bin/phpstan analyse'
21 changes: 0 additions & 21 deletions .travis.yml

This file was deleted.

18 changes: 9 additions & 9 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,18 @@

All notable changes to this project will be documented in this file.

## [2.0.x] - 2023-04-24
[2.0.x]: https://github.com/Smile-SA/magento2-module-store-delivery/compare/1.2.x...2.0.x
## [2.0.0] - 2023-09-20
[2.0.0]: https://github.com/Smile-SA/magento2-module-store-delivery/compare/1.1.10...2.0.0

Dataset compatibility ES 2.11.x and PHP 8.2

- fix Dynamic type declaration
- fix Type hinting
- Fix Dynamic type declaration
- Fix Type hinting
- Replace `Zend_Date` by `DateTime`
- Remove `MutationObserver` support
- fix UI Component Retailer Offer editing
- Fix UI Component Retailer Offer editing
- Replace `Zend_Validate` by `Laminas\Validator`
- fix Retailer Grid Column Action
- fix Retailer Grid Mass Actions
- fix some translations
- remove Temando/Shipping Plugin
- Fix Retailer Grid Column Action
- Fix Retailer Grid Mass Actions
- Fix some translations
- Remove Temando/Shipping Plugin
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,21 +6,21 @@ This module add the ability to be delivered in store. Store delivery is a shippi

### Requirements

The module requires :
The module requires:

- [Store Locator](https://github.com/Smile-SA/magento2-module-store-locator) > 2.2.*
- [Store Locator](https://github.com/Smile-SA/magento2-module-store-locator) >= 2.2.*

### How to use

1. Install the module via Composer :
1. Install the module via Composer:

``` composer require smile/module-store-delivery ```

2. Enable it
2. Enable it:

``` bin/magento module:enable Smile_StoreDelivery ```

3. Install the module and rebuild the DI cache
3. Install the module and rebuild the DI cache:

``` bin/magento setup:upgrade ```

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"magento/framework": ">=103.0.4",
"magento/module-checkout": ">=100.4.4",
"magento/module-store": ">=101.1.4",
"smile/module-store-locator": "^2.0"
"smile/module-store-locator": "^2.2"
},
"require-dev": {
"smile/magento2-smilelab-quality-suite": "^3.0"
Expand Down

0 comments on commit 7231b93

Please sign in to comment.