summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Merge "Revert "Support `truncated` flag returned by identity service""2.3.1Jenkins2016-02-273-95/+8
|\
| * Revert "Support `truncated` flag returned by identity service"Monty Taylor2016-02-263-95/+8
| | | | | | | | | | | | | | | | | | | | | | | | This reverts commit 870be44c0ed5564101f9cf9d53e8085fb01680c8. This change breaks end users of the library. See: http://logs.openstack.org/50/285450/1/check/gate-shade-dsvm-functional-keystone2/d1093b5/console.html#_2016-02-26_20_49_32_928 For an example of a consumer of the library being broken. Change-Id: I1912003afb89579eb869767db7a411c451bc9806
* | Merge "Updated from global requirements"2.3.0Jenkins2016-02-261-1/+1
|\ \
| * | Updated from global requirementsOpenStack Proposal Bot2016-02-261-1/+1
| | | | | | | | | | | | Change-Id: Id1cf3690fab9802ca60db8a5fa9fa0e022e6927c
* | | Merge "Support `truncated` flag returned by identity service"Jenkins2016-02-263-8/+95
|\ \ \ | |/ / |/| / | |/
| * Support `truncated` flag returned by identity serviceBoris Bobrov2016-02-263-8/+95
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Create a custom list with flag `truncated` to support corresponding response from the identity service. This is wanted by Horizon, that wants to know that the list returned from keystone is not full and that more strict filters need to be applied. The previous attempt in commit c28d40814962b3a8ccb81e5e7d7f832c8f0a3c9a was reverted by d20b300589863bcf165945beb129ebcc3621a14f because it broke other code. This commit changes the way the flag is added and verifies that existing code will not break. Change-Id: Ia86cfd91110adae6d7ab86ff1f152a8f9be27837 Closes-Bug: 1520244
* | Merge "Support creation of domain specific roles"Jenkins2016-02-232-1/+33
|\ \
| * | Support creation of domain specific rolesHenry Nash2016-02-192-1/+33
| | | | | | | | | | | | | | | | | | | | | Add support for the domain_id attribute in the role entity. Partially Implements: blueprint domain-specific-roles Change-Id: I06af7647e15aa742609b3fe1b9b222fbeaeb5735
* | | Updated from global requirementsOpenStack Proposal Bot2016-02-201-1/+1
|/ / | | | | | | Change-Id: I9d945a1a80616f8a86c7ccac5b84d477f61b0c55
* | Merge "Implied Roles"Jenkins2016-02-194-0/+186
|\ \
| * | Implied RolesAdam Young2016-02-174-0/+186
| |/ | | | | | | | | | | | | | | | | | | | | While the entity for an inference rule should be thought of as a resource, the rules are essentially relationships between roles. The `implied_role` API is linked with the role API, and thus the client functions are part of v3/role.py. However, it does not map completely cleanly to the Crud baseclass, and requires some custom URL generation. Change-Id: I80a40e88b571fe9b0eca3af8b705ea79f28eb904
* | Add back a bandit tox jobEric Brown2016-02-181-0/+5
|/ | | | | | | | The bandit project uses an integration test to ensure it doesn't break other projects by introducing new changes. To run this integration, it is necessary to have a common tox target of 'bandit' Change-Id: If44008f6a48134a8af38e6794fb87ae09aac57b4
* Merge "add release notes for deprecated auth bits"2.2.0Jenkins2016-02-121-0/+12
|\
| * add release notes for deprecated auth bitsSteve Martinelli2016-02-111-0/+12
| | | | | | | | Change-Id: I95ff3940b35d09fd747c49baff69dc7a12451309
* | Merge "Handle exception on UnicodeDecodError in logging of request"Jenkins2016-02-122-2/+50
|\ \
| * | Handle exception on UnicodeDecodError in logging of requestTrevor McKay2016-02-102-2/+50
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | If the logging of an HTTP request causes a UnicodeDecodeError, modify the log entry using oslo_utils.encodeutils.safe_decode with errors='replace' and try again Co-Authored-By: Nikita Konovalov <nkonovalov@mirantis.com> Change-Id: Ic365c654ebca4045208c6c30e232665145db7b4c Closes-Bug: #1453953
* | | Merge "Updated from global requirements"Jenkins2016-02-121-1/+1
|\ \ \ | |_|/ |/| |
| * | Updated from global requirementsOpenStack Proposal Bot2016-02-111-1/+1
| | | | | | | | | | | | Change-Id: I469d93e30110dd90633a2ca78091e79bb573657c
* | | Merge "Deprecate adapter"Jenkins2016-02-122-1/+8
|\ \ \
| * | | Deprecate adapterJamie Lennox2016-02-032-1/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This involves switching keystoneclient to use the adapter on keystoneauth. Change-Id: I02780b0c00e3865f083b4bca98bff81127ed2277 Implements: bp deprecate-to-ksa
* | | | Merge "Deprecate auth plugins from keystoneclient"Jenkins2016-02-1220-39/+117
|\ \ \ \ | |/ / /
| * | | Deprecate auth plugins from keystoneclientJamie Lennox2016-02-0320-39/+117
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Deprecate auth plugins in favour of those from keystoneauth. Change-Id: I8963ded9b68569717d7a6e30623ee78301b59a4a Implements: bp deprecate-to-ksa
* | | | Merge "Deprecate Session"Jenkins2016-02-1216-21/+85
|\ \ \ \ | |/ / / | | / / | |/ / |/| |
| * | Deprecate SessionJamie Lennox2016-02-0316-21/+85
| | | | | | | | | | | | | | | | | | | | | | | | Deprecate the keystoneclient Session object in favour of keystoneauth's Session. Change-Id: I26e000d626a466f63d10d2a961adc698f8de0636 Implements: bp deprecate-to-ksa
* | | Merge "Make pep8 *the* linting interface"Jenkins2016-02-111-9/+2
|\ \ \
| * | | Make pep8 *the* linting interfaceAndreas Jaeger2016-02-101-9/+2
| | |/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | According to the PTI (=Python Test Interface, http://governance.openstack.org/reference/cti/python_cti.html), pep8 is the interface for codestyle checks. Move all tests from linters to pep8. Change-Id: If50b7471112151245d383b4a1d0056ce9041adf2 Depends-On: I9346e4bf8c3a50de088c6a157f0d871c0a9333a1
* | | Updated from global requirementsOpenStack Proposal Bot2016-02-101-1/+1
|/ / | | | | | | Change-Id: Ia1f8737451fff215dca109fc3fa49e643dc8e2e0
* | Updated from global requirementsOpenStack Proposal Bot2016-02-082-3/+3
| | | | | | | | Change-Id: I66be09102edcd67f022019744920485d03952e9a
* | Merge "Remove python 2.5 workaround"Jenkins2016-02-041-6/+0
|\ \
| * | Remove python 2.5 workaroundBrant Knudson2016-01-311-6/+0
| | | | | | | | | | | | | | | | | | | | | keystoneclient doesn't support python 2.5 so remove this workaround code. Messing with global variables is a mistake anyways. Change-Id: I1567508cb1931b8c5365cfe6584e5a732c459db0
* | | Merge "Update keyring requirements"Jenkins2016-02-041-2/+3
|\ \ \ | |_|/ |/| |
| * | Update keyring requirementsBrant Knudson2016-01-311-2/+3
| |/ | | | | | | | | | | | | As of commit 05c2bcef the minimum keyring version is 5.5.1, so update the version that httpclient will use. Change-Id: I877b9d40b8bc4f89754d64d29d82a9e3a3f2dd04
* | Merge "Bandit profile updates"Jenkins2016-02-022-17/+2
|\ \
| * | Bandit profile updatesBrant Knudson2016-01-272-17/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We'd like to use the same "gate" profile for all OpenStack gate jobs, so the "keystone_conservative" profile which we were running as part of the gate is change to "gate. The other profiles that aren't used as part of the gate are removed. Change-Id: I931dc957b4659806027d45dfec5e61e9c7973564
* | | Update translation setupAndreas Jaeger2016-01-282-25/+5
| |/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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 python-keystoneclient/locale/python-keystoneclient.pot to keystoneclient/locale/keystoneclient.pot. For this we need to update setup.cfg. The domain name is already correct in keystoneclient/_i18n.py. The project has no translations currently, let's remove the outdated pot file, the updated scripts work without them. So, we can just delete the file and once there are translations, an updated pot file together with translations can be imported automatically. Change-Id: Ie5a0c3e8fcdb485edf05f2188fce64a9fce96b5f
* | Merge "Missing defaults in the create() method in the v2 ServiceManager"Jenkins2016-01-272-2/+33
|\ \ | |/ |/|
| * Missing defaults in the create() method in the v2 ServiceManagerJude Job2016-01-272-2/+33
| | | | | | | | | | | | | | | | This patch include a new method for testing, without description value. Change-Id: Icd04e4479a341e7691fc562b3e09d5aa41a354e7 Closes-Bug: #1318438
* | Merge "Remove Babel from requirements.txt"Jenkins2016-01-271-1/+0
|\ \
| * | Remove Babel from requirements.txtBrant Knudson2016-01-251-1/+0
| |/ | | | | | | | | | | keystoneclient doesn't use Babel directly. Change-Id: Icc34344afe27330a4a896e14e70fe0e31b4e4bc6
* | Merge "Remove bandit tox environment"Jenkins2016-01-271-4/+0
|\ \ | |/ |/|
| * Remove bandit tox environmentAndreas Jaeger2016-01-181-4/+0
| | | | | | | | | | | | | | bandit is now part of linters environment, remove it from tox.ini. Depends-On: I67ebec070cd0804d310534712a3a3f382df7e48f Change-Id: Ie59ee56f15a857926eef4a7b466637686e116b07
* | Merge "Remove argparse from requirements"Jenkins2016-01-251-1/+0
|\ \
| * | Remove argparse from requirementsAndreas Jaeger2016-01-231-1/+0
| | | | | | | | | | | | | | | | | | | | | argparse was external in python 2.6 but not anymore, remove it from requirements. This project is not supporting 2.6 anymore. Change-Id: Ib7e74912b36c1b5ccb514e31fac35efeff57378d
* | | Merge "Replace TestResponse with requests_mock"Jenkins2016-01-258-45/+16
|\ \ \
| * | | Replace TestResponse with requests_mockJamie Lennox2016-01-258-45/+16
| |/ / | | | | | | | | | | | | | | | | | | | | | The TestResponse object doesn't do the right thing with regards to content vs text. Just reuse the one from requests_mock rather that try and fix it. Change-Id: Ia8bcae126babb0e616329928c57f875a50a957d6
* | | use positional library instead of utilsSteve Martinelli2016-01-2531-97/+117
| | | | | | | | | | | | | | | | | | swap instances of utils.positional with the positional library. Change-Id: Id8a9961e68d287a802f25512fc970829e9feb5c2
* | | Use positional library instead of local codeMorgan Fainberg2016-01-233-230/+2
|/ / | | | | | | | | | | | | | | Use the positional library instead of the local copy of the code. This will prevent duplicating code across repositories without needing to chase down weird dependency graphs. Change-Id: I7fef334666e93e358870173d29018e5d47312d2b
* | Merge "Adds an option to include names in role assignment lists"Jenkins2016-01-233-1/+23
|\ \
| * | Adds an option to include names in role assignment listsTom Cocozzello2016-01-233-1/+23
| |/ | | | | | | | | | | | | | | | | | | Allow the client to take advantage of the include_names with list role assignments. Change-Id: I4aa77c08660a0cbd021502155938a46121ca76ef Depends-On: I0a1cc986b8a35aeafe567e5e7fee6eeb848ae113 Closes-Bug: #1479569 Implements: blueprint list-assignment-with-names
* | Updated from global requirementsOpenStack Proposal Bot2016-01-232-25/+25
| | | | | | | | Change-Id: I7f771e16773d0ca4015107b45e083139452ccf3c