Skip to content

Commit

Permalink
tweaks + bump
Browse files Browse the repository at this point in the history
  • Loading branch information
boazsegev committed May 1, 2023
1 parent 5de6dbd commit e5560c5
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ Please notice that this change log contains changes for upcoming releases as wel

## Changes:

#### Change log v.0.7.55 (2023-05-01)

**Fix**: Fixes `X-SENDFILE` support so it works will `POST` requests. Credit to @fgoepel for PR #141.

#### Change log v.0.7.54 (2023-03-15)

**Fix**: Fixes verbosity option in iodine's CLI where the value `0` was ignored. Credit to @jsaak for opening issue #139.
Expand Down
3 changes: 1 addition & 2 deletions ext/iodine/http.c
Original file line number Diff line number Diff line change
Expand Up @@ -564,9 +564,8 @@ int http_sendfile2(http_s *h, const char *prefix, size_t prefix_len,
http_set_header(h, HTTP_HEADER_CONTENT_LENGTH, fiobj_num_new(length));
http_finish(h);
return 0;
} else if (!strncasecmp("post", s.data, 4)) {
goto open_file;
}
goto open_file;
break;
}
http_send_error(h, 403);
Expand Down
2 changes: 1 addition & 1 deletion lib/iodine/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Iodine
VERSION = '0.7.54'.freeze
VERSION = '0.7.55'.freeze
end

0 comments on commit e5560c5

Please sign in to comment.