dokuwiki-matrixnotifierwas-plugin – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 # CHANGELOG
2  
3  
4 ## 2.0.2 - 2023-12-03
5  
6 ### Changed
7  
8 - Replaced `call_user_func*` with native calls
9  
10  
11 ## 2.0.1 - 2023-08-03
12  
13 ### Changed
14  
15 - PHP 8.3 support
16  
17  
18 ## 2.0.0 - 2023-05-21
19  
20 ### Added
21  
22 - Added PHP 7 type hints
23  
24 ### Changed
25  
26 - All previously non-final non-exception classes have been marked as soft-final
27  
28 ### Removed
29  
30 - Dropped PHP < 7.2 support
31 - All functions in the `GuzzleHttp\Promise` namespace
32  
33  
34 ## 1.5.3 - 2023-05-21
35  
36 ### Changed
37  
38 - Removed remaining usage of deprecated functions
39  
40  
41 ## 1.5.2 - 2022-08-07
42  
43 ### Changed
44  
45 - Officially support PHP 8.2
46  
47  
48 ## 1.5.1 - 2021-10-22
49  
50 ### Fixed
51  
52 - Revert "Call handler when waiting on fulfilled/rejected Promise"
53 - Fix pool memory leak when empty array of promises provided
54  
55  
56 ## 1.5.0 - 2021-10-07
57  
58 ### Changed
59  
60 - Call handler when waiting on fulfilled/rejected Promise
61 - Officially support PHP 8.1
62  
63 ### Fixed
64  
65 - Fix manually settle promises generated with `Utils::task`
66  
67  
68 ## 1.4.1 - 2021-02-18
69  
70 ### Fixed
71  
72 - Fixed `each_limit` skipping promises and failing
73  
74  
75 ## 1.4.0 - 2020-09-30
76  
77 ### Added
78  
79 - Support for PHP 8
80 - Optional `$recursive` flag to `all`
81 - Replaced functions by static methods
82  
83 ### Fixed
84  
85 - Fix empty `each` processing
86 - Fix promise handling for Iterators of non-unique keys
87 - Fixed `method_exists` crashes on PHP 8
88 - Memory leak on exceptions
89  
90  
91 ## 1.3.1 - 2016-12-20
92  
93 ### Fixed
94  
95 - `wait()` foreign promise compatibility
96  
97  
98 ## 1.3.0 - 2016-11-18
99  
100 ### Added
101  
102 - Adds support for custom task queues.
103  
104 ### Fixed
105  
106 - Fixed coroutine promise memory leak.
107  
108  
109 ## 1.2.0 - 2016-05-18
110  
111 ### Changed
112  
113 - Update to now catch `\Throwable` on PHP 7+
114  
115  
116 ## 1.1.0 - 2016-03-07
117  
118 ### Changed
119  
120 - Update EachPromise to prevent recurring on a iterator when advancing, as this
121 could trigger fatal generator errors.
122 - Update Promise to allow recursive waiting without unwrapping exceptions.
123  
124  
125 ## 1.0.3 - 2015-10-15
126  
127 ### Changed
128  
129 - Update EachPromise to immediately resolve when the underlying promise iterator
130 is empty. Previously, such a promise would throw an exception when its `wait`
131 function was called.
132  
133  
134 ## 1.0.2 - 2015-05-15
135  
136 ### Changed
137  
138 - Conditionally require functions.php.
139  
140  
141 ## 1.0.1 - 2015-06-24
142  
143 ### Changed
144  
145 - Updating EachPromise to call next on the underlying promise iterator as late
146 as possible to ensure that generators that generate new requests based on
147 callbacks are not iterated until after callbacks are invoked.
148  
149  
150 ## 1.0.0 - 2015-05-12
151  
152 - Initial release