Skip to content

Commit dd37339

Browse files
authored
Merge pull request #16739 from phalcon/5.0.x
5.9.2 release
2 parents 7903161 + d0abe48 commit dd37339

File tree

19 files changed

+996
-889
lines changed

19 files changed

+996
-889
lines changed

.github/workflows/build-docker.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,11 @@ jobs:
1515
strategy:
1616
fail-fast: false
1717
matrix:
18-
php: [ '8.1', '8.2', '8.3', '8.4' ]
18+
php:
19+
- '8.1'
20+
- '8.2'
21+
- '8.3'
22+
- '8.4'
1923

2024
name: Build Dockerfile PHP ${{ matrix.php }}
2125
steps:

.github/workflows/main.yml

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ on:
1919

2020
env:
2121
# All versions should be declared here
22-
PHALCON_VERSION: 5.9.1
22+
PHALCON_VERSION: 5.9.2
2323
ZEPHIR_PARSER_VERSION: 1.6.1
2424

2525
# For tests
@@ -40,7 +40,7 @@ jobs:
4040
# https://docs.github.com/en/actions/learn-github-actions/reusing-workflows#limitations
4141
setup_workflow:
4242
name: Setup workflow
43-
runs-on: ubuntu-latest
43+
runs-on: ubuntu-22.04
4444
outputs:
4545
zephir_extensions: ${{ steps.setup-zephir-ext.outputs.extensions }}
4646

@@ -56,9 +56,14 @@ jobs:
5656
permissions:
5757
contents: read
5858

59-
uses: zephir-lang/templates/.github/workflows/phpcs.yml@main
60-
with:
61-
standard: ./phpcs.xml
59+
name: Check code style
60+
61+
runs-on: ubuntu-22.04
62+
steps:
63+
- uses: actions/checkout@v4
64+
65+
- name: Run PHP_CodeSniffer
66+
run: docker run --rm -v $(pwd):/data cytopia/phpcs --standard=./phpcs.xml
6267

6368
# Generate stubs and validates with PSALM
6469
stubs:

CHANGELOG-5.0.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# Changelog
22

3+
## [5.9.2](https://github.com/phalcon/cphalcon/releases/tag/v5.9.2) (2025-04-03)
4+
5+
### Changed
6+
7+
### Added
8+
9+
### Fixed
10+
11+
- Fixed `Phalcon\Translate\Adapter\Csv` the `escape` argument is explicitly required in PHP 8.4 [#16733](https://github.com/phalcon/cphalcon/issues/16733)
12+
- Fixed `Phalcon\Mvc\Model\Query` to use the cacheOptions lifetime over the "cache" service lifetime
13+
14+
### Removed
15+
316
## [5.9.1](https://github.com/phalcon/cphalcon/releases/tag/v5.9.1) (2025-03-31)
417

518
### Changed

build/phalcon/phalcon.zep.c

Lines changed: 426 additions & 419 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build/phalcon/phalcon.zep.h

Lines changed: 2 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build/phalcon/php_phalcon.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ typedef zend_function zephir_fcall_cache_entry;
103103

104104

105105
#define PHP_PHALCON_NAME "phalcon"
106-
#define PHP_PHALCON_VERSION "5.9.1"
106+
#define PHP_PHALCON_VERSION "5.9.2"
107107
#define PHP_PHALCON_EXTNAME "phalcon"
108108
#define PHP_PHALCON_AUTHOR "Phalcon Team and contributors"
109109
#define PHP_PHALCON_ZEPVERSION "0.18.0-$Id$"

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"high load",
99
"mvc"
1010
],
11-
"version": "5.9.1",
11+
"version": "5.9.2",
1212
"license": "BSD-3-Clause",
1313
"authors": [
1414
{

composer.lock

Lines changed: 12 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"name": "phalcon",
44
"description": "Phalcon is a full stack PHP framework, delivered as a PHP extension, offering lower resource consumption and high performance.",
55
"author": "Phalcon Team and contributors",
6-
"version": "5.9.1",
6+
"version": "5.9.2",
77
"verbose": false,
88
"stubs": {
99
"path": "ide\/%version%\/%namespace%\/",

0 commit comments

Comments
 (0)