Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: php/php-src
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: php-8.3.18
Choose a base ref
...
head repository: php/php-src
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: php-8.3.19
Choose a head ref
  • 2 commits
  • 5 files changed
  • 2 contributors

Commits on Mar 12, 2025

  1. Copy the full SHA
    f44f0d6 View commit details
  2. Fix branch target in zend_jit_push_call_frame()

    Introduced by accident in 3b4a58d.
    Will request a cherry-pick.
    nielsdos authored and ericmann committed Mar 12, 2025
    Copy the full SHA
    fdeadcd View commit details
Showing with 7 additions and 7 deletions.
  1. +1 −1 NEWS
  2. +1 −1 Zend/zend.h
  3. +1 −1 configure.ac
  4. +1 −1 ext/opcache/jit/zend_jit_arm64.dasc
  5. +3 −3 main/php_version.h
2 changes: 1 addition & 1 deletion NEWS
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
PHP NEWS
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
13 Mar 2025, PHP 8.3.18
13 Mar 2025, PHP 8.3.19

- BCMath:
. Fixed bug GH-17398 (bcmul memory leak). (SakiTakamachi)
2 changes: 1 addition & 1 deletion Zend/zend.h
Original file line number Diff line number Diff line change
@@ -20,7 +20,7 @@
#ifndef ZEND_H
#define ZEND_H

#define ZEND_VERSION "4.3.18"
#define ZEND_VERSION "4.3.19"

#define ZEND_ENGINE_3

2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
@@ -17,7 +17,7 @@ dnl Basic autoconf initialization, generation of config.nice.
dnl ----------------------------------------------------------------------------

AC_PREREQ([2.68])
AC_INIT([PHP],[8.3.18],[https://github.com/php/php-src/issues],[php],[https://www.php.net])
AC_INIT([PHP],[8.3.19],[https://github.com/php/php-src/issues],[php],[https://www.php.net])
AC_CONFIG_SRCDIR([main/php_version.h])
AC_CONFIG_AUX_DIR([build])
AC_PRESERVE_HELP_ORDER
2 changes: 1 addition & 1 deletion ext/opcache/jit/zend_jit_arm64.dasc
Original file line number Diff line number Diff line change
@@ -8658,7 +8658,7 @@ static int zend_jit_push_call_frame(dasm_State **Dst, const zend_op *opline, con
if (!func) {
| ldrb TMP1w, [REG0, #offsetof(zend_closure, func.type)]
| cmp TMP1w, #ZEND_USER_FUNCTION
| beq >1
| bne >1
}
if (!func || func->common.type == ZEND_USER_FUNCTION) {
| add FCARG1x, REG0, #offsetof(zend_closure, func)
6 changes: 3 additions & 3 deletions main/php_version.h
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@
/* edit configure.ac to change version number */
#define PHP_MAJOR_VERSION 8
#define PHP_MINOR_VERSION 3
#define PHP_RELEASE_VERSION 18
#define PHP_RELEASE_VERSION 19
#define PHP_EXTRA_VERSION ""
#define PHP_VERSION "8.3.18"
#define PHP_VERSION_ID 80318
#define PHP_VERSION "8.3.19"
#define PHP_VERSION_ID 80319