Statistics
| Branch: | Tag: | Revision:

root / Changelog @ 833880fd

History | View | Annotate | Download (14.7 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.8:
10

    
11
v0.14.8
12
=======
13

    
14
Released: UNRELEASED
15

    
16
Synnefo-wide
17
------------
18

    
19
* This is the first release to support Debian Wheezy along with Squeeze. You
20
  can mix and match nodes freely.
21
* Update Django dependency to Django>=1.4,<1.5. Django 1.4.5 is available for
22
  Squeeze through squeeze-backports.
23

    
24

    
25
Cyclades
26
--------
27

    
28
* On VM creation, pass the hashmap of the image (pithosmap://) instead of the
29
  image URL (pithos://). Access to the Pithos DB by Ganeti nodes is no longer
30
  required.
31
* Workaround race between server creation and server deletion. This will be
32
  fixed properly by updating Ganeti to support the 'depends' attribute for
33
  OP_INSTANCE_REMOVE.
34

    
35
Astakos
36
-------
37

    
38
* For Shibboleth logins, store all attributes along with the user in the DB.
39

    
40
.. _Changelog-0.14.7:
41

    
42
v0.14.7
43
=======
44

    
45
Released: Wed Sep 18 17:50:12 EEST 2013
46

    
47
Cyclades
48
--------
49

    
50
* Fix bug in helpdesk view
51

    
52

    
53
.. _Changelog-0.14.6:
54

    
55
v0.14.6
56
=======
57

    
58
Released: Wed Sep 18 16:18:58 EEST 2013
59

    
60
Pithos
61
------
62

    
63
* Substitute the PITHOS_BACKEND_QUOTA setting with two
64
  distinct settings: PITHOS_BACKEND_ACCOUNT_QUOTA &
65
  PITHOS_BACKEND_CONTAINER_QUOTA
66
* Set PITHOS_BACKEND_CONTAINER_QUOTA default value to 0 (unlimited)
67
* Fix bug that resulted in DB deadlocks.
68

    
69
Cyclades
70
--------
71

    
72
* Fix bug in snf-dispatcher that resulted in servers to be deleted from the
73
  DB even if the corresponding Ganeti job failed.
74

    
75
Branding
76
--------
77

    
78
* Add new BRANDING_FOOTER_EXTRA_MESSAGE setting.
79

    
80
.. _Changelog-0.14.5:
81

    
82
v0.14.5
83
=======
84

    
85
Released: Wed Aug  7 11:19:49 EEST 2013
86

    
87
Pithos
88
------
89

    
90
* Fix security issue with handling Pithos versions.
91

    
92
.. _Changelog-0.14.4:
93

    
94
v0.14.4
95
=======
96

    
97
Released: Mon Jul 29 12:24:22 EEST 2013
98

    
99
Pithos
100
------
101

    
102
* Fix bug in reconcile resources management command.
103

    
104

    
105
.. _Changelog-0.14.3:
106

    
107
v0.14.3
108
=======
109

    
110
Released: Thu Jul 25 12:22:47 EEST 2013
111

    
112
Synnefo-wide
113
------------
114

    
115
* Use the SYNNEFO_TRACE environmental variable to control whether the greenlet
116
  tracing code will get loaded or not.
117
* Split the HIDDEN_COOKIES setting in HIDDEN_HEADERS and HIDDEN_COOKIES, and
118
  add the MAIL_MAX_LEN setting, to limit the mail size for unhandled
119
  exceptions.
120

    
121

    
122
.. _Changelog-0.14.2:
123

    
124
v0.14.2
125
=======
126

    
127
Released: Fri Jul 12 13:13:32 EEST 2013
128

    
129
Cyclades
130
--------
131

    
132
* Add new setting PITHOS_BACKEND_POOL_SIZE, which configures the size
133
  of the pool of Pithos backends that are used by plankton.
134

    
135
.. _Changelog-0.14:
136

    
137
v0.14
138
=====
139

    
140
Released: Tue Jun 25 14:01:19 EEST 2013
141

    
142
Synnefo-wide
143
------------
144

    
145
* Create 'snf_django' Python package to hold common code for all Synnefo
146
  components.
147

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

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

    
157
* Deprecate CLOUDBAR_ACTIVE_SERVICE setting from all apps. 
158

    
159
* Common synnefo 404/500 templates (located in snf-webproject)
160

    
161
Astakos
162
-------
163

    
164
* Redesign of the accounting system (quotaholder) and integration into
165
  Astakos.
166

    
167
  * Simplified the quotaholder model; removed tables Entity and Policy; now
168
    table Holding contains limit and usage for every holding.
169
  * Extended table Holding, so that we can keep track of quota for every
170
    valid combination of holder (e.g. user), resource, and source (e.g. the
171
    default system or some specific project).
172
  * Refactored code for issuing and resolving commissions for robustness;
173
    added a 'force' option to bypass the upper limit check when issuing a
174
    commission.
175
  * Simplified syncing to the quotaholder; removed fields from models
176
    Project and ProjectMembership, previously needed for syncing; removed
177
    state PROJECT_DEACTIVATED from ProjectMembership.
178
  * Removed settings ASTAKOS_QUOTAHOLDER_URL, ASTAKOS_QUOTAHOLDER_TOKEN,
179
    and ASTAKOS_QUOTAHOLDER_POOLSIZE.
180

    
181
* API-related changes:
182

    
183
  * Implemented API calls for quota, resources, and commissions.
184
  * Moved all API calls under '/account/v1.0'.
185
  * Implemented the keystone API call POST /tokens under '/identity/v2.0'.
186

    
187
* Service and resource specification and handling:
188

    
189
  * Specified a format for defining services along with the API endpoints
190
    and the resources they expose. Migrated internal resource name by
191
    prefixing it with service name (e.g. 'vm' becomes 'cyclades.vm');
192
    renamed registered service 'pithos+' to 'pithos'.
193
  * Specified a procedure to register a Synnefo component, its services and
194
    their resources in astakos and set the resources' default base quota
195
    limit. Removed resource definitions from settings.
196
  * Moved service and resource presentation data out of the respective db
197
    models into a separate file of UI constants.
198

    
199
* Converted the limit on pending applications from a setting to a quotable
200
  resource. Converted the related user setting to a user-specific base quota
201
  limit. Deprecated model UserSetting; removed setting
202
  ASTAKOS_PENDING_APPLICATION_LIMIT.
203

    
204
* Changes in locking strategy:
205

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

    
211
* Changes in views:
212

    
213
  * Replaced custom transaction context with a simple decorator for managing
214
    transactions and a context 'ExceptionHandler', which logs and suppresses
215
    exceptions
216

    
217
* Added fine grain user auth provider's policies.
218

    
219
  * Administrator can override default auth provider policies to a specific 
220
    user or group of users.
221
  * Optionally a user can be assigned to a list of groups, based on the
222
    authentication method he choosed to signup.
223

    
224
* Removed explicit handling of SMTP errors on each email delivery. Exceptions 
225
  are now propagated to base django exception handler.
226

    
227
* Email used in html/email tempaltes which prompt user to contact for service 
228
  support prompts is now defined in ``CONTACT_EMAIL`` setting introduced in 
229
  snf-common settings.
230

    
231
* Improvements in user activation flow
232

    
233
  * User moderation now takes place after the user has verified his email
234
    address.
235
  * User model enriched with additional user state fields
236
  * Split activation email from moderation process. Administrator is required 
237
    to moderate user explicitly using the `user-modify --accept` or
238
    `user-modify --reject` commands.
239
  * Improved logging throught out user activation procedures.
240

    
241
* Remove deprecated AstakosUser model fields: `provider`,
242
  `third_party_identifier`
243

    
244
* Allow override of authentication provider messages using the following 
245
  format in setting names: ``ASTAKOS_<PROVIDER_MODULE>_<MSGID>_MSG``
246

    
247
* Cloudbar automatically tries to identify the active service based on window 
248
  location.
249

    
250
* Removing authentication provider view is now CSRF protected.
251

    
252
* New `API access` view, containing useful information to users on how to 
253
  access available Synnefo services API's.
254

    
255
* Remove of ASTAKOS_*_EMAIL_SUBJECT settings. All email subjects are now 
256
  defined in astakos.im.messages module. Overriding default values can be 
257
  achieved using custom gettext files or using astakos messages settings::
258
	
259
	#change of greeting email subject
260
  	ASTAKOS_GREETING_EMAIL_SUBJECT_MESSAGE = 'Welcome to my cloud'
261

    
262
* Remove ``ASTAKOS_ACTIVATION_REDIRECT_URL`` and ``ASTAKOS_LOGIN_SUCCESS_URL`` 
263
  from astakos .conf file. Settings are dynamically computed based on 
264
  ``ASTAKOS_BASE_URL``.
265

    
266
* Management commands:
267

    
268
  * Introduced new commands:
269
     * authpolicy-{add, list, remove, set, show}
270
     * group-{add, list}
271
     * component-{add, list, modify, remove}
272
     * reconcile-resources-astakos
273
     * resource-{export-astakos, import, modify}
274
     * service-{export-astakos, import, show}
275
  * Renamed commands:
276
     * astakos-quota to quota
277
     * user-update to user-modify
278
     * full-cleanup to cleanup-full
279
  * Removed commands:
280
     * astakos-init
281
     * invitation-{details, list}
282
     * project-sync
283
     * resource-{add, remove}
284
     * service-{add, remove, token-renew, update}
285
     * user-invite
286
     * user-set-initial-quota (integrated its functionality in user-modify and quota)
287
  * Added quota and project-related information in user-show command; added
288
    membership information in project-show.
289

    
290
Cyclades
291
--------
292

    
293
* Make 'type' attribute required for network create API request.
294
* Networks not created to all Ganeti backends upon creation, they are instead
295
  created to a backend only when a VM connects to the network.
296
* Add 'CYCLADES_ASTAKOSCLIENT_POOLSIZE' setting which tunes the size of the
297
  http connection pool to astakos.
298
* Remove 'CYCLADES_USER_CATALOG_URL' and 'CYCLADES_USER_FEEDBACK_URL' settings
299
* Remove CYCLADES_USE_QUOTAHOLDER, CYCLADES_QUOTAHOLDER_TOKEN,
300
  CYCLADES_QUOTAHOLDER_URL, CYCLADES_QUOTAHOLDER_POOLSIZE settings
301
* Rename 'cyclades-usage-verify' management command to
302
  'reconcile-resources-cyclades'. Also, remove 'cyclades-usage-reset' command,
303
  which is equivalent to 'reconcile-resources-cyclades --fix'.
304
* Rename 'cyclades-reconcile-commissions' management command to
305
  'reconcile-commissions-cyclades'.
306
* Remove obsolete 'MAX_VMS_PER_USER', 'MAX_NETWORKS_PER_USER',
307
  "VMS_USER_QUOTA" and "NETWORKS_USER_QUOTA" settings, since their usage
308
  is covered by Quotaholder.
309
* Remove obsolete setting 'API_ROOT_URL', since it is being covered by
310
  the use of CYCLADES_BASE_URL* Remove obsolete setting 'API_ROOT_URL', since
311
  it is being covered by 'CYCLADES_BASE_URL'.
312
* Remove obsolete settings GANETI_DISK_TEMPLATES and
313
  DEFAULT_GANETI_DISK_TEMPLATE
314

    
315
Cyclades helpdesk
316
-----------------
317

    
318
* Additional start/stop vm action
319
* Display extend backend info in vm's view
320
* Fixed IP lookup
321

    
322
Pithos
323
------
324

    
325
* Remove PITHOS_AUTHENTICATION_USERS setting, which was used to override
326
  astakos users.
327
* Remove 'PITHOS_USER_CATALOG_URL', 'PITHOS_USER_FEEDBACK_URL' and
328
  'PITHOS_USER_LOGIN_URL' settings.
329
* Remove PITHOS_USE_QUOTAHOLDER, PITHOS_QUOTAHOLDER_URL,
330
  PITHOS_QUOTAHOLDER_TOKEN and PITHOS_ASTAKOSCLIENT_POOLSIZE
331

    
332
Tools
333
-----
334

    
335

    
336
.. _Changelog-0.13:
337

    
338
v0.13
339
=====
340

    
341
Released: Wed Apr 10 18:52:50 EEST 2013
342

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

    
349
Synnefo-wide
350
------------
351

    
352
* Support for pooling throughout Synnefo
353

    
354
  * Pooled Django DB connections, Pithos backend connections, HTTP
355
    connections using single `objpool` package
356

    
357
* Improved management commands
358

    
359
  * Unified codebase for output of tables in JSON, CSV
360

    
361
* Bring most of Synnefo code inside a single, unified repository
362

    
363
  * support automatic Python and Debian package builds for individual commits
364
  * with automatic version generation
365

    
366
* Overhauling of Synnefo settings: renames and refactoring, for increased
367
  uniformity (in progress)
368
* Deployment: Standardize on gunicorn, with gevent-based workers
369
  and use of Green threads throughout Synnefo
370
* Documentation: New scale-out guide, with distinct node roles,
371
  for mass Synnefo deployments
372

    
373
Astakos
374
-------
375

    
376
* Support multiple authentication methods
377

    
378
  * Classic (username/password), Shibboleth, LDAP/Active Directory,
379
    Google, Twitter, LinkedIn
380
  * Users can enable/disable auth methods, and switch between them
381

    
382
* Introduce a UUID as a global identifier for users, throughout Synnefo
383

    
384
  * The UUID remains constant as the user enables/disables login methods
385

    
386
* Allow users to modify their email address freely
387
* Per-user, per-resource accounting mechanism (quotaholder)
388
* Full quota support, with per-user, per-resource quotas, based on quotaholder
389
* Projects: Users can create and join Projects
390

    
391
  * Projects grant extra resources to their members
392

    
393
* UI Enhancements for quotas and projects
394

    
395
  * distinct Usage tab, showing usage of individual resources
396
  * Project management UI
397
  * New Overview page
398

    
399
* refactored/improved /login endpoint used by desktop/mobile clients.
400
  * endpoint url is now exposed by `weblogin` service
401
  * clients should use unauthenticated identity/tokens api to resolve the 
402
    endpoint url
403
  * view only allows redirects to `pithos://` scheme urls
404
  * removed uuid from redirect parameters. Client should use authenticated 
405
    request to identity/tokens to retrieve user uuid.
406

    
407

    
408
Cyclades
409
--------
410

    
411
* Commission resources on quotaholder/Astakos
412
* Support mass creation of flavors
413
* Support for the ExtStorage disk template in Ganeti
414
* Query and report quotas in the UI
415
* Pass VM configuration parameters over a VM-side API (`vmapi`)
416

    
417
  * Do not pass sensitive data as Ganeti OS parameters
418
  * Keep sensitive data in memory caches (memcached) and
419
    never allow them to hit the disk
420

    
421
* Display additional backend information in helpdesk machines list
422
* Allow helpdesk users to search for an account using a known machine id
423
* Helpdesk actions are now logged using the synnefo's common login
424
  infrastructure
425

    
426
UI
427
^^
428
* Removed feedback endpoint. Feedback requests delegate to astakos feedback
429
  service. ``FEEDBACK_CONTACTS``, ``FEEDBACK_EMAIL_FROM`` settings removed, 
430
  and no longer used.
431
* ``UI_LOGIN_URL``, ``UI_GLANCE_URL``, ``COMPUTE_URL`` settings no longer 
432
  required to be set and are dynamically computed based on ``ASTAKOS_BASE_URL``
433
  and ``CYCLADES_BASE_URL`` settings.
434
* File group is no longer included in ssh keys personality metadata sent in 
435
  create vm calls.
436
  
437

    
438
Pithos
439
------
440

    
441
* Support storage of blocks on a RADOS backend, for Archipelago
442

    
443
  * new settings:
444
    PITHOS_RADOS_STORAGE, PITHOS_RADOS_POOL_BLOCKS, PITHOS_RADOS_POOL_MAPS
445

    
446
* X-Object-Public now contains full url (domain + proper component prefix + 
447
  file path)
448

    
449
* Rewritten support for public URLs, with admin-selectable length
450

    
451
  * new settings:
452
    PITHOS_PUBLIC_URL_SECURITY, PITHOS_PUBLIC_URL_ALPHABET
453

    
454
* Enable pithos backend to use external quotaholder component
455

    
456
  * new settings:
457
    PITHOS_USE_QUOTAHOLDER, PITHOS_QUOTAHOLDER_URL, PITHOS_QUOTAHOLDER_TOKEN,
458
    PITHOS_QUOTAHOLDER_POOLSIZE
459

    
460
* Moderated version debiting mechanism
461

    
462
  * new setting:
463
    PITHOS_BACKEND_FREE_VERSIONING
464

    
465
* Proxy Astakos user-visible services
466

    
467
  * new settings:
468
    PITHOS_PROXY_USER_SERVICES, PITHOS_USER_CATALOG_URL,
469
    PITHOS_USER_FEEDBACK_URL, PITHOS_USER_LOGIN_URL
470

    
471
Tools
472
-----
473

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