Add misc header improvements to upcoming

This commit is contained in:
steve-chavez
2020-02-15 13:56:38 -05:00
committed by Steve Chavez
parent 1d54b8b07d
commit f34a480a99
2 changed files with 5 additions and 1 deletions
+2
View File
@@ -1401,6 +1401,8 @@ You can also access the request path and method with :code:`request.path` and :c
-- You can get the method of the request with
SELECT current_setting('request.method', true);
.. _guc_resp_hdrs:
Setting Response Headers
------------------------
+3 -1
View File
@@ -19,11 +19,13 @@ Added
* Support for user defined socket permission via :ref:`server-unix-socket-mode` config option
|br| -- `@Dansvidania <https://github.com/Dansvidania>`_
* HTTP improvements -- `@steve-chavez <https://github.com/steve-chavez>`_
* HTTP logic improvements -- `@steve-chavez <https://github.com/steve-chavez>`_
+ Support for HTTP HEAD requests.
+ GUCs for :ref:`guc_req_path_method`.
+ Support for :ref:`pre_req_headers`.
+ Allow overriding provided headers(Content-Type, Location, etc) by :ref:`guc_resp_hdrs`
+ Access to the ``Authorization`` header value through ``request.header.authorization``
* Documentation reference for :ref:`s_proc_embed`.