Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 40c8973

Browse files
Remove erroneously duplicated changelog entries.
When constructing the 6.1.0RC1 CHANGELOG.md and package.xml a few commits from older releases were accidentally included. See #2474
1 parent 37cebdd commit 40c8973

2 files changed

Lines changed: 4 additions & 57 deletions

File tree

CHANGELOG.md

Lines changed: 0 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -97,18 +97,6 @@ and PhpRedis adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
9797
- the VALUE argument type for hSetNx must be the same as for hSet
9898
[df074dbe](https://github.com/phpredis/phpredis/commit/df074dbe)
9999
([Uładzimir Tsykun](https://github.com/vtsykun))
100-
- Fix `PSUBSCRIBE` to find callback by pattern not string literal.
101-
[2f276dcd](https://github.com/phpredis/phpredis/commit/2f276dcd)
102-
([michael-grunder](https://github.com/michael-grunder))
103-
[#2395](https://github.com/phpredis/phpredis/pull/2395)
104-
- Fix memory leak and segfault in Redis::exec
105-
[362e1141](https://github.com/phpredis/phpredis/commit/362e1141)
106-
([Pavlo Yatsukhnenko](https://github.com/yatsukhnenko))
107-
- Fix unknown expiration modifier warning when null argument passed
108-
[264c0c7e](https://github.com/phpredis/phpredis/commit/264c0c7e)
109-
[3eb60f58](https://github.com/phpredis/phpredis/commit/3eb60f58)
110-
[#2388](https://github.com/phpredis/phpredis/pull/2388)
111-
([Pavlo Yatsukhnenko](https://github.com/yatsukhnenko))
112100
- Other fixes
113101
[e18f6c6d](https://github.com/phpredis/phpredis/commit/e18f6c6d)
114102
[3d7be358](https://github.com/phpredis/phpredis/commit/3d7be358)
@@ -178,8 +166,6 @@ and PhpRedis adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
178166
[8f8ff72a](https://github.com/phpredis/phpredis/commit/8f8ff72a)
179167
([Takayasu Oyama](https://github.com/taka-oyama))
180168
[5d293245](https://github.com/phpredis/phpredis/commit/5d293245)
181-
[95bd184b](https://github.com/phpredis/phpredis/commit/95bd184b)
182-
([Pavlo Yatsukhnenko](https://github.com/yatsukhnenko))
183169
- Fix config.m4 when using custom dep paths
184170
[ece3f7be](https://github.com/phpredis/phpredis/commit/ece3f7be)
185171
([Michael Grunder](https://github.com/michael-grunder))
@@ -203,9 +189,6 @@ and PhpRedis adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
203189
[dc05d65c](https://github.com/phpredis/phpredis/commit/dc05d65c)
204190
([Pavlo Yatsukhnenko](https://github.com/yatsukhnenko))
205191
[#2381](https://github.com/phpredis/phpredis/pull/2381)
206-
- Add back old examples with note
207-
[1ad95b63](https://github.com/phpredis/phpredis/commit/1ad95b63)
208-
([Joost](https://github.com/OrangeJuiced))
209192

210193
### Tests/CI
211194

@@ -271,12 +254,6 @@ and PhpRedis adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
271254
[e051a5db](https://github.com/phpredis/phpredis/commit/e051a5db)
272255
[#2427](https://github.com/phpredis/phpredis/pull/2427)
273256
([Pavlo Yatsukhnenko](https://github.com/yatsukhnenko))
274-
- Fix deprecation error when passing null to match_type parameter
275-
[b835aaa3](https://github.com/phpredis/phpredis/commit/b835aaa3)
276-
([Pavlo Yatsukhnenko](https://github.com/yatsukhnenko))
277-
- Fix crash in `OBJECT` command in pipeline.
278-
[a7f51f70](https://github.com/phpredis/phpredis/commit/a7f51f70)
279-
([michael-grunder](https://github.com/michael-grunder))
280257
- Use newInstance in RedisClusterTest
281258
[954fbab8](https://github.com/phpredis/phpredis/commit/954fbab8)
282259
([Pavlo Yatsukhnenko](https://github.com/yatsukhnenko))
@@ -294,12 +271,6 @@ and PhpRedis adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
294271
[2bddd84f](https://github.com/phpredis/phpredis/commit/2bddd84f)
295272
([Pavlo Yatsukhnenko](https://github.com/yatsukhnenko))
296273
[#2378](https://github.com/phpredis/phpredis/pull/2378)
297-
- Update sentinel documentation to reflect changes to constructor in 6.0 release
298-
[849bedb6](https://github.com/phpredis/phpredis/commit/849bedb6)
299-
([Joost](https://github.com/OrangeJuiced))
300-
- Add missing option to example
301-
[3674d663](https://github.com/phpredis/phpredis/commit/3674d663)
302-
([Till Krüss](https://github.com/tillkruss))
303274
- Fix typo in link
304275
[8f6bc98f](https://github.com/phpredis/phpredis/commit/8f6bc98f)
305276
([Timo Sand](https://github.com/deiga))

package.xml

Lines changed: 4 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -69,11 +69,6 @@ http://pear.php.net/dtd/package-2.0.xsd">
6969
* Fix segfault when passing just false to auth. [6dc0a0be] (Michael Grunder)
7070
* the VALUE argument type for hSetNx must be the same as for hSet [df074dbe]
7171
(Uladzimir Tsykun)
72-
* Fix `PSUBSCRIBE` to find callback by pattern not string literal. [2f276dcd]
73-
(Michael Grunder)
74-
* Fix memory leak and segfault in Redis::exec [362e1141] (Pavlo Yatsukhnenko)
75-
* Fix unknown expiration modifier warning when null argument passed [264c0c7e,
76-
3eb60f58] (Pavlo Yatsukhnenko)
7772
* Other fixes [e18f6c6d, 3d7be358, 2b555c89, fa1a283a, 37c5f8d4] (Michael Grunder, Viktor Szepe)
7873

7974
Added:
@@ -101,16 +96,15 @@ http://pear.php.net/dtd/package-2.0.xsd">
10196
* Add session.save_path examples [8a39caeb] (Martin Vancl)
10297
* Tighter return types for Redis::(keys|hKeys|hVals|hGetAll) [77ab62bc]
10398
(Benjamin Morel)
104-
* Update stubs [4d233977, ff305349, 12966a74, a4a283ab, 8f8ff72a, 5d293245,
105-
95bd184b] (Michael Grunder, Takayasu Oyama, Pavlo Yatsukhnenko)
99+
* Update stubs [4d233977, ff305349, 12966a74, a4a283ab, 8f8ff72a]
100+
(Michael Grunder, Takayasu Oyama, Pavlo Yatsukhnenko)
106101
* Fix config.m4 when using custom dep paths [ece3f7be] (Michael Grunder)
107102
* Fix retry_internal documentation [142c1f4a] (SplotyCode)
108103
* Fix anchor link [9b5cad31] (Git'Fellow)
109104
* Fix typo in link [bfd379f0] (deiga)
110105
* Fix Fedora package url [60b1ba14, 717713e1] (Dmitrii Kotov)
111106
* Update Redis Sentinel documentation to reflect changes to constructor in 6.0
112107
release [dc05d65c] (Pavlo Yatsukhnenko)
113-
* Add back old examples with note [1ad95b63] (Joost)
114108

115109
Tests/CI:
116110

@@ -129,18 +123,12 @@ http://pear.php.net/dtd/package-2.0.xsd">
129123
* sessionSaveHandler injection. [9f8f80ca] (Pavlo Yatsukhnenko)
130124
* KeyDB addiions [54d62c72, d9c48b78] (Michael Grunder)
131125
* Add PHP 8.3 to CI [78d15140, e051a5db] (Robert Kelcak, Pavlo Yatsukhnenko)
132-
* Fix deprecation error when passing null to match_type parameter [b835aaa3]
133-
(Pavlo Yatsukhnenko)
134-
* Fix crash in `OBJECT` command in pipeline. [a7f51f70] (Michael Grunder)
135126
* Use newInstance in RedisClusterTest [954fbab8] (Pavlo Yatsukhnenko)
136127
* Use actions/checkout@v4 [f4c2ac26] (Pavlo Yatsukhnenko)
137128
* Cluster nodes from ENV [eda39958, 0672703b] (Pavlo Yatsukhnenko)
138129
* Ensure we're talking to redis-server in our high ports test. [7825efbc]
139130
(Michael Grunder)
140131
* Add missing option to installation example [2bddd84f] (Pavlo Yatsukhnenko)
141-
* Update sentinel documentation to reflect changes to constructor in 6.0 release
142-
[849bedb6] (Joost)
143-
* Add missing option to example [3674d663] (Till Kruss)
144132
* Fix typo in link [8f6bc98f] (Timo Sand)
145133
* Update tests to allow users to use a custom class. [5f6ce414] (Michael Grunder)
146134
</notes>
@@ -277,11 +265,6 @@ http://pear.php.net/dtd/package-2.0.xsd">
277265
* Fix segfault when passing just false to auth. [6dc0a0be] (Michael Grunder)
278266
* the VALUE argument type for hSetNx must be the same as for hSet [df074dbe]
279267
(Uladzimir Tsykun)
280-
* Fix `PSUBSCRIBE` to find callback by pattern not string literal. [2f276dcd]
281-
(Michael Grunder)
282-
* Fix memory leak and segfault in Redis::exec [362e1141] (Pavlo Yatsukhnenko)
283-
* Fix unknown expiration modifier warning when null argument passed [264c0c7e,
284-
3eb60f58] (Pavlo Yatsukhnenko)
285268
* Other fixes [e18f6c6d, 3d7be358, 2b555c89, fa1a283a, 37c5f8d4] (Michael Grunder, Viktor Szepe)
286269

287270
Added:
@@ -309,16 +292,15 @@ http://pear.php.net/dtd/package-2.0.xsd">
309292
* Add session.save_path examples [8a39caeb] (Martin Vancl)
310293
* Tighter return types for Redis::(keys|hKeys|hVals|hGetAll) [77ab62bc]
311294
(Benjamin Morel)
312-
* Update stubs [4d233977, ff305349, 12966a74, a4a283ab, 8f8ff72a, 5d293245,
313-
95bd184b] (Michael Grunder, Takayasu Oyama, Pavlo Yatsukhnenko)
295+
* Update stubs [4d233977, ff305349, 12966a74, a4a283ab, 8f8ff72a, 5d293245]
296+
(Michael Grunder, Takayasu Oyama, Pavlo Yatsukhnenko)
314297
* Fix config.m4 when using custom dep paths [ece3f7be] (Michael Grunder)
315298
* Fix retry_internal documentation [142c1f4a] (SplotyCode)
316299
* Fix anchor link [9b5cad31] (Git'Fellow)
317300
* Fix typo in link [bfd379f0] (deiga)
318301
* Fix Fedora package url [60b1ba14, 717713e1] (Dmitrii Kotov)
319302
* Update Redis Sentinel documentation to reflect changes to constructor in 6.0
320303
release [dc05d65c] (Pavlo Yatsukhnenko)
321-
* Add back old examples with note [1ad95b63] (Joost)
322304

323305
Tests/CI:
324306

@@ -337,18 +319,12 @@ http://pear.php.net/dtd/package-2.0.xsd">
337319
* sessionSaveHandler injection. [9f8f80ca] (Pavlo Yatsukhnenko)
338320
* KeyDB addiions [54d62c72, d9c48b78] (Michael Grunder)
339321
* Add PHP 8.3 to CI [78d15140, e051a5db] (Robert Kelcak, Pavlo Yatsukhnenko)
340-
* Fix deprecation error when passing null to match_type parameter [b835aaa3]
341-
(Pavlo Yatsukhnenko)
342-
* Fix crash in `OBJECT` command in pipeline. [a7f51f70] (Michael Grunder)
343322
* Use newInstance in RedisClusterTest [954fbab8] (Pavlo Yatsukhnenko)
344323
* Use actions/checkout@v4 [f4c2ac26] (Pavlo Yatsukhnenko)
345324
* Cluster nodes from ENV [eda39958, 0672703b] (Pavlo Yatsukhnenko)
346325
* Ensure we're talking to redis-server in our high ports test. [7825efbc]
347326
(Michael Grunder)
348327
* Add missing option to installation example [2bddd84f] (Pavlo Yatsukhnenko)
349-
* Update sentinel documentation to reflect changes to constructor in 6.0 release
350-
[849bedb6] (Joost)
351-
* Add missing option to example [3674d663] (Till Kruss)
352328
* Fix typo in link [8f6bc98f] (Timo Sand)
353329
* Update tests to allow users to use a custom class. [5f6ce414] (Michael Grunder)
354330
</notes>

0 commit comments

Comments
 (0)