File tree Expand file tree Collapse file tree 7 files changed +47
-6
lines changed Expand file tree Collapse file tree 7 files changed +47
-6
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## [ 0.13.0] ( https://github.com/davidcole1340/ext-php-rs/compare/ext-php-rs-v0.12.0...ext-php-rs-v0.13.0 ) - 2025-02-06
4
+
5
+ ### Fixed
6
+ - * (array)* Fix null dereference in iterator (#358 ) (by @Xenira ) [[ #358 ] ( https://github.com/davidcole1340/ext-php-rs/issues/358 )] [[ #357 ] ( https://github.com/davidcole1340/ext-php-rs/issues/357 )]
7
+ - * (globals)* [ ** breaking** ] Disabled ` $_REQUEST ` super global function (#332 ) (by @Xenira ) [[ #332 ] ( https://github.com/davidcole1340/ext-php-rs/issues/332 )] [[ #331 ] ( https://github.com/davidcole1340/ext-php-rs/issues/331 )]
8
+ > If you used ` http_request_vars() ` before it will now panic until a proper implementation is found.
9
+
10
+ ### Other
11
+ - * (clippy)* Fix new clippy checks (#352 ) (by @Xenira ) [[ #352 ] ( https://github.com/davidcole1340/ext-php-rs/issues/352 )]
12
+ - * (clippy)* Fix new clippy errors (by @Xenira )
13
+ - * (php)* Add deprecation warning for php 8.0 (#353 ) (by @Xenira ) [[ #353 ] ( https://github.com/davidcole1340/ext-php-rs/issues/353 )] [[ #343 ] ( https://github.com/davidcole1340/ext-php-rs/issues/343 )]
14
+ - * (release)* Add release bot (#346 ) (by @Xenira ) [[ #346 ] ( https://github.com/davidcole1340/ext-php-rs/issues/346 )] [[ #340 ] ( https://github.com/davidcole1340/ext-php-rs/issues/340 )]
15
+ - * (windows)* Add a debug build with debugging symbols (#350 ) (by @EdmondDantes ) [[ #350 ] ( https://github.com/davidcole1340/ext-php-rs/issues/350 )]
16
+ - Fix typos (by @Xenira )
17
+ - Windows build should try archives (by @joehoyle )
18
+ - Fmt (by @joehoyle )
19
+ - Use vs17 on php 8.4+ (by @joehoyle )
20
+ - Don't use archive for 8.4.1 (by @joehoyle )
21
+ - Fmt (by @joehoyle )
22
+ - Support php 8.4 internal api changes (by @joehoyle )
23
+ - PHP 8.4 (by @joehoyle )
24
+ - Fix pipeline (#320 ) (by @Xenira ) [[ #320 ] ( https://github.com/davidcole1340/ext-php-rs/issues/320 )]
25
+ - Update README.md ([ #317 ] ( https://github.com/davidcole1340/ext-php-rs/pull/317 ) ) (by @s00d ) [[ #317 ] ( https://github.com/davidcole1340/ext-php-rs/issues/317 )]
26
+
3
27
## 0.10.1
4
28
- chore: Bitflags upgrade to v2 by @ptondereau [ #221 ]
5
29
- chore: Update to bindgen 0.65.1 @ptondereau [ #220 ]
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ repository = "https://github.com/davidcole1340/ext-php-rs"
5
5
homepage = " https://github.com/davidcole1340/ext-php-rs"
6
6
license = " MIT OR Apache-2.0"
7
7
keywords = [" php" , " ffi" , " zend" ]
8
- version = " 0.12 .0"
8
+ version = " 0.13 .0"
9
9
authors = [
" David Cole <[email protected] >" ]
10
10
edition = " 2018"
11
11
categories = [" api-bindings" ]
@@ -17,7 +17,7 @@ parking_lot = "0.12"
17
17
cfg-if = " 1.0"
18
18
once_cell = " 1.17"
19
19
anyhow = { version = " 1" , optional = true }
20
- ext-php-rs-derive = { version = " =0.10.1 " , path = " ./crates/macros" }
20
+ ext-php-rs-derive = { version = " =0.10.2 " , path = " ./crates/macros" }
21
21
22
22
[dev-dependencies ]
23
23
skeptic = " 0.13"
Original file line number Diff line number Diff line change
1
+ # Changelog
2
+
3
+ ## [ 0.1.10] ( https://github.com/davidcole1340/ext-php-rs/compare/cargo-php-v0.1.9...cargo-php-v0.1.10 ) - 2025-02-06
4
+
5
+ ### Other
6
+ - * (release)* Add release bot (#346 ) (by @Xenira ) [[ #346 ] ( https://github.com/davidcole1340/ext-php-rs/issues/346 )] [[ #340 ] ( https://github.com/davidcole1340/ext-php-rs/issues/340 )]
7
+ - Don't use symbolic links for git. (by @faassen )
8
+ - Fix pipeline (#320 ) (by @Xenira ) [[ #320 ] ( https://github.com/davidcole1340/ext-php-rs/issues/320 )]
Original file line number Diff line number Diff line change @@ -5,13 +5,13 @@ repository = "https://github.com/davidcole1340/ext-php-rs"
5
5
homepage = " https://github.com/davidcole1340/ext-php-rs"
6
6
license = " MIT OR Apache-2.0"
7
7
keywords = [" php" , " ffi" , " zend" ]
8
- version = " 0.1.9 "
8
+ version = " 0.1.10 "
9
9
authors = [
" David Cole <[email protected] >" ]
10
10
edition = " 2018"
11
11
categories = [" api-bindings" , " command-line-interface" ]
12
12
13
13
[dependencies ]
14
- ext-php-rs = { version = " 0.12 " , path = " ../../" }
14
+ ext-php-rs = { version = " 0.13 " , path = " ../../" }
15
15
16
16
clap = { version = " 4.0" , features = [" derive" ] }
17
17
anyhow = " 1"
Original file line number Diff line number Diff line change
1
+ # Changelog
2
+
3
+ ## [ 0.10.2] ( https://github.com/davidcole1340/ext-php-rs/compare/ext-php-rs-derive-v0.10.1...ext-php-rs-derive-v0.10.2 ) - 2025-02-06
4
+
5
+ ### Other
6
+ - Typo when error for #[ defaults] macro (by @yoramdelangen )
7
+ - Don't use symbolic links for git. (by @faassen )
8
+ - Fix pipeline (#320 ) (by @Xenira ) [[ #320 ] ( https://github.com/davidcole1340/ext-php-rs/issues/320 )]
9
+ - Support for variadic functions (by @joehoyle )
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ description = "Derive macros for ext-php-rs."
4
4
repository = " https://github.com/davidcole1340/ext-php-rs"
5
5
homepage = " https://github.com/davidcole1340/ext-php-rs"
6
6
license = " MIT OR Apache-2.0"
7
- version = " 0.10.1 "
7
+ version = " 0.10.2 "
8
8
authors = [
" David Cole <[email protected] >" ]
9
9
edition = " 2018"
10
10
Original file line number Diff line number Diff line change @@ -9,4 +9,4 @@ license = "MIT OR Apache-2.0"
9
9
ext-php-rs = { path = " ../" , features = [" closure" ] }
10
10
11
11
[lib ]
12
- crate-type = [" cdylib" ]
12
+ crate-type = [" cdylib" ]
You can’t perform that action at this time.
0 commit comments