Skip to content

Commit 082c5db

Browse files
committed
Go with 3.4.2
1 parent c306a61 commit 082c5db

File tree

4 files changed

+41
-13
lines changed

4 files changed

+41
-13
lines changed

package.xml

Lines changed: 37 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -40,26 +40,29 @@ Code Coverage Analysis
4040
<active>yes</active>
4141
</lead>
4242

43-
<date>2025-01-06</date>
44-
<time>15:43:11</time>
43+
<date>2025-03-09</date>
44+
<time>16:10:30</time>
4545
<version>
46-
<release>3.4.1</release>
47-
<api>3.4.1</api>
46+
<release>3.4.2</release>
47+
<api>3.4.2</api>
4848
</version>
4949
<stability>
5050
<release>stable</release>
5151
<api>stable</api>
5252
</stability>
5353
<license uri="https://xdebug.org/license/1.03" filesource="LICENSE">Xdebug-1.03</license>
5454
<notes>
55-
Mon, Jan 06, 2025 - Xdebug 3.4.1
55+
Sun, Mar 09, 2025 - Xdebug 3.4.2
5656

5757
= Fixed bugs:
5858

59-
- Fixed issue #2306: Segmentation fault on each HTTP request when not listening to debugging connections
60-
- Fixed issue #2307: Segmentation fault due to a superglobal being a reference while checking for triggers
61-
- Fixed issue #2309: Installation on Windows with PHP PIE failing
62-
- Fixed issue #2310: xdebug 3.4.0 crashes php8.1-fpm after script execution
59+
- Fixed issue #2313: var_dump does not output some Russian characters
60+
- Fixed issue #2314: Class properties with hooks are always shown as null
61+
- Fixed issue #2315: xdebug_dump_superglobals() leaks memory
62+
- Fixed issue #2317: Code coverage leaks memory
63+
- Fixed issue #2321: Segfault when null is assigned to a superglobal
64+
- Fixed issue #2323: xdebug_notify() does not respect xdebug.var_display_max_* Settings
65+
- Fixed issue #2327: Segmentation Fault 139 if exception thrown in callback since PHP 8.4
6366

6467
</notes>
6568

@@ -215,6 +218,31 @@ Mon, Jan 06, 2025 - Xdebug 3.4.1
215218
<zendextsrcrelease />
216219
<changelog>
217220

221+
<release>
222+
<date>2025-01-06</date>
223+
<time>15:43:11</time>
224+
<version>
225+
<release>3.4.1</release>
226+
<api>3.4.1</api>
227+
</version>
228+
<stability>
229+
<release>stable</release>
230+
<api>stable</api>
231+
</stability>
232+
<license uri="https://xdebug.org/license/1.03" filesource="LICENSE">Xdebug-1.03</license>
233+
<notes>
234+
Mon, Jan 06, 2025 - Xdebug 3.4.1
235+
236+
= Fixed bugs:
237+
238+
- Fixed issue #2306: Segmentation fault on each HTTP request when not listening to debugging connections
239+
- Fixed issue #2307: Segmentation fault due to a superglobal being a reference while checking for triggers
240+
- Fixed issue #2309: Installation on Windows with PHP PIE failing
241+
- Fixed issue #2310: xdebug 3.4.0 crashes php8.1-fpm after script execution
242+
243+
</notes>
244+
</release>
245+
218246
<release>
219247
<date>2024-11-28</date>
220248
<time>13:45:52</time>

php_xdebug.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
#define PHP_XDEBUG_H
1919

2020
#define XDEBUG_NAME "Xdebug"
21-
#define XDEBUG_VERSION "3.4.2-dev"
21+
#define XDEBUG_VERSION "3.4.2"
2222
#define XDEBUG_AUTHOR "Derick Rethans"
2323
#define XDEBUG_COPYRIGHT "Copyright (c) 2002-2025 by Derick Rethans"
2424
#define XDEBUG_COPYRIGHT_SHORT "Copyright (c) 2002-2025"

template.rc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
1414
# define THANKS_GUYS ""
1515
#endif
1616

17-
#define VERSIONDESC 3,4,2,0
18-
#define VERSIONSTR "3.4.2-dev"
17+
#define VERSIONDESC 3,4,2,1
18+
#define VERSIONSTR "3.4.2"
1919

2020
//Version
2121
VS_VERSION_INFO VERSIONINFO

xdebug.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
; This file is generated by the 'xdebug.org:html/docs/convert.php' robot
2-
; for Xdebug 3.4.1 — do not modify by hand
2+
; for Xdebug 3.4.2 — do not modify by hand
33

44
; -----------------------------------------------------------------------------
55
; xdebug.cli_color

0 commit comments

Comments
 (0)