Skip to content

Commit 9b6be66

Browse files
committed
Merge branch 'master' into 6.0.x
Signed-off-by: William Desportes <[email protected]>
2 parents 3f9a95a + 0f4f8de commit 9b6be66

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+350
-308
lines changed

.github/workflows/lint-and-analyse-php.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
lint-php:
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v2
16+
- uses: actions/checkout@v3
1717
- name: Use php 7.2
1818
uses: shivammathur/setup-php@v2
1919
with:
@@ -22,7 +22,7 @@ jobs:
2222
- name: Validate composer.json and composer.lock
2323
run: composer validate
2424
- name: Cache module
25-
uses: actions/cache@v2
25+
uses: actions/cache@v3
2626
with:
2727
path: ~/.composer/cache/
2828
key: composer-cache
@@ -35,9 +35,9 @@ jobs:
3535
runs-on: ubuntu-latest
3636
strategy:
3737
matrix:
38-
php-version: ["7.2"]
38+
php-version: ["7.4"]
3939
steps:
40-
- uses: actions/checkout@v2
40+
- uses: actions/checkout@v3
4141
- name: Use PHP ${{ matrix.php-version }}
4242
uses: shivammathur/setup-php@v2
4343
with:
@@ -50,7 +50,7 @@ jobs:
5050
echo "::set-output name=dir::$(composer config cache-files-dir)"
5151
5252
- name: Cache dependencies
53-
uses: actions/cache@v2
53+
uses: actions/cache@v3
5454
with:
5555
path: ${{ steps.composer-cache.outputs.dir }}
5656
key: composer-${{ runner.os }}-${{ matrix.php-version }}-${{ hashFiles('**/composer.*') }}

.github/workflows/lint-docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
lint-docs:
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v2
16+
- uses: actions/checkout@v3
1717
- name: lint php documentation
1818
uses: sudo-bot/action-doctum@v5
1919
with:

.github/workflows/mutation-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323

2424
steps:
2525
- name: Checkout
26-
uses: actions/checkout@v2
26+
uses: actions/checkout@v3
2727

2828
- name: Fetch github.base_ref (for diffing)
2929
if: ${{ github.base_ref != '' }}
@@ -49,7 +49,7 @@ jobs:
4949
echo "::set-output name=dir::$(composer config cache-files-dir)"
5050
5151
- name: Cache dependencies
52-
uses: actions/cache@v2
52+
uses: actions/cache@v3
5353
with:
5454
path: ${{ steps.composer-cache.outputs.dir }}
5555
key: composer-${{ runner.os }}-${{ matrix.php-version }}-${{ hashFiles('**/composer.*') }}

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
include:
2424
- { php-version: 'nightly', experimental: true, os: ubuntu-latest, composer-options: '--ignore-platform-reqs' }
2525
steps:
26-
- uses: actions/checkout@v2
26+
- uses: actions/checkout@v3
2727
with:
2828
# Fetch some commits for Scrutinizer coverage upload
2929
fetch-depth: 15
@@ -43,7 +43,7 @@ jobs:
4343
run: |
4444
echo "::set-output name=dir::$(composer config cache-files-dir)"
4545
- name: Restore cache
46-
uses: actions/cache@v2
46+
uses: actions/cache@v3
4747
with:
4848
path: ${{ steps.composer-cache.outputs.dir }}
4949
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@
66
* Improve the WITH statements parser (#363)
77
* Add support for passing `Context::SQL_MODE*` constants to `Context::setMode` method
88
* Fix additional body tokens issue with `CREATE VIEW` statements (#371)
9+
* Exclude from composer vendor bundle /tests and /phpunit.xml.dist
10+
* Support table structure with `COMPRESSED` columns (#351)
11+
* Add `#[\AllowDynamicProperties]` on `Statement` and `Expression` classes for PHP 8.2 support
12+
* Support `ALTER` queries of `PARTITIONS` (#329)
913

1014
## [5.5.0] - 2021-12-08
1115

composer.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,5 +60,11 @@
6060
"dealerdirect/phpcodesniffer-composer-installer": true,
6161
"phpstan/extension-installer": true
6262
}
63+
},
64+
"archive": {
65+
"exclude": [
66+
"/tests",
67+
"/phpunit.xml.dist"
68+
]
6369
}
6470
}

locale/af/LC_MESSAGES/sqlparser.mo

4.82 KB
Binary file not shown.

0 commit comments

Comments
 (0)