Statistics
| Branch: | Tag: | Revision:

root / Changelog @ aca448cf

History | View | Annotate | Download (8.8 kB)

1
.. _Changelog:
2

    
3
Unified Changelog file for Synnefo versions >= 0.13
4
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
5

    
6
Since v0.13 most of the Synnefo components have been merged into a single
7
repository and have aligned versions.
8

    
9

    
10
.. _Changelog-0.13next:
11

    
12
v0.13next
13
=========
14

    
15
Released: UNRELEASED
16

    
17
Synnefo-wide
18
------------
19

    
20
* Create 'snf_django' Python package to hold common code for all Synnefo
21
  components.
22

    
23
Astakos
24
-------
25

    
26
* Redesign of the accounting system (quotaholder) and integration into
27
  Astakos.
28

    
29
  * Simplified the quotaholder model; removed tables Entity and Policy; now
30
    table Holding contains limit and usage for every holding.
31
  * Extended table Holding, so that we can keep track of quota for every
32
    valid combination of holder (e.g. user), resource, and source (e.g. the
33
    default system or some specific project).
34
  * Refactored code for issuing and resolving commissions for robustness;
35
    added a 'force' option to bypass the upper limit check when issuing a
36
    commission.
37
  * Simplified syncing to the quotaholder; removed fields from models
38
    Project and ProjectMembership, previously needed for syncing; removed
39
    state PROJECT_DEACTIVATED from ProjectMembership.
40
  * Removed settings ASTAKOS_QUOTAHOLDER_URL, ASTAKOS_QUOTAHOLDER_TOKEN,
41
    and ASTAKOS_QUOTAHOLDER_POOLSIZE.
42

    
43
* Service and resource specification and handling:
44

    
45
  * Specified a format for defining resources a service exposes. Migrated
46
    internal resource name by prefixing it with service name (e.g. 'vm'
47
    becomes 'cyclades.vm'); renamed registered service 'pithos+' to
48
    'pithos'.
49
  * Specified a procedure to register a service's resources in astakos and
50
    set their respective default base quota limit. Removed resource
51
    definitions from settings.
52
  * Moved service and resource presentation data out of the respective db
53
    models into a separate file of UI constants.
54

    
55
* Converted the limit on pending applications from a setting to a quotable
56
  resource. Converted the related user setting to a user-specific base quota
57
  limit. Deprecated model UserSetting; removed setting
58
  ASTAKOS_PENDING_APPLICATION_LIMIT.
59

    
60
* Changes in locking strategy:
61

    
62
  * Lock only project's chain for all project operations; lock user before
63
    syncing to quotaholder.
64
  * When locking multiple rows (e.g. users or holdings) include an ORDER BY
65
    clause in the query to impose ordering on locking.
66

    
67
* API-related changes:
68

    
69
  * Implemented API calls for quota, resources, and commissions.
70
  * Moved all API calls under '/account/v1.0'. Kept also previous locations
71
    for backwards compatibility.
72

    
73
* Changes in views:
74

    
75
  * Replaced custom transaction context with a simple decorator for managing
76
    transactions and a context 'ExceptionHandler', which logs and suppresses
77
    exceptions
78

    
79
* Added fine grain user auth provider's policies.
80

    
81
  * Administrator can override default auth provider policies to a specific 
82
    user or group of users.
83
  * Optionally a user can be assigned to a list of groups, based on the
84
    authentication method he choosed to signup.
85

    
86
* Removed explicit handling of SMTP errors on each email delivery. Exceptions 
87
  are now propagated to base django exception handler.
88

    
89
* Improvements in user activation flow
90

    
91
  * User moderation now takes place after the user has verified his email
92
    address.
93
  * User model enriched with additional user state fields
94
  * Split activation email from moderation process. Administrator is required 
95
    to moderate user explicitly using the `user-modify --accept` or
96
    `user-modify --reject` commands.
97
  * Improved logging throught out user activation procedures.
98

    
99
* Management commands:
100

    
101
  * Renamed command astakos-quota to quota; user-update to user-modify.
102
  * Removed user-set-initial-quota; integrated its functionality in
103
    user-modify and quota.
104
  * Added quota and project-related information in user-show command; added
105
    membership information in project-show.
106
  * New commands introduced
107

    
108
    * user-group-{add, list}
109
    * user-auth-policy-{add, list, remove, set, show}
110

    
111
Cyclades
112
--------
113

    
114
* Make 'type' attribute required for network create API request.
115
* Networks not created to all Ganeti backends upon creation, they are instead
116
  created to a backend only when a VM connects to the network.
117
* Add 'ASTAKOS_POOLSIZE' setting which tunes the size of the http connection
118
  pool to astakos.
119
* Remove 'CYCLADES_USER_CATALOG_URL' and 'CYCLADES_USER_FEEDBACK_URL' settings
120
* Remove CYCLADES_USE_QUOTAHOLDER, CYCLADES_QUOTAHOLDER_TOKEN,
121
  CYCLADES_QUOTAHOLDER_URL, CYCLADES_QUOTAHOLDER_POOLSIZE settings
122
* Rename 'cyclades-usage-verify' management command to
123
  'reconcile-resources-cyclades'. Also, remove 'cyclades-usage-reset' command,
124
  which is equivalent to 'reconcile-resources-cyclades --fix'.
125
* Rename 'cyclades-reconcile-commissions' management command to
126
  'reconcile-commissions-cyclades'.
127
* Remove obsolete 'MAX_VMS_PER_USER', 'MAX_NETWORKS_PER_USER',
128
  "VMS_USER_QUOTA" and "NETWORKS_USER_QUOTA" settings, since their usage
129
  is covered by Quotaholder.
130

    
131
Cyclades helpdesk
132
-----------------
133

    
134
* Additional start/stop vm action
135
* Display extend backend info in vm's view
136
* Fixed IP lookup
137

    
138
Pithos
139
------
140

    
141
* Remove PITHOS_AUTHENTICATION_USERS setting, which was used to override
142
  astakos users.
143
* Remove 'PITHOS_USER_CATALOG_URL', 'PITHOS_USER_FEEDBACK_URL' and
144
  'PITHOS_USER_LOGIN_URL' settings.
145
* Remove PITHOS_USE_QUOTAHOLDER, PITHOS_QUOTAHOLDER_URL,
146
  PITHOS_QUOTAHOLDER_TOKEN and PITHOS_ASTAKOSCLIENT_POOLSIZE
147

    
148
Tools
149
-----
150

    
151

    
152
.. _Changelog-0.13:
153

    
154
v0.13
155
=====
156

    
157
Released: Wed Apr 10 18:52:50 EEST 2013
158

    
159
In v0.13 the code was very heavily refactored for increased uniformity since
160
most of the Synnefo components have been merged into a single repository. Thus,
161
**just for this version** we will not document a complete Changelog (features,
162
fixes, improvements, issues, setting changes), but rather just copy from the
163
`NEWS` file with minor additions wherever needed.
164

    
165
Synnefo-wide
166
------------
167

    
168
* Support for pooling throughout Synnefo
169

    
170
  * Pooled Django DB connections, Pithos backend connections, HTTP
171
    connections using single `objpool` package
172

    
173
* Improved management commands
174

    
175
  * Unified codebase for output of tables in JSON, CSV
176

    
177
* Bring most of Synnefo code inside a single, unified repository
178

    
179
  * support automatic Python and Debian package builds for individual commits
180
  * with automatic version generation
181

    
182
* Overhauling of Synnefo settings: renames and refactoring, for increased
183
  uniformity (in progress)
184
* Deployment: Standardize on gunicorn, with gevent-based workers
185
  and use of Green threads throughout Synnefo
186
* Documentation: New scale-out guide, with distinct node roles,
187
  for mass Synnefo deployments
188

    
189
Astakos
190
-------
191

    
192
* Support multiple authentication methods
193

    
194
  * Classic (username/password), Shibboleth, LDAP/Active Directory,
195
    Google, Twitter, LinkedIn
196
  * Users can enable/disable auth methods, and switch between them
197

    
198
* Introduce a UUID as a global identifier for users, throughout Synnefo
199

    
200
  * The UUID remains constant as the user enables/disables login methods
201

    
202
* Allow users to modify their email address freely
203
* Per-user, per-resource accounting mechanism (quotaholder)
204
* Full quota support, with per-user, per-resource quotas, based on quotaholder
205
* Projects: Users can create and join Projects
206

    
207
  * Projects grant extra resources to their members
208

    
209
* UI Enhancements for quotas and projects
210

    
211
  * distinct Usage tab, showing usage of individual resources
212
  * Project management UI
213
  * New Overview page
214

    
215
Cyclades
216
--------
217

    
218
* Commission resources on quotaholder/Astakos
219
* Support mass creation of flavors
220
* Support for the ExtStorage disk template in Ganeti
221
* Query and report quotas in the UI
222
* Pass VM configuration parameters over a VM-side API (`vmapi`)
223

    
224
  * Do not pass sensitive data as Ganeti OS parameters
225
  * Keep sensitive data in memory caches (memcached) and
226
    never allow them to hit the disk
227

    
228
* Display additional backend information in helpdesk machines list
229
* Allow helpdesk users to search for an account using a known machine id
230
* Helpdesk actions are now logged using the synnefo's common login
231
  infrastructure
232

    
233
Pithos
234
------
235

    
236
* Support storage of blocks on a RADOS backend, for Archipelago
237

    
238
  * new settings:
239
    PITHOS_RADOS_STORAGE, PITHOS_RADOS_POOL_BLOCKS, PITHOS_RADOS_POOL_MAPS
240

    
241
* Rewritten support for public URLs, with admin-selectable length
242

    
243
  * new settings:
244
    PITHOS_PUBLIC_URL_SECURITY, PITHOS_PUBLIC_URL_ALPHABET
245

    
246
* Enable pithos backend to use external quotaholder component
247

    
248
  * new settings:
249
    PITHOS_USE_QUOTAHOLDER, PITHOS_QUOTAHOLDER_URL, PITHOS_QUOTAHOLDER_TOKEN,
250
    PITHOS_QUOTAHOLDER_POOLSIZE
251

    
252
* Moderated version debiting mechanism
253

    
254
  * new setting:
255
    PITHOS_BACKEND_FREE_VERSIONING
256

    
257
* Proxy Astakos user-visible services
258

    
259
  * new settings:
260
    PITHOS_PROXY_USER_SERVICES, PITHOS_USER_CATALOG_URL,
261
    PITHOS_USER_FEEDBACK_URL, PITHOS_USER_LOGIN_URL
262

    
263
Tools
264
-----
265

    
266
* Extend snf-burnin to include testing of Pithos functionality