Merge lp:~corey.bryant/keystone/2014.1.3 into lp:~ubuntu-server-dev/keystone/icehouse

Proposed by Corey Bryant
Status: Merged
Merge reported by: Chuck Short
Merged at revision: not available
Proposed branch: lp:~corey.bryant/keystone/2014.1.3
Merge into: lp:~ubuntu-server-dev/keystone/icehouse
Diff against target: 107 lines (+38/-18)
3 files modified
debian/changelog (+25/-0)
debian/patches/add-version-info.patch (+12/-15)
debian/patches/fix-requirements.patch (+1/-3)
To merge this branch: bzr merge lp:~corey.bryant/keystone/2014.1.3
Reviewer Review Type Date Requested Status
Ubuntu Server Developers Pending
Review via email: mp+237097@code.launchpad.net
To post a comment you must log in.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'debian/changelog'
2--- debian/changelog 2014-08-11 15:04:18 +0000
3+++ debian/changelog 2014-10-03 16:14:37 +0000
4@@ -1,3 +1,28 @@
5+keystone (1:2014.1.3-0ubuntu1) UNRELEASED; urgency=medium
6+
7+ * Resynchronize with stable/icehouse (8485dbc) (LP: #1377136):
8+ - [89ebfe9] Fix tests comparing tokens
9+ - [6bf25d0] Fix typo on cache backend module
10+ - [1c8f9f9] Set LDAP certificate trust options for LDAPS and TLS
11+ - [878f12e] Adds a whitelist for endpoint catalog substitution
12+ - [a391713] Remove extraenous instantiations of managers
13+ - [25cbcf5] Avoid conversion of binary LDAP values
14+ - [b3765d7] Catalog driver generates v3 catalog from v2 catalog
15+ - [824f66d] Ensure token is a string
16+ - [30f9247] Add workaround to support tox 1.7.2
17+ - [80502d3] Fixes catalog URL formatting to never return None
18+ - [f3198d8] Updates keystone.catalog.core.format_url tests
19+ - [c959cbd] Ignore broken endpoints in get_catalog
20+ - [126440d] Ignore broken endpoints in get_v3_catalog
21+ - [c48ec38] No longer allow listing users by email
22+ - [18d4843] Fixes an issue with the XMLEquals matcher
23+ - [c6cd627] Implicitly ignore attributes that are mapped to None in LDAP
24+ - [8485dbc] Remove `with_lockmode` use from Trust SQL backend.
25+ * d/p/fix-requirements.patch: Rebased.
26+ * d/p/add-version-info.patch: Rebased.
27+
28+ -- Corey Bryant <corey.bryant@canonical.com> Fri, 03 Oct 2014 09:12:05 -0400
29+
30 keystone (1:2014.1.2.1-0ubuntu1) trusty; urgency=medium
31
32 [ Corey Bryant ]
33
34=== modified file 'debian/patches/add-version-info.patch'
35--- debian/patches/add-version-info.patch 2014-03-28 11:38:43 +0000
36+++ debian/patches/add-version-info.patch 2014-10-03 16:14:37 +0000
37@@ -1,18 +1,16 @@
38 Description: Add version info for Ubuntu.
39 Author: Yolanda Robla <yolanda.robla@canonical.com>
40 Forwarded: Not-needed
41-diff -Naurp keystone-2014.1.rc1.orig/etc/keystone.conf.sample keystone-2014.1.rc1/etc/keystone.conf.sample
42---- keystone-2014.1.rc1.orig/etc/keystone.conf.sample 2014-03-27 04:48:32.000000000 -0400
43-+++ keystone-2014.1.rc1/etc/keystone.conf.sample 2014-03-27 16:08:57.519481000 -0400
44-@@ -1334,3 +1334,5 @@
45+--- a/etc/keystone.conf.sample
46++++ b/etc/keystone.conf.sample
47+@@ -1335,3 +1335,5 @@
48 #driver=keystone.trust.backends.sql.Trust
49
50
51 +[extra_headers]
52 +Distribution = Ubuntu
53-diff -Naurp keystone-2014.1.rc1.orig/keystone/common/config.py keystone-2014.1.rc1/keystone/common/config.py
54---- keystone-2014.1.rc1.orig/keystone/common/config.py 2014-03-27 04:48:32.000000000 -0400
55-+++ keystone-2014.1.rc1/keystone/common/config.py 2014-03-27 16:11:26.199481000 -0400
56+--- a/keystone/common/config.py
57++++ b/keystone/common/config.py
58 @@ -12,6 +12,8 @@
59 # License for the specific language governing permissions and limitations
60 # under the License.
61@@ -22,19 +20,18 @@
62 from oslo.config import cfg
63
64
65-@@ -641,6 +643,8 @@ FILE_OPTIONS = {
66- cfg.IntOpt('list_limit', default=None,
67- help='Maximum number of entities that will be returned '
68- 'in a catalog collection.')],
69+@@ -651,6 +653,8 @@
70+ 'this list. It will give users with permission to '
71+ 'create endpoints the ability to see those values '
72+ 'in your configuration file.')],
73 + 'extra_headers': [
74 + cfg.StrOpt('Distribution', default=platform.dist()[0])],
75 'kvs': [
76 cfg.ListOpt('backends', default=[],
77 help='Extra dogpile.cache backend modules to register '
78-diff -Naurp keystone-2014.1.rc1.orig/keystone/common/wsgi.py keystone-2014.1.rc1/keystone/common/wsgi.py
79---- keystone-2014.1.rc1.orig/keystone/common/wsgi.py 2014-03-27 04:48:32.000000000 -0400
80-+++ keystone-2014.1.rc1/keystone/common/wsgi.py 2014-03-27 16:12:07.751481000 -0400
81-@@ -582,6 +582,11 @@ def render_response(body=None, status=No
82+--- a/keystone/common/wsgi.py
83++++ b/keystone/common/wsgi.py
84+@@ -588,6 +588,11 @@
85 headers = headers or []
86 headers.append(('Vary', 'X-Auth-Token'))
87
88
89=== modified file 'debian/patches/fix-requirements.patch'
90--- debian/patches/fix-requirements.patch 2014-08-11 12:37:33 +0000
91+++ debian/patches/fix-requirements.patch 2014-10-03 16:14:37 +0000
92@@ -1,8 +1,6 @@
93 Description: Set min version of six.
94 Author: Corey Bryant <corey.bryant@canonical.com>
95 Forwarded: Not needed.
96-Index: keystone/requirements.txt
97-===================================================================
98 --- a/requirements.txt
99 +++ b/requirements.txt
100 @@ -7,7 +7,7 @@
101@@ -12,5 +10,5 @@
102 -six>=1.6.0
103 +six>=1.5.2
104 SQLAlchemy>=0.7.8,!=0.9.5,<=0.9.99
105- sqlalchemy-migrate>=0.8.2,!=0.8.4
106+ sqlalchemy-migrate>=0.8.2,!=0.8.4,!=0.9.2
107 passlib

Subscribers

People subscribed via source and target branches