summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Updated from global requirements3.16.0OpenStack Proposal Bot2016-07-291-1/+1
| | | | Change-Id: I226cfd2bb2b44583050a57b7039c2280cea7b70e
* Updated from global requirementsOpenStack Proposal Bot2016-07-181-2/+2
| | | | Change-Id: I9726495a68e43fee804bea6535a30e6324d54a40
* Fix unit tests on WindowsGabriel Adrian Samfira2016-07-132-3/+8
| | | | | | | | | Relatively small fix enabling tests to pass on Windows. Connecting to the ANY address on Windows is not allowed. Also, paths in Windows, most times contain a colon. Doing a split() on a string such as 80:C:\test will yield 3 elements, not 2. Change-Id: Icbf466940d4f1ac2a1d48c63839cd31e2ec62581
* Merge "Deprecate using String as valid value for allowed_origin."3.15.0Jenkins2016-07-111-1/+3
|\
| * Deprecate using String as valid value for allowed_origin.Michael Krotscheck2016-05-091-1/+3
| | | | | | | | | | | | | | This adds a deprecation note to users that pass strings to what should be a list. Change-Id: If1130b60679011d76d6452a57de31184eb6142f2
* | Merge "Deprecate multiple config block parsing."Jenkins2016-07-112-25/+7
|\ \ | |/
| * Deprecate multiple config block parsing.Michael Krotscheck2016-05-092-25/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | With the introduction of set_defaults, as well as new documentation features for default values in oslo_config, the CORS middleware has been placed in the odd position where its configuration behaves inconsistently. If you configure via add_origin, then defaults set in set_defaults are not honored. If you configure via multiple configuration blocks ([cors.foo]), then the defaults are also not honored. Additionally, with the conversion of allowed_origin into a list_opt, there is less direct need for multiple config-block parsing. In order to ensure that the middleware behaves consistently with the rest of oslo, as well as adheres to a set of basic sane assumptions made by consumers, this patch deprecates the code path that searches oslo's configuration for multiple [cors.*] blocks. Subsequent patches will add additional deprecation flags to this end. Change-Id: I49c15ccc2dce03b0dea33ec45ef6e271e58582da
* | Updated from global requirementsOpenStack Proposal Bot2016-07-091-2/+2
| | | | | | | | Change-Id: Ide7df253a6e36a146ad567fc8ef10dac05a85a7c
* | Updated from global requirementsOpenStack Proposal Bot2016-06-301-1/+1
| | | | | | | | Change-Id: Ic7bc8936c2fc9e1ae59a8cfde3eb50a521485d0e
* | Updated from global requirementsOpenStack Proposal Bot2016-06-211-1/+1
| | | | | | | | Change-Id: I69f586a1c9180684dc9626eddd745f32dae94a1b
* | Merge "Expose sample config opts for http-proxy-to-wsgi"3.14.0Jenkins2016-06-162-1/+29
|\ \
| * | Expose sample config opts for http-proxy-to-wsgiJamie Lennox2016-06-082-1/+29
| | | | | | | | | | | | | | | | | | | | | | | | Allow sample config generators to retrieve the options for the http-proxy-to-wsgi middleware. Change-Id: I862c9238b791098c9bb9ce4558db5b21dad14a30 Closes-Bug: #1590218
* | | Updated from global requirementsOpenStack Proposal Bot2016-06-091-1/+1
| | | | | | | | | | | | Change-Id: Idb80c2ce92626dae901b49f2e92f2dd5f27a1b26
* | | Fix spelling of config option help3.13.0Jamie Lennox2016-06-091-1/+1
|/ / | | | | | | | | | | | | I think the whole help could be worded better but at least fix the spelling issue. Change-Id: I4f93b4f07dbb08efedec44b9b46cc7daef22f73c
* | Updated from global requirements3.12.0OpenStack Proposal Bot2016-06-032-3/+3
| | | | | | | | Change-Id: I450fc87dbd6ad80875110512c100d28095a15194
* | Updated from global requirementsOpenStack Proposal Bot2016-05-312-2/+2
| | | | | | | | Change-Id: Ia3307d02ecf4d58cd6972945767e426f31200d59
* | Do not add a default content type when replyingJulien Danjou2016-05-113-8/+26
| | | | | | | | | | | | | | | | WebOb includes a default content_type, and that's incorrect for status code such as 304. This fixes that by generalizing the previous fix we introduced for the CORS middleware. Change-Id: I57c47ee5627b17a4e266b9ac4bc038dfccb35012
* | cors: remove unused import3.11.0Julien Danjou2016-05-101-1/+0
| | | | | | | | Change-Id: I6d9179f8e3d9fdda72889c2531b2d1793438552c
* | Merge "Updated from global requirements"Jenkins2016-05-101-1/+1
|\ \
| * | Updated from global requirementsOpenStack Proposal Bot2016-05-101-1/+1
| |/ | | | | | | Change-Id: Ie4b5f5ce4d1ed20d1006ec3c7afa8e6999f6edcf
* | Merge "Add a simple __main__ to easily show healthcheck output"Jenkins2016-05-102-0/+93
|\ \ | |/ |/|
| * Add a simple __main__ to easily show healthcheck outputJoshua Harlow2016-05-092-0/+93
| | | | | | | | | | | | | | | | Seems like not many people know what the detailed output of this thing does, so in order to make it easier to see that add a simple __main__ entrypoint. Change-Id: Ife3b49c29df7d3558efebb4584971cf69bc8359d
* | Removed simple headers from documentation examples3.10.0Michael Krotscheck2016-05-041-4/+4
| | | | | | | | | | | | | | | | | | These headers were removed from the defaults in https://review.openstack.org/#/c/293566/ - as they are already automatically managed in accordance to the CORS specification. This patch removes them from the example code. Change-Id: Ic2728d65c31dcd2f6a887ce8b112f544fd5730f3
* | Added PATCH method to default configMichael Krotscheck2016-05-041-1/+1
| | | | | | | | | | | | | | This patch adds the PATCH method (rfc5789) to the default permitted HTTP Methods in this middleware. Change-Id: Ia5ead0fe27a0e5e6a0eaec532bd267276b003794
* | Added set_defaults method to oslo_middleware.corsMichael Krotscheck2016-05-042-0/+123
| | | | | | | | | | | | | | | | This patch adds a set_defaults method to the CORS middleware. It allows overriding the configuration defaults, both for runtime execution and for config generation. Change-Id: Iffc20a09c455fa73239d8fe41491daa309858da9
* | Set default allow methods to those defined in RFC 2616Michael Krotscheck2016-05-041-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | This patch updates the default allow_methods config setting to all headers defined in RFC 2616 Section 9. We were cherry-picking headers here with no justification, and in order to be backwards compatible, this patch opts to be inclusive of all valid methods. Specific methods can still be overridden. https://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html Change-Id: I3e87e3bdb643706bcd4def1780d84ac8d45addb9
* | Removed default headers from CORS_OPTSMichael Krotscheck2016-05-041-4/+2
|/ | | | | | | | | | | This patch removes all 'simple' headers from the default configuration options, as these are already automatically handled by the middleware (see line 80). The list of simple headers is explicitly defined in the W3C specification, here: https://www.w3.org/TR/cors/#terminology Change-Id: I34aaec650aa57db083aedd07a5ebe47f6853aa4e
* Imported Translations from Zanata3.9.0OpenStack Proposal Bot2016-04-219-69/+36
| | | | | | | For more information about this automatic import see: https://wiki.openstack.org/wiki/Translations/Infrastructure Change-Id: I07c83c237051f30d1b1c8c5f5c244de344322087
* Updated from global requirementsOpenStack Proposal Bot2016-04-191-1/+1
| | | | Change-Id: I2efcf5a5a88256a6a291f2c5300738467c96faf4
* Remove direct dependency on babelJoshua Harlow2016-04-181-1/+0
| | | | | | The dependency on oslo.i18n already forces this requirement. Change-Id: Ifc708a432a8c89aa2a98f0d33c189cad4e25e931
* Updated from global requirementsOpenStack Proposal Bot2016-04-131-1/+1
| | | | Change-Id: I0cedeaf396b1cd0ebcc3b6f3dbbb1d0a67094a0d
* Updated from global requirementsOpenStack Proposal Bot2016-04-081-1/+1
| | | | Change-Id: If77cfc44d507a80d6e59fa6fbcce105f3c3b7001
* Updated from global requirementsOpenStack Proposal Bot2016-04-071-1/+1
| | | | Change-Id: I7277d49f58275739dac5f0db0bc448806683bb98
* Updated from global requirementsOpenStack Proposal Bot2016-04-021-1/+1
| | | | Change-Id: Id1a49843e35b23c4b1cca171a06ec031cd93a021
* Merge "Disable http_proxy_to_wsgi middleware by default"Jenkins2016-03-152-0/+47
|\
| * Disable http_proxy_to_wsgi middleware by defaultJuan Antonio Osorio Robles2016-03-072-0/+47
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Having this middleware as default is very convenient for deployments, since this enables the application to handle the appropriate headers correctly in order to deal with SSL, which is nice to have out of the box. Heat, for instance, has already taken this middleware as default. However, having this act on the headers by default may not be so desirable, as the application may not be in front of a proxy, and thus will have nothing that parses or strips the X-Forwarded-* headers. Which can lead to security problems. Thus, this patch proposes the enabling of this functionality through a configuration option. This will enable more projects to take this middleware into use by default, and the deployer would only need to change one configuration file; while leaving the paste configuration intact. Change-Id: I50a70d477613025d3e54e4ee773bbb1d6fcf2e68 SecurityImpact
* | cors: prevent WebOb setting a default Content-TypeJulien Danjou2016-03-142-15/+38
| | | | | | | | | | | | This related to https://github.com/Pylons/webob/issues/205 upstream. Change-Id: I18eb78d4206c20efc934fe8709881c2bd6972983
* | CORS Middleware now honors upstream Vary headerMichael Krotscheck2016-03-092-3/+37
| | | | | | | | | | | | | | | | | | | | If an upstream middleware or server returns a 'Vary' header, the CORS middleware will honor that header and append its own, rather than overwriting it. https://tools.ietf.org/html/rfc7231#section-7.1.4 Change-Id: I422cf1723dca7e1ecf0ce863b389f125d4f813bb
* | Merge "Revert "work around doc build error""Jenkins2016-03-074-19/+1
|\ \
| * | Revert "work around doc build error"Doug Hellmann2016-02-244-19/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This reverts commit bb8dbeb3a361586886b1bb060a3d98ffbf5f7e31. Making this work will depend on having a new release of oslo.config with the fix in the dependent patch. Depends-On: Ia024722d05ce8adaa57c58559cb42f2913653bb9 Change-Id: I33b37c74abf63bcaa95e668ec74c9c9849cc3773 Signed-off-by: Doug Hellmann <doug@doughellmann.com>
* | | Merge "CORS tests now use a transient configuration"Jenkins2016-03-051-113/+111
|\ \ \
| * | | CORS tests now use a transient configurationMichael Krotscheck2016-02-261-113/+111
| | |/ | |/| | | | | | | | | | | | | | | | As opposed to a global configuration. This should make testing a bit more consistent, and less likely to have sideffects. Change-Id: I034ccced9ec0121bf75c737ac19a498b4ebce1a9
* | | Updated config documentation for cors_middlewareMichael Krotscheck2016-02-261-1/+3
|/ / | | | | | | | | | | | | Incorporating user feedback from the ironic team. Clearly describing the data format of the origin will reduce deployment snags. Change-Id: I07d1edc1017aafa0cba1e23e155f55668379e656
* | Merge "Clean up removed hacking rule from [flake8] ignore lists"Jenkins2016-02-261-2/+1
|\ \
| * | Clean up removed hacking rule from [flake8] ignore listsChaozhe.Chen2016-02-241-2/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We bump hacking>=0.10.0, and hacking removed some rules, for the full list of rules please see [1]. So don't need them any more. Hacking related commits: Remove H904 in commit b1fe19ebebe47a36b905d709467f5e82521bbd96 Remove H803 in commit f01ce4fd822546cbd52a0aedc49184bddbfe1b10 Remove H305 in commit 8f1fcbdb9aa4fc61349e5e879153c722195b1233 [1]https://github.com/openstack-dev/hacking/blob/master/setup.cfg#L30 Change-Id: Iac1c3097453c205e17b4894ac28a821b2ccf08b5
* | | Updated from global requirementsOpenStack Proposal Bot2016-02-261-1/+1
| | | | | | | | | | | | Change-Id: Ica5b6d2af8b88a4a106b9d4f80467c609ebde3bc
* | | Updated from global requirementsOpenStack Proposal Bot2016-02-241-1/+1
| |/ |/| | | | | Change-Id: Icc244123f4a2899caeb468fd831e9f821407102c
* | work around doc build error3.7.0Doug Hellmann2016-02-244-1/+19
|/ | | | | | | | | | | This patch addresses a documentation build issue caused by the oslo.config sphinx integration. In order to unblock this repo, we can work around the issue here while fixing it in oslo.config, then revert this change. Change-Id: Ie4a29e8e8d44d00354ea0dd8420bac5b8812a717 Related-Bug: #1549106 Signed-off-by: Doug Hellmann <doug@doughellmann.com>
* Update translation setup3.6.0Andreas Jaeger2016-01-2911-7/+7
| | | | | | | | | | | | | | | Follow new infra setup for translations, see spec http://specs.openstack.org/openstack-infra/infra-specs/specs/translation_setup.html for full details. This basically renames oslo.middleware/locale/oslo.middleware.pot to oslo_middleware/locale/oslo_middleware.pot. For this we need to update setup.cfg. Update also domain name in i18n.py. Change-Id: I5d9c146d6bc9392930c93414c04dda89c16044c1
* Updated from global requirementsOpenStack Proposal Bot2016-01-261-1/+1
| | | | Change-Id: I34acf045bbd892a2ea1675180eb72c0b03122171