Merge ~freyes/ubuntu/+source/horizon:stable/xena into ~ubuntu-openstack-dev/ubuntu/+source/horizon:stable/xena

Proposed by Felipe Reyes
Status: Merged
Merge reported by: Corey Bryant
Merged at revision: 12902c813821485b5e5c755132c950117dcb4309
Proposed branch: ~freyes/ubuntu/+source/horizon:stable/xena
Merge into: ~ubuntu-openstack-dev/ubuntu/+source/horizon:stable/xena
Diff against target: 119 lines (+21/-9)
8 files modified
ChangeLog (+7/-0)
PKG-INFO (+1/-1)
debian/changelog (+6/-2)
dev/null (+0/-1)
horizon.egg-info/PKG-INFO (+1/-1)
horizon.egg-info/SOURCES.txt (+0/-1)
horizon/tables/actions.py (+4/-1)
tox.ini (+2/-2)
Reviewer Review Type Date Requested Status
Corey Bryant Pending
Ubuntu OpenStack uploaders Pending
Review via email: mp+416198@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
1diff --git a/ChangeLog b/ChangeLog
2index 004afbd..81dfab1 100644
3--- a/ChangeLog
4+++ b/ChangeLog
5@@ -1,6 +1,13 @@
6 CHANGES
7 =======
8
9+20.1.1
10+------
11+
12+* Fix maximum recursion depth error when generating documentation
13+* Update TOX\_CONSTRAINTS\_FILE for stable/xena
14+* Update .gitreview for stable/xena
15+
16 20.1.0
17 ------
18
19diff --git a/PKG-INFO b/PKG-INFO
20index 45a6e6b..da5f39e 100644
21--- a/PKG-INFO
22+++ b/PKG-INFO
23@@ -1,6 +1,6 @@
24 Metadata-Version: 1.1
25 Name: horizon
26-Version: 20.1.0
27+Version: 20.1.1
28 Summary: OpenStack Dashboard
29 Home-page: https://docs.openstack.org/horizon/latest/
30 Author: OpenStack
31diff --git a/debian/changelog b/debian/changelog
32index 97c8591..752f582 100644
33--- a/debian/changelog
34+++ b/debian/changelog
35@@ -1,8 +1,12 @@
36-horizon (4:20.1.0-0ubuntu1.1) UNRELEASED; urgency=medium
37+horizon (4:20.1.1-0ubuntu1) UNRELEASED; urgency=medium
38
39+ [ Corey Bryant ]
40 * d/gbp.conf: Create stable/xena branch.
41
42- -- Corey Bryant <corey.bryant@canonical.com> Fri, 15 Oct 2021 15:00:01 -0400
43+ [ Felipe Reyes ]
44+ * New stable point release for OpenStack Xena (LP: #1962582).
45+
46+ -- Felipe Reyes <felipe.reyes@canonical.com> Mon, 28 Feb 2022 22:29:03 +0000
47
48 horizon (4:20.1.0-0ubuntu1) impish; urgency=medium
49
50diff --git a/horizon.egg-info/PKG-INFO b/horizon.egg-info/PKG-INFO
51index 45a6e6b..da5f39e 100644
52--- a/horizon.egg-info/PKG-INFO
53+++ b/horizon.egg-info/PKG-INFO
54@@ -1,6 +1,6 @@
55 Metadata-Version: 1.1
56 Name: horizon
57-Version: 20.1.0
58+Version: 20.1.1
59 Summary: OpenStack Dashboard
60 Home-page: https://docs.openstack.org/horizon/latest/
61 Author: OpenStack
62diff --git a/horizon.egg-info/SOURCES.txt b/horizon.egg-info/SOURCES.txt
63index 8e95719..05d49f1 100644
64--- a/horizon.egg-info/SOURCES.txt
65+++ b/horizon.egg-info/SOURCES.txt
66@@ -181,7 +181,6 @@ horizon.egg-info/SOURCES.txt
67 horizon.egg-info/dependency_links.txt
68 horizon.egg-info/entry_points.txt
69 horizon.egg-info/not-zip-safe
70-horizon.egg-info/pbr.json
71 horizon.egg-info/requires.txt
72 horizon.egg-info/top_level.txt
73 horizon/browsers/__init__.py
74diff --git a/horizon.egg-info/pbr.json b/horizon.egg-info/pbr.json
75deleted file mode 100644
76index 21f35d1..0000000
77--- a/horizon.egg-info/pbr.json
78+++ /dev/null
79@@ -1 +0,0 @@
80-{"git_version": "a20c4f6f2", "is_release": true}
81\ No newline at end of file
82diff --git a/horizon/tables/actions.py b/horizon/tables/actions.py
83index 25c4523..ad8945a 100644
84--- a/horizon/tables/actions.py
85+++ b/horizon/tables/actions.py
86@@ -52,7 +52,10 @@ class BaseActionMetaClass(type):
87 # Options of action are set as class attributes, loading them.
88 options = {}
89 if attrs:
90- options = attrs
91+ # NOTE: It is required to create a new dict object
92+ # to avoid a recursive reference when no parent class
93+ # has 'base_options' attribute.
94+ options = dict(attrs)
95
96 # Iterate in reverse to preserve final order
97 for base in bases[::-1]:
98diff --git a/tox.ini b/tox.ini
99index 4e6e7dc..5d6ad5e 100644
100--- a/tox.ini
101+++ b/tox.ini
102@@ -25,7 +25,7 @@ whitelist_externals =
103 bash
104 find
105 deps =
106- -c{env:TOX_CONSTRAINTS_FILE:https://releases.openstack.org/constraints/upper/master}
107+ -c{env:TOX_CONSTRAINTS_FILE:https://releases.openstack.org/constraints/upper/xena}
108 -r{toxinidir}/test-requirements.txt
109 -r{toxinidir}/requirements.txt
110 # Unit test for a local hacking rule requires hacking.
111@@ -138,7 +138,7 @@ commands =
112 [testenv:docs]
113 # We need to install horizon dependecies to build module references
114 deps =
115- -c{env:TOX_CONSTRAINTS_FILE:https://releases.openstack.org/constraints/upper/master}
116+ -c{env:TOX_CONSTRAINTS_FILE:https://releases.openstack.org/constraints/upper/xena}
117 -r{toxinidir}/requirements.txt
118 -r{toxinidir}/doc/requirements.txt
119 commands =

Subscribers

People subscribed via source and target branches