Skip to content

Commit

Permalink
Merge pull request #119 from eclipxe13/version-2.28.1
Browse files Browse the repository at this point in the history
Allow depend on symfony process 7.x
  • Loading branch information
eclipxe13 committed Feb 21, 2024
2 parents 3ca86d3 + b4e050e commit 76c3c81
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 11 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
runs-on: "ubuntu-latest"
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2 # see https://github.com/marketplace/actions/setup-php-action
with:
Expand All @@ -39,7 +39,7 @@ jobs:
runs-on: "ubuntu-latest"
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2 # see https://github.com/marketplace/actions/setup-php-action
with:
Expand All @@ -56,7 +56,7 @@ jobs:
runs-on: "ubuntu-latest"
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Code style (markdownlint-cli)
uses: nosborn/github-action-markdown-cli@v3.2.0
with:
Expand All @@ -68,7 +68,7 @@ jobs:
runs-on: "ubuntu-latest"
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Run mkdocs
uses: Tiryoh/actions-mkdocs@v0
with:
Expand All @@ -80,7 +80,7 @@ jobs:
runs-on: "ubuntu-latest"
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
Expand All @@ -94,7 +94,7 @@ jobs:
id: composer-cache
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
- name: Cache dependencies
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
Expand All @@ -114,7 +114,7 @@ jobs:
php-versions: [ '7.3', '7.4', '8.0', '8.1', '8.2', '8.3' ]
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0 # required for scrutinizer
- name: Install libsaxonb-java on linux
Expand All @@ -137,7 +137,7 @@ jobs:
id: composer-cache
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
- name: Cache dependencies
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
Expand Down Expand Up @@ -172,7 +172,7 @@ jobs:
php-versions: [ '7.3', '7.4', '8.0', '8.1', '8.2', '8.3' ]
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Install saxonhe
run: choco install --ignore-checksums --no-progress --yes saxonhe
- name: Setup PHP
Expand All @@ -189,7 +189,7 @@ jobs:
shell: bash
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
- name: Cache dependencies
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"ext-openssl": "*",
"ext-iconv": "*",
"ext-json": "*",
"symfony/process": "^3.4|^4.2|^5.0|^6.0",
"symfony/process": "^3.4|^4.2|^5.0|^6.0|^7.0",
"eclipxe/xmlresourceretriever": "^1.3.0",
"eclipxe/xmlschemavalidator": "^3.0.2"
},
Expand Down
5 changes: 5 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,11 @@
- Remove deprecated constant `CfdiUtils\Retenciones\Retenciones::RET_NAMESPACE`.
- Remove deprecated class `CfdiUtils\Utils\Crp20277Fixer`.

## Version 2.28.1 2024-02-20

- Allow dependency on `symfony/process` branch `7.x`.
- Migrate GitHub actions to version 4.

## Version 2.28.0 2024-01-22

- Deprecate `CfdiUtils\Utils\Crp20277Fixer` since SAT changed the rule `CRP20277`.
Expand Down

0 comments on commit 76c3c81

Please sign in to comment.