Statistics
| Branch: | Tag: | Revision:

root / Changelog @ 30fe9049

History | View | Annotate | Download (13.2 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
.. _Changelog-0.14.5:
10

    
11
v0.14.5
12
=======
13

    
14
Released: Wed Aug  7 11:19:49 EEST 2013
15

    
16
Pithos
17
------
18

    
19
* Fix security issue with handling Pithos versions.
20

    
21
.. _Changelog-0.14.4:
22

    
23
v0.14.4
24
=======
25

    
26
Released: Mon Jul 29 12:24:22 EEST 2013
27

    
28
Pithos
29
------
30

    
31
* Fix bug in reconcile resources management command.
32

    
33

    
34
.. _Changelog-0.14.3:
35

    
36
v0.14.3
37
=======
38

    
39
Released: Thu Jul 25 12:22:47 EEST 2013
40

    
41
Synnefo-wide
42
------------
43

    
44
* Use the SYNNEFO_TRACE environmental variable to control whether the greenlet
45
  tracing code will get loaded or not.
46
* Split the HIDDEN_COOKIES setting in HIDDEN_HEADERS and HIDDEN_COOKIES, and
47
  add the MAIL_MAX_LEN setting, to limit the mail size for unhandled
48
  exceptions.
49

    
50

    
51
.. _Changelog-0.14.2:
52

    
53
v0.14.2
54
=======
55

    
56
Released: Fri Jul 12 13:13:32 EEST 2013
57

    
58
Cyclades
59
--------
60

    
61
* Add new setting PITHOS_BACKEND_POOL_SIZE, which configures the size
62
  of the pool of Pithos backends that are used by plankton.
63

    
64
.. _Changelog-0.14:
65

    
66
v0.14
67
=====
68

    
69
Released: Tue Jun 25 14:01:19 EEST 2013
70

    
71
Synnefo-wide
72
------------
73

    
74
* Create 'snf_django' Python package to hold common code for all Synnefo
75
  components.
76

    
77
* Create a JSON-exportable definition document for each Synnefo Components
78
  (Astakos, Cyclades, Pithos, etc.) that consolidates APIs (services),
79
  resources, and other standardized properties (e.g. default URL prefixes).
80

    
81
* Standardize URLs for Synnefo Components, impose structure and naming
82
  conventions to related settings. Make each component deployable under
83
  a user-configurable <COMPONENT>_BASE_URL. Each API (compute, image, etc.)
84
  is deployable under a developer-configurable prefix beneath BASE_URL.
85

    
86
* Deprecate CLOUDBAR_ACTIVE_SERVICE setting from all apps. 
87

    
88
* Common synnefo 404/500 templates (located in snf-webproject)
89

    
90
Astakos
91
-------
92

    
93
* Redesign of the accounting system (quotaholder) and integration into
94
  Astakos.
95

    
96
  * Simplified the quotaholder model; removed tables Entity and Policy; now
97
    table Holding contains limit and usage for every holding.
98
  * Extended table Holding, so that we can keep track of quota for every
99
    valid combination of holder (e.g. user), resource, and source (e.g. the
100
    default system or some specific project).
101
  * Refactored code for issuing and resolving commissions for robustness;
102
    added a 'force' option to bypass the upper limit check when issuing a
103
    commission.
104
  * Simplified syncing to the quotaholder; removed fields from models
105
    Project and ProjectMembership, previously needed for syncing; removed
106
    state PROJECT_DEACTIVATED from ProjectMembership.
107
  * Removed settings ASTAKOS_QUOTAHOLDER_URL, ASTAKOS_QUOTAHOLDER_TOKEN,
108
    and ASTAKOS_QUOTAHOLDER_POOLSIZE.
109

    
110
* API-related changes:
111

    
112
  * Implemented API calls for quota, resources, and commissions.
113
  * Moved all API calls under '/account/v1.0'.
114
  * Implemented the keystone API call POST /tokens under '/identity/v2.0'.
115

    
116
* Service and resource specification and handling:
117

    
118
  * Specified a format for defining services along with the API endpoints
119
    and the resources they expose. Migrated internal resource name by
120
    prefixing it with service name (e.g. 'vm' becomes 'cyclades.vm');
121
    renamed registered service 'pithos+' to 'pithos'.
122
  * Specified a procedure to register a Synnefo component, its services and
123
    their resources in astakos and set the resources' default base quota
124
    limit. Removed resource definitions from settings.
125
  * Moved service and resource presentation data out of the respective db
126
    models into a separate file of UI constants.
127

    
128
* Converted the limit on pending applications from a setting to a quotable
129
  resource. Converted the related user setting to a user-specific base quota
130
  limit. Deprecated model UserSetting; removed setting
131
  ASTAKOS_PENDING_APPLICATION_LIMIT.
132

    
133
* Changes in locking strategy:
134

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

    
140
* Changes in views:
141

    
142
  * Replaced custom transaction context with a simple decorator for managing
143
    transactions and a context 'ExceptionHandler', which logs and suppresses
144
    exceptions
145

    
146
* Added fine grain user auth provider's policies.
147

    
148
  * Administrator can override default auth provider policies to a specific 
149
    user or group of users.
150
  * Optionally a user can be assigned to a list of groups, based on the
151
    authentication method he choosed to signup.
152

    
153
* Removed explicit handling of SMTP errors on each email delivery. Exceptions 
154
  are now propagated to base django exception handler.
155

    
156
* Email used in html/email tempaltes which prompt user to contact for service 
157
  support prompts is now defined in ``CONTACT_EMAIL`` setting introduced in 
158
  snf-common settings.
159

    
160
* Improvements in user activation flow
161

    
162
  * User moderation now takes place after the user has verified his email
163
    address.
164
  * User model enriched with additional user state fields
165
  * Split activation email from moderation process. Administrator is required 
166
    to moderate user explicitly using the `user-modify --accept` or
167
    `user-modify --reject` commands.
168
  * Improved logging throught out user activation procedures.
169

    
170
* Remove deprecated AstakosUser model fields: `provider`,
171
  `third_party_identifier`
172

    
173
* Allow override of authentication provider messages using the following 
174
  format in setting names: ``ASTAKOS_<PROVIDER_MODULE>_<MSGID>_MSG``
175

    
176
* Cloudbar automatically tries to identify the active service based on window 
177
  location.
178

    
179
* Removing authentication provider view is now CSRF protected.
180

    
181
* New `API access` view, containing useful information to users on how to 
182
  access available Synnefo services API's.
183

    
184
* Remove of ASTAKOS_*_EMAIL_SUBJECT settings. All email subjects are now 
185
  defined in astakos.im.messages module. Overriding default values can be 
186
  achieved using custom gettext files or using astakos messages settings::
187
	
188
	#change of greeting email subject
189
  	ASTAKOS_GREETING_EMAIL_SUBJECT_MESSAGE = 'Welcome to my cloud'
190

    
191
* Remove ``ASTAKOS_ACTIVATION_REDIRECT_URL`` and ``ASTAKOS_LOGIN_SUCCESS_URL`` 
192
  from astakos .conf file. Settings are dynamically computed based on 
193
  ``ASTAKOS_BASE_URL``.
194

    
195
* Management commands:
196

    
197
  * Introduced new commands:
198
     * authpolicy-{add, list, remove, set, show}
199
     * group-{add, list}
200
     * component-{add, list, modify, remove}
201
     * reconcile-resources-astakos
202
     * resource-{export-astakos, import, modify}
203
     * service-{export-astakos, import, show}
204
  * Renamed commands:
205
     * astakos-quota to quota
206
     * user-update to user-modify
207
     * full-cleanup to cleanup-full
208
  * Removed commands:
209
     * astakos-init
210
     * invitation-{details, list}
211
     * project-sync
212
     * resource-{add, remove}
213
     * service-{add, remove, token-renew, update}
214
     * user-invite
215
     * user-set-initial-quota (integrated its functionality in user-modify and quota)
216
  * Added quota and project-related information in user-show command; added
217
    membership information in project-show.
218

    
219
Cyclades
220
--------
221

    
222
* Make 'type' attribute required for network create API request.
223
* Networks not created to all Ganeti backends upon creation, they are instead
224
  created to a backend only when a VM connects to the network.
225
* Add 'CYCLADES_ASTAKOSCLIENT_POOLSIZE' setting which tunes the size of the
226
  http connection pool to astakos.
227
* Remove 'CYCLADES_USER_CATALOG_URL' and 'CYCLADES_USER_FEEDBACK_URL' settings
228
* Remove CYCLADES_USE_QUOTAHOLDER, CYCLADES_QUOTAHOLDER_TOKEN,
229
  CYCLADES_QUOTAHOLDER_URL, CYCLADES_QUOTAHOLDER_POOLSIZE settings
230
* Rename 'cyclades-usage-verify' management command to
231
  'reconcile-resources-cyclades'. Also, remove 'cyclades-usage-reset' command,
232
  which is equivalent to 'reconcile-resources-cyclades --fix'.
233
* Rename 'cyclades-reconcile-commissions' management command to
234
  'reconcile-commissions-cyclades'.
235
* Remove obsolete 'MAX_VMS_PER_USER', 'MAX_NETWORKS_PER_USER',
236
  "VMS_USER_QUOTA" and "NETWORKS_USER_QUOTA" settings, since their usage
237
  is covered by Quotaholder.
238
* Remove obsolete setting 'API_ROOT_URL', since it is being covered by
239
  the use of CYCLADES_BASE_URL* Remove obsolete setting 'API_ROOT_URL', since
240
  it is being covered by 'CYCLADES_BASE_URL'.
241
* Remove obsolete settings GANETI_DISK_TEMPLATES and
242
  DEFAULT_GANETI_DISK_TEMPLATE
243

    
244
Cyclades helpdesk
245
-----------------
246

    
247
* Additional start/stop vm action
248
* Display extend backend info in vm's view
249
* Fixed IP lookup
250

    
251
Pithos
252
------
253

    
254
* Remove PITHOS_AUTHENTICATION_USERS setting, which was used to override
255
  astakos users.
256
* Remove 'PITHOS_USER_CATALOG_URL', 'PITHOS_USER_FEEDBACK_URL' and
257
  'PITHOS_USER_LOGIN_URL' settings.
258
* Remove PITHOS_USE_QUOTAHOLDER, PITHOS_QUOTAHOLDER_URL,
259
  PITHOS_QUOTAHOLDER_TOKEN and PITHOS_ASTAKOSCLIENT_POOLSIZE
260

    
261
Tools
262
-----
263

    
264

    
265
.. _Changelog-0.13:
266

    
267
v0.13
268
=====
269

    
270
Released: Wed Apr 10 18:52:50 EEST 2013
271

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

    
278
Synnefo-wide
279
------------
280

    
281
* Support for pooling throughout Synnefo
282

    
283
  * Pooled Django DB connections, Pithos backend connections, HTTP
284
    connections using single `objpool` package
285

    
286
* Improved management commands
287

    
288
  * Unified codebase for output of tables in JSON, CSV
289

    
290
* Bring most of Synnefo code inside a single, unified repository
291

    
292
  * support automatic Python and Debian package builds for individual commits
293
  * with automatic version generation
294

    
295
* Overhauling of Synnefo settings: renames and refactoring, for increased
296
  uniformity (in progress)
297
* Deployment: Standardize on gunicorn, with gevent-based workers
298
  and use of Green threads throughout Synnefo
299
* Documentation: New scale-out guide, with distinct node roles,
300
  for mass Synnefo deployments
301

    
302
Astakos
303
-------
304

    
305
* Support multiple authentication methods
306

    
307
  * Classic (username/password), Shibboleth, LDAP/Active Directory,
308
    Google, Twitter, LinkedIn
309
  * Users can enable/disable auth methods, and switch between them
310

    
311
* Introduce a UUID as a global identifier for users, throughout Synnefo
312

    
313
  * The UUID remains constant as the user enables/disables login methods
314

    
315
* Allow users to modify their email address freely
316
* Per-user, per-resource accounting mechanism (quotaholder)
317
* Full quota support, with per-user, per-resource quotas, based on quotaholder
318
* Projects: Users can create and join Projects
319

    
320
  * Projects grant extra resources to their members
321

    
322
* UI Enhancements for quotas and projects
323

    
324
  * distinct Usage tab, showing usage of individual resources
325
  * Project management UI
326
  * New Overview page
327

    
328
* refactored/improved /login endpoint used by desktop/mobile clients.
329
  * endpoint url is now exposed by `weblogin` service
330
  * clients should use unauthenticated identity/tokens api to resolve the 
331
    endpoint url
332
  * view only allows redirects to `pithos://` scheme urls
333
  * removed uuid from redirect parameters. Client should use authenticated 
334
    request to identity/tokens to retrieve user uuid.
335

    
336

    
337
Cyclades
338
--------
339

    
340
* Commission resources on quotaholder/Astakos
341
* Support mass creation of flavors
342
* Support for the ExtStorage disk template in Ganeti
343
* Query and report quotas in the UI
344
* Pass VM configuration parameters over a VM-side API (`vmapi`)
345

    
346
  * Do not pass sensitive data as Ganeti OS parameters
347
  * Keep sensitive data in memory caches (memcached) and
348
    never allow them to hit the disk
349

    
350
* Display additional backend information in helpdesk machines list
351
* Allow helpdesk users to search for an account using a known machine id
352
* Helpdesk actions are now logged using the synnefo's common login
353
  infrastructure
354

    
355
UI
356
^^
357
* Removed feedback endpoint. Feedback requests delegate to astakos feedback
358
  service. ``FEEDBACK_CONTACTS``, ``FEEDBACK_EMAIL_FROM`` settings removed, 
359
  and no longer used.
360
* ``UI_LOGIN_URL``, ``UI_GLANCE_URL``, ``COMPUTE_URL`` settings no longer 
361
  required to be set and are dynamically computed based on ``ASTAKOS_BASE_URL``
362
  and ``CYCLADES_BASE_URL`` settings.
363
* File group is no longer included in ssh keys personality metadata sent in 
364
  create vm calls.
365
  
366

    
367
Pithos
368
------
369

    
370
* Support storage of blocks on a RADOS backend, for Archipelago
371

    
372
  * new settings:
373
    PITHOS_RADOS_STORAGE, PITHOS_RADOS_POOL_BLOCKS, PITHOS_RADOS_POOL_MAPS
374

    
375
* X-Object-Public now contains full url (domain + proper component prefix + 
376
  file path)
377

    
378
* Rewritten support for public URLs, with admin-selectable length
379

    
380
  * new settings:
381
    PITHOS_PUBLIC_URL_SECURITY, PITHOS_PUBLIC_URL_ALPHABET
382

    
383
* Enable pithos backend to use external quotaholder component
384

    
385
  * new settings:
386
    PITHOS_USE_QUOTAHOLDER, PITHOS_QUOTAHOLDER_URL, PITHOS_QUOTAHOLDER_TOKEN,
387
    PITHOS_QUOTAHOLDER_POOLSIZE
388

    
389
* Moderated version debiting mechanism
390

    
391
  * new setting:
392
    PITHOS_BACKEND_FREE_VERSIONING
393

    
394
* Proxy Astakos user-visible services
395

    
396
  * new settings:
397
    PITHOS_PROXY_USER_SERVICES, PITHOS_USER_CATALOG_URL,
398
    PITHOS_USER_FEEDBACK_URL, PITHOS_USER_LOGIN_URL
399

    
400
Tools
401
-----
402

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