Skip to content

Commit 7903161

Browse files
authored
Merge pull request #16730 from phalcon/5.0.x
5.9.1 Release
2 parents 60ab491 + e5f8f3b commit 7903161

File tree

90 files changed

+3649
-1535
lines changed

Some content is hidden

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

90 files changed

+3649
-1535
lines changed

.github/workflows/build-docker.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
strategy:
1616
fail-fast: false
1717
matrix:
18-
php: [ '8.0', '8.1', '8.2', '8.3', '8.4' ]
18+
php: [ '8.1', '8.2', '8.3', '8.4' ]
1919

2020
name: Build Dockerfile PHP ${{ matrix.php }}
2121
steps:

.github/workflows/main.yml

+13-13
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.0
22+
PHALCON_VERSION: 5.9.1
2323
ZEPHIR_PARSER_VERSION: 1.6.1
2424

2525
# For tests
@@ -45,10 +45,10 @@ jobs:
4545
zephir_extensions: ${{ steps.setup-zephir-ext.outputs.extensions }}
4646

4747
steps:
48-
- id: setup-zephir-ext
49-
name: Setup Zephir Extensions
50-
run: |
51-
echo "extensions=zephir_parser-${{ env.ZEPHIR_PARSER_VERSION }}" >> "$GITHUB_OUTPUT"
48+
- id: setup-zephir-ext
49+
name: Setup Zephir Extensions
50+
run: |
51+
echo "extensions=zephir_parser-${{ env.ZEPHIR_PARSER_VERSION }}" >> "$GITHUB_OUTPUT"
5252
5353
5454
# PHP CodeSniffer inspection
@@ -72,7 +72,7 @@ jobs:
7272
uses: zephir-lang/templates/.github/workflows/phalcon-pecl-zephir-composer.yml@main
7373
with:
7474
extensions: ${{ needs.setup_workflow.outputs.zephir_extensions }}
75-
php_version: '8.3'
75+
php_version: '8.4'
7676
secrets:
7777
composer-token: ${{ secrets.GITHUB_TOKEN }}
7878

@@ -93,19 +93,19 @@ jobs:
9393
name:
9494
- ubuntu-gcc
9595

96-
# Removing temporarily macos builds since it fails due to the container setup
97-
# - macos-clang
96+
# Removing temporarily macos builds since it fails due to the container setup
97+
# - macos-clang
9898

9999
# matrix names should be in next format:
100100
# {php}-{ts}-{os.name}-{compiler}-{arch}
101101
include:
102102
# Linux
103103
- { name: ubuntu-gcc, os: ubuntu-22.04, compiler: gcc }
104-
# # macOS
105-
# - { name: macos-clang, os: macos-latest, compiler: clang }
104+
# # macOS
105+
# - { name: macos-clang, os: macos-latest, compiler: clang }
106106
# Windows
107-
# - { php: '8.0', ts: 'ts', arch: 'x64', name: 'windows2019-vs16', os: 'windows-2019', compiler: 'vs16' }
108-
# - { php: '8.0', ts: 'nts', arch: 'x64', name: 'windows2019-vs16', os: 'windows-2019', compiler: 'vs16' }
107+
# - { php: '8.0', ts: 'ts', arch: 'x64', name: 'windows2019-vs16', os: 'windows-2019', compiler: 'vs16' }
108+
# - { php: '8.0', ts: 'nts', arch: 'x64', name: 'windows2019-vs16', os: 'windows-2019', compiler: 'vs16' }
109109
#- { php: '8.1', ts: 'ts', arch: 'x64', name: 'windows2019-vs16', os: 'windows-2019', compiler: 'vs16' }
110110
#- { php: '8.1', ts: 'nts', arch: 'x64', name: 'windows2019-vs16', os: 'windows-2019', compiler: 'vs16' }
111111
# Most of the extensions wasn't compiled for PHP 8.2.
@@ -180,7 +180,7 @@ jobs:
180180
$PhalconExtPath = "$(php-config --extension-dir)/phalcon.so"
181181
}
182182
echo "::set-output name=extension-path::$PhalconExtPath"
183-
# echo "extension-path=$PhalconExtPath" >> "$GITHUB_OUTPUT"
183+
# echo "extension-path=$PhalconExtPath" >> "$GITHUB_OUTPUT"
184184

185185
- name: Creates build artifact with Phalcon extension
186186
uses: ./.github/actions/pack-phalcon-ext

CHANGELOG-5.0.md

+16
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
# Changelog
22

3+
## [5.9.1](https://github.com/phalcon/cphalcon/releases/tag/v5.9.1) (2025-03-31)
4+
5+
### Changed
6+
7+
- Changed `Phalcon\Storage\Adapter\AbstractAdapter` and dropped `has()` check before receiving the value. [#16705](https://github.com/phalcon/cphalcon/issues/16705)
8+
9+
### Added
10+
11+
- Added `Phalcon\Html\Helper\Breadcrumbs` component to replace the old `Phalcon\Html\Breadcrumbs` component. [#16727](https://github.com/phalcon/cphalcon/issues/16727)
12+
13+
### Fixed
14+
15+
- Fixed `Phalcon\Mvc\Micro\LazyLoader::callMethod` to prevent `Unknown named parameter` error [#16724](https://github.com/phalcon/cphalcon/issues/16724)
16+
17+
### Removed
18+
319
## [5.9.0](https://github.com/phalcon/cphalcon/releases/tag/v5.9.0) (2025-03-08)
420

521
### Changed

0 commit comments

Comments
 (0)