Skip to content

Commit 5156538

Browse files
authored
Merge pull request #16824 from niden-code/T16778-helper-xhtml
T16778 helper xhtml
2 parents 28b737c + ac83384 commit 5156538

File tree

416 files changed

+7667
-5439
lines changed

Some content is hidden

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

416 files changed

+7667
-5439
lines changed

.github/workflows/compile-windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66

77
env:
88
# All versions should be declared here
9-
PHALCON_VERSION: 5.9.3
9+
PHALCON_VERSION: 5.9.4
1010

1111
jobs:
1212
windows:

.github/workflows/main.yml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,8 @@ on:
1717

1818
env:
1919
# All versions should be declared here
20-
PHALCON_VERSION: 5.9.3
21-
ZEPHIR_PARSER_VERSION: 1.6.1
22-
20+
PHALCON_VERSION: 5.9.4
21+
ZEPHIR_PARSER_VERSION: 1.8.0
2322
# For tests
2423
LANG: en_US.UTF-8
2524
LANGUAGE: en_US.UTF-8
@@ -38,7 +37,7 @@ jobs:
3837
# https://docs.github.com/en/actions/learn-github-actions/reusing-workflows#limitations
3938
setup_workflow:
4039
name: Setup workflow
41-
runs-on: ubuntu-22.04
40+
runs-on: ubuntu-latest
4241
outputs:
4342
zephir_extensions: ${{ steps.setup-zephir-ext.outputs.extensions }}
4443

@@ -56,7 +55,7 @@ jobs:
5655

5756
name: Check code style
5857

59-
runs-on: ubuntu-22.04
58+
runs-on: ubuntu-latest
6059
steps:
6160
- uses: actions/checkout@v4
6261

@@ -128,7 +127,7 @@ jobs:
128127
Write-Output "SESSION_SAVE_PATH=$SessionSavePath" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
129128
130129
- name: Setup PHP
131-
uses: shivammathur/setup-php@2.32.0
130+
uses: shivammathur/setup-php@2.35.5
132131
with:
133132
php-version: ${{ matrix.php }}
134133
extensions: ${{ env.EXTENSIONS }}
@@ -283,7 +282,7 @@ jobs:
283282
- uses: actions/checkout@v4
284283

285284
- name: Setup PHP
286-
uses: shivammathur/setup-php@2.32.0
285+
uses: shivammathur/setup-php@2.35.5
287286
with:
288287
php-version: ${{ matrix.php }}
289288
extensions: ${{ env.EXTENSIONS }}

CHANGELOG-5.0.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,22 @@
11
# Changelog
2-
## 5.9.4 (2025-xx-xx)
2+
## 5.9.5 (xxxx-xx-xx)
3+
4+
### Changed
5+
6+
### Added
7+
8+
### Fixed
9+
10+
### Removed
11+
12+
# Changelog
13+
## 5.9.4 (2025-11-21)
314

415
### Changed
516

617
- Changed `bind()` and `validate()` method in `Phalcon\Filter\Validation` and `Phalcon\Filter\Validation\ValidationInterface` to accept `$whitelist` array of only allowed fields to be mutated when using entity [#16800](https://github.com/phalcon/cphalcon/issues/16800)
18+
- Changed `Phalcon\Storage\Adapters\Libmemcached::getAdapter()` to use 50ms for `\Memcached::OPT_CONNECT_TIMEOUT` [#16818](https://github.com/phalcon/cphalcon/issues/16818)
19+
- Changed `Phalcon\Html\Helper\Input\*` to honor `Docbloc` directives [#16778](https://github.com/phalcon/cphalcon/issues/16778)
720

821
### Added
922

build/phalcon/phalcon.zep.c

Lines changed: 2450 additions & 1676 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: 62 additions & 17 deletions
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: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -103,10 +103,10 @@ typedef zend_function zephir_fcall_cache_entry;
103103

104104

105105
#define PHP_PHALCON_NAME "phalcon"
106-
#define PHP_PHALCON_VERSION "5.9.3"
106+
#define PHP_PHALCON_VERSION "5.9.4"
107107
#define PHP_PHALCON_EXTNAME "phalcon"
108108
#define PHP_PHALCON_AUTHOR "Phalcon Team and contributors"
109-
#define PHP_PHALCON_ZEPVERSION "0.18.0-$Id$"
109+
#define PHP_PHALCON_ZEPVERSION "0.19.0-$Id$"
110110
#define PHP_PHALCON_DESCRIPTION "Phalcon is a full stack PHP framework, delivered as a PHP extension, offering lower resource consumption and high performance."
111111

112112
typedef struct _zephir_struct_db {
@@ -135,7 +135,7 @@ typedef struct _zephir_struct_orm {
135135
zend_bool late_state_binding;
136136
zend_bool not_null_validations;
137137
HashTable* parser_cache;
138-
zend_string* resultset_prefetch_records;
138+
char * resultset_prefetch_records;
139139
int unique_cache_id;
140140
zend_bool update_snapshot_on_save;
141141
zend_bool virtual_foreign_keys;

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.3",
11+
"version": "5.9.4",
1212
"license": "BSD-3-Clause",
1313
"authors": [
1414
{

0 commit comments

Comments
 (0)