File tree 5 files changed +14
-8
lines changed
tests/Doctrine/Tests/ODM/PHPCR/Query
5 files changed +14
-8
lines changed Original file line number Diff line number Diff line change 37
37
- php-version : ' 8.1'
38
38
dependencies : lowest
39
39
symfony-version : ' *'
40
+ jackalope-version : ' 1.*'
40
41
- php-version : ' 8.1'
41
42
dependencies : highest
42
43
symfony-version : ' 5.4.*'
@@ -115,6 +116,7 @@ jobs:
115
116
- php-version : ' 8.1'
116
117
dependencies : lowest
117
118
symfony-version : ' *'
119
+ jackalope-version : ' 1.*'
118
120
- php-version : ' 8.1'
119
121
dependencies : highest
120
122
symfony-version : 5.4.*
Original file line number Diff line number Diff line change 1
1
Changelog
2
2
=========
3
3
4
- 2.0 (unreleased)
5
- ----------------
4
+ 2.x
5
+ ===
6
+
7
+ 2.0.0
8
+ -----
6
9
7
10
### BC Breaks
8
11
Original file line number Diff line number Diff line change 18
18
{"name" :" David Buchmann" , "email" :" david@liip.ch" },
19
19
{"name" :" Lukas Kahwe Smith" , "email" :" smith@pooteeweet.org" }
20
20
],
21
- "minimum-stability" : " beta" ,
22
- "prefer-stable" : true ,
23
21
"require" : {
24
22
"php" : " ^8.1" ,
25
23
"doctrine/collections" : " ^2.0" ,
26
24
"doctrine/common" : " ^2.4 || ^3.0" ,
27
- "doctrine/annotations" : " ^1.14.3 || ^2.0" ,
28
25
"doctrine/data-fixtures" : " ^1.0" ,
29
26
"doctrine/event-manager" : " ^1.0 || ^2.0" ,
30
27
"doctrine/persistence" : " ^3.0" ,
Original file line number Diff line number Diff line change @@ -10,5 +10,5 @@ final class Version
10
10
/**
11
11
* Current version of PHPCR ODM.
12
12
*/
13
- public const VERSION = '2.0-dev ' ;
13
+ public const VERSION = '2.0.0 ' ;
14
14
}
Original file line number Diff line number Diff line change @@ -122,9 +122,13 @@ public function testExecuteParameters(): void
122
122
->method ('bindValue ' )
123
123
->with (
124
124
$ this ->callback (function (string $ key ): bool {
125
- return 'kfoo ' === $ key || 'kbar ' === $ key ;
125
+ $ this ->assertContains ($ key , ['kfoo ' , 'kbar ' ]);
126
+
127
+ return true ;
126
128
}), $ this ->callback (function (string $ value ): bool {
127
- return 'bar ' === $ value || 'foo ' === $ value ;
129
+ $ this ->assertContains ($ value , ['bar ' , 'foo ' ]);
130
+
131
+ return true ;
128
132
})
129
133
)
130
134
;
You can’t perform that action at this time.
0 commit comments