Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
2021-05-24 VERSION 2.5
* Fix compatibility with nginx-1.19.3+.

2017-02-02 VERSION 2.4
* Fix compatibility with nginx-1.11.6+.

2014-12-23 VERSION 2.3
* Fix compatibility with nginx-1.7.9+.

Expand Down
7 changes: 7 additions & 0 deletions ngx_cache_purge_module.c
Original file line number Diff line number Diff line change
Expand Up @@ -487,12 +487,19 @@ typedef struct {
ngx_array_t *cookie_domains;
ngx_array_t *cookie_paths;
# endif /* nginx_version >= 1001015 */
# if (nginx_version >= 1019003)
ngx_array_t *cookie_flags;
# endif /* nginx_version >= 1019003 */

# if (nginx_version < 1007008)
ngx_str_t body_source;
# endif /* nginx_version < 1007008 */

# if (nginx_version >= 1011006)
ngx_http_complex_value_t *method;
# else
ngx_str_t method;
# endif /* nginx_version >= 1011006 */
ngx_str_t location;
ngx_str_t url;

Expand Down