Verzeichnisstruktur phpBB-3.3.15
- Veröffentlicht
- 28.08.2024
So funktioniert es
|
Auf das letzte Element klicken. Dies geht jeweils ein Schritt zurück |
Auf das Icon klicken, dies öffnet das Verzeichnis. Nochmal klicken schließt das Verzeichnis. |
|
(Beispiel Datei-Icons)
|
Auf das Icon klicken um den Quellcode anzuzeigen |
CHANGELOG.md
001 # CHANGELOG
002
003 ## 1.5.3 - 2023-05-21
004
005 ### Changed
006
007 - Removed remaining usage of deprecated functions
008
009 ## 1.5.2 - 2022-08-07
010
011 ### Changed
012
013 - Officially support PHP 8.2
014
015 ## 1.5.1 - 2021-10-22
016
017 ### Fixed
018
019 - Revert "Call handler when waiting on fulfilled/rejected Promise"
020 - Fix pool memory leak when empty array of promises provided
021
022 ## 1.5.0 - 2021-10-07
023
024 ### Changed
025
026 - Call handler when waiting on fulfilled/rejected Promise
027 - Officially support PHP 8.1
028
029 ### Fixed
030
031 - Fix manually settle promises generated with `Utils::task`
032
033 ## 1.4.1 - 2021-02-18
034
035 ### Fixed
036
037 - Fixed `each_limit` skipping promises and failing
038
039 ## 1.4.0 - 2020-09-30
040
041 ### Added
042
043 - Support for PHP 8
044 - Optional `$recursive` flag to `all`
045 - Replaced functions by static methods
046
047 ### Fixed
048
049 - Fix empty `each` processing
050 - Fix promise handling for Iterators of non-unique keys
051 - Fixed `method_exists` crashes on PHP 8
052 - Memory leak on exceptions
053
054
055 ## 1.3.1 - 2016-12-20
056
057 ### Fixed
058
059 - `wait()` foreign promise compatibility
060
061
062 ## 1.3.0 - 2016-11-18
063
064 ### Added
065
066 - Adds support for custom task queues.
067
068 ### Fixed
069
070 - Fixed coroutine promise memory leak.
071
072
073 ## 1.2.0 - 2016-05-18
074
075 ### Changed
076
077 - Update to now catch `\Throwable` on PHP 7+
078
079
080 ## 1.1.0 - 2016-03-07
081
082 ### Changed
083
084 - Update EachPromise to prevent recurring on a iterator when advancing, as this
085 could trigger fatal generator errors.
086 - Update Promise to allow recursive waiting without unwrapping exceptions.
087
088
089 ## 1.0.3 - 2015-10-15
090
091 ### Changed
092
093 - Update EachPromise to immediately resolve when the underlying promise iterator
094 is empty. Previously, such a promise would throw an exception when its `wait`
095 function was called.
096
097
098 ## 1.0.2 - 2015-05-15
099
100 ### Changed
101
102 - Conditionally require functions.php.
103
104
105 ## 1.0.1 - 2015-06-24
106
107 ### Changed
108
109 - Updating EachPromise to call next on the underlying promise iterator as late
110 as possible to ensure that generators that generate new requests based on
111 callbacks are not iterated until after callbacks are invoked.
112
113
114 ## 1.0.0 - 2015-05-12
115
116 - Initial release
117