Skip to content

5.9.3 prep #16756

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

Merged
merged 12 commits into from
Apr 21, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ on:

env:
# All versions should be declared here
PHALCON_VERSION: 5.9.2
PHALCON_VERSION: 5.9.3
ZEPHIR_PARSER_VERSION: 1.6.1

# For tests
Expand Down
3 changes: 2 additions & 1 deletion CHANGELOG-5.0.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## [5.9.3](https://github.com/phalcon/cphalcon/releases/tag/v5.9.3) (2025-xx-xx)
## [5.9.3](https://github.com/phalcon/cphalcon/releases/tag/v5.9.3) (2025-04-19)

### Changed
- Added Multi-Stage Dockerfile and Github action for release Docker images to ghcr.io and Docker Hub. [#16752](https://github.com/phalcon/cphalcon/issues/16752)
Expand All @@ -15,6 +15,7 @@
- Fixed `Phalcon\Mvc\Model\Binder` to use ReflectionParameter::getType() instead of deprecated method, PHP 8.0 or higher issue. [#16742](https://github.com/phalcon/cphalcon/issues/16742)
- Fixed `Phalcon\Mvc\Model\Query` to check if cache entry exists. [#16747](https://github.com/phalcon/cphalcon/issues/16747)
- Fixed `Phalcon\Mvc\Router` to correctly match route when using query string URIs. [#16749](https://github.com/phalcon/cphalcon/issues/16749)
- Fixed `Phalcon\Mvc\Model::cloneResultset` to properly parse fields that do not accept `null` values [#16736](https://github.com/phalcon/cphalcon/issues/16736)

### Removed

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ Steps:
* [Incubator](https://phalcon.io/incubator) - Community driven plugins and classes extending the framework (written in PHP)

### Support
* [Forum](https://phalcon.io/forum)
* [Discussions](https://phalcon.io/discussions)
* [Discord](https://phalcon.io/discord)
* [Stack Overflow](https://phalcon.io/so)

Expand Down
4,639 changes: 2,385 additions & 2,254 deletions build/phalcon/phalcon.zep.c

Large diffs are not rendered by default.

17 changes: 17 additions & 0 deletions build/phalcon/phalcon.zep.h

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

2 changes: 1 addition & 1 deletion build/phalcon/php_phalcon.h
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ typedef zend_function zephir_fcall_cache_entry;


#define PHP_PHALCON_NAME "phalcon"
#define PHP_PHALCON_VERSION "5.9.2"
#define PHP_PHALCON_VERSION "5.9.3"
#define PHP_PHALCON_EXTNAME "phalcon"
#define PHP_PHALCON_AUTHOR "Phalcon Team and contributors"
#define PHP_PHALCON_ZEPVERSION "0.18.0-$Id$"
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"high load",
"mvc"
],
"version": "5.9.2",
"version": "5.9.3",
"license": "BSD-3-Clause",
"authors": [
{
Expand Down
43 changes: 23 additions & 20 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.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"name": "phalcon",
"description": "Phalcon is a full stack PHP framework, delivered as a PHP extension, offering lower resource consumption and high performance.",
"author": "Phalcon Team and contributors",
"version": "5.9.2",
"version": "5.9.3",
"verbose": false,
"stubs": {
"path": "ide\/%version%\/%namespace%\/",
Expand Down
73 changes: 73 additions & 0 deletions docker-compose-dev.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
# For local development only.

services:
cphalcon-dev-8.1:
container_name: cphalcon-dev-8.1
hostname: cphalcon-dev-81
build:
dockerfile: docker/develop/Dockerfile
args:
PHP_VERSION: 8.1
working_dir: /srv
ports:
- "9501:9501"
volumes:
- .:/srv

cphalcon-dev-8.2:
container_name: cphalcon-dev-8.2
hostname: cphalcon-dev-82
build:
dockerfile: docker/develop/Dockerfile
args:
PHP_VERSION: 8.2
working_dir: /srv
volumes:
- .:/srv

cphalcon-dev-8.3:
container_name: cphalcon-dev-8.3
hostname: cphalcon-dev-83
build:
dockerfile: docker/develop/Dockerfile
args:
PHP_VERSION: 8.3
working_dir: /srv
volumes:
- .:/srv

cphalcon-dev-8.4:
container_name: cphalcon-dev-8.4
hostname: cphalcon-dev-84
build:
dockerfile: docker/develop/Dockerfile
args:
PHP_VERSION: 8.4
working_dir: /srv
volumes:
- .:/srv

mysql:
container_name: cphalcon-dev-mysql
image: mysql:5.7
environment:
- MYSQL_ROOT_PASSWORD=secret
- MYSQL_USER=phalcon
- MYSQL_DATABASE=phalcon
- MYSQL_PASSWORD=secret

postgres:
container_name: cphalcon-dev-postgres
image: postgres:12-alpine
environment:
- POSTGRES_PASSWORD=secret
- POSTGRES_USER=phalcon
- POSTGRES_DB=phalcon

redis:
container_name: cphalcon-dev-redis
image: redis:5-alpine

memcached:
container_name: cphalcon-dev-memcached
image: memcached:1.5-alpine
59 changes: 0 additions & 59 deletions docker-compose-local.yml

This file was deleted.

Loading
Loading