Statistics
| Branch: | Tag: | Revision:

root / Changelog @ e4def9d6

History | View | Annotate | Download (26.4 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
v0.14next
10
=========
11

    
12
Released: UNRELEASED
13

    
14
Synnefo-wide
15
------------
16

    
17
* Integrate Pithos tests in continuous integration.
18

    
19
* Change astakosclient to accept AUTH_URL instead of BASE_URL
20
  ASTAKOS_BASE_URL settings has been removed from Pithos and Cyclades
21
  and has been replaced with ASTAKOS_AUTH_URL. Both Pithos and Cyclades
22
  proxy the Astakos services under ASTAKOS_PROXY_PREFIX path.
23
  ASTAKOS_PROXY_PREFIX by default has a value of '_astakos'.
24
  More specifically, Astakos' identity service is proxied under
25
  '_astakos/identity', Astakos' account service is under '_astakos/account'
26
  and Astakos' ui service is under '_astakos/ui'.
27

    
28
* Add 'mail_admins' handler to 'django.request' logger in order to send email
29
  notifactions to users listed in 'ADMINS' setting about unhandled exceptions
30
  in the code.
31

    
32
* Extend astakosclient to request and validate OAuth 2.0 access tokens
33

    
34
Astakos
35
-------
36

    
37
* Changes in project schema:
38

    
39
  * A Project entry is created when submitting an application for a new
40
    project, rather than on approval. Its state is dependent on the state
41
    of its `reference' application (current definition). Lock Project rather
42
    than Chain (the latter is semantically obsolete).
43

    
44
  * Project states "Active - Pending" and "Suspended - Pending" have been
45
    removed. In management command `project-list', the existence of a pending
46
    modification is indicated by a non-blank `Pending AppID'.
47

    
48
  * Improve recording of project, application, and membership actions.
49

    
50
* Implement API calls for projects.
51

    
52
* Store the base URL of a component. Deployer should provide it when adding
53
  a new component. Service endpoints originating from a component are
54
  expected to match its base URL; otherwise, a warning is issued.
55
  Re-registration with `snf-component-register' affects both the base and
56
  the ui URL.
57

    
58
* Changes in resource and quota handling:
59

    
60
  * New resources are registered with unlimited default base quota,
61
    represented by 2**63-1.
62
  * Each newly accepted user copies the default value for all resources
63
    as their own base quota. A base quota is considered 'custom' if its
64
    value differs from the default.
65
  * Changing resource's default quota affects the base quota *only* of
66
    future users.
67
  * Resource definition got flags 'api_visible' and 'ui_visible',
68
    replacing flag 'allow_in_projects'. They control whether a user can
69
    access these resources. The system internally always accounts for
70
    all resources, and a user can get off quota even for a resource that
71
    is not visible.
72

    
73
* Remove API call GET /account/v1.0/authenticate in favor of
74
  POST /identity/v2.0/tokens.
75

    
76
* Export basic statistics about Astakos service from '/admin/stats/detail' API
77
  endpoint. Access to this endpoint is only allowed to users that belong to
78
  the Astakos groups that are defined in the
79
  'ASTAKOS_ADMIN_STATS_PERMITTED_GROUPS' setting. Statistics are also availble
80
  from 'snf-manage stats-astakos' management command.
81

    
82
* Implement OAuth 2.0 Authorization Code Grant
83
  Add API calls for authorization code and access token generation
84

    
85
* Add API call for validating OAuth 2.0 access tokens
86

    
87
* Management commands:
88
  * Introduced new commands:
89
     * component-show
90
     * quota-list (replacing quota, supports various filters)
91
     * quota-verify (replacing quota)
92
	 * oauth2-client-add (register OAuth 2.0 client)
93
	 * oauth2-client-list (list registered oauth 2.0 clients)
94
	 * oauth2-client-remove (remove OAuth 2.0 client)
95
  * Changed commands:
96
     * component-add got options --base-url and --ui-url
97
     * resource-modify --limit became --default-quota
98
     * user-modify can operate on multiple users with --all and --exclude
99
     * user-modify --set-base-quota became --base-quota
100
  * Removed commands:
101
     * quota
102
     * resource-import (subsumed by service-import)
103
     * resource-export-astakos (subsumed by service-export-astakos)
104

    
105
Cyclades
106
--------
107

    
108
* Major changes to Cyclades networks:
109

    
110
  * Implement 'cyclades_network' service, containing the /networks, /ports,
111
    /subnets and /floatingips API endpoints under '/network/v2.0'.
112
	The old /networks API of 'cyclades_compute' (under /compute/v2.0) is
113
	removed.
114
  * Implement `snf-manage subnet-{create, list, modify, inspect}' management
115
    commands for handling of subnets.
116
  * Implement `snf-manage port-{create, list, remove, inspect}' management
117
    commands for handling of ports.
118
  * Add two new settings, 'CYCLADES_FORCED_SERVER_NETWORKS' and
119
	'CYCLADES_DEFAULT_SERVER_NETWORKS' to control the networks that newly
120
	created servers will be connected.
121

    
122
* Implement Floating IP addresses, which are IPv4 addresses that can be
123
  dynamically added and removed to a running server.
124

    
125
  * Add new 'cyclades.floating_ip' resource.
126
  * Implement 'snf-manage floating-ip-{create,list,remove,attach,detach}'
127
	management commands to handle floating IPs.
128
  * Add 'floating_ip_pool' attribute to networks to mark networks that can
129
    be used as floating IP pools.
130

    
131
* Implement 'resize' server action.
132

    
133
  * Implement the 'resize' server action, to change the flavor of a server.
134
  Only 'cpu' and 'memory' resizing is supported.
135

    
136
* Compute quotas for CPU and memory of running vms.
137

    
138
  * Change 'cyclades.cpu' and 'cyclades.ram' resources to represent the CPU
139
    and RAM for running VMs. Total CPU and RAM usage is represented by new
140
    'cyclades.total_cpu' and 'cyclades.total_ram' resources.
141

    
142
* Refer to Ganeti NICs by their name instead of their index.
143

    
144
  * Make cyclades give a unique name to each Ganeti NIC. NICs are refered by
145
    their unique name and not by their index inside the VM that are connected
146
	to.
147

    
148
* Support firewall profile for all NICs of an instance. Change firewall
149
  settings to be filled with the unique name of the NIC. The affected settings
150
  are the GANETI_FIREWALL_{ENABLED, DISABLED, PROTECTED}_TAG settings.
151
* Add accounting for public IP addresses that is accessible via `snf-manage
152
  ip-list` management command and via the helpdesk app.
153
* Implement IPv6 only networks.
154
* Extend servers info API response with 'SNF:fqdn' attribute, and introduce
155
  CYCLADES_SERVERS_FQDN to set the template for servers FDQN. Remove
156
  'UI_VM_HOSTNAME_FORMAT' setting.
157
* Extend servers info API response with 'SNF:port_forwarding' attribute,
158
  describing port fowarding rules (DNAT) that are applied to vms. The
159
  description of such rules is done via the new CYCLADES_PORT_FORWARDING
160
  setting.
161
* Speed up server reconciliation, by performing parallel reconciliation for
162
  each backend.
163
* Change --dhcp option of network management commands from a flag to a boolean
164
  value, e.g. --dhcp=True
165
* Remove 'ARCHIPELAGO_BACKENDS' setting used to distinquish between backends
166
  that hosted only archipelago backends. Instead allocation is based on which
167
  disk-templates are enabled in each backend.
168
* Implement 'snf-manage server-remove' management command.
169
* Move reconciliation of IP pools from 'reconcile-networks' to
170
  'reconcile-pools'. The IP pool reconciliation does not reconcile the IP
171
  pools with Ganeti. Instead it checks if the pool is consistent with the
172
  IPs that are used by instances.
173
* Do not automatically release externally reserved IPs if they are released
174
  from a Ganeti backend. Management of externally reserved IPs must be
175
  performed from Cyclades with 'network-modify' command.
176
* Export basic statistics about Cyclades Service from '/admin/stats/detail'
177
  API endpoint. Access to this endpoint is only allowed to users that belong
178
  to the Astakos groups that are defined in the 'ADMIN_STATS_PERMITTED_GROUPS'
179
  setting.  Statistics are also availble from 'snf-manage stats-cyclades'
180
  management command.
181
* Support enforcing quota through command 'enforce-resources-cyclades'.
182
* Remove command 'resource-export-cyclades' subsumed by
183
  'service-export-cyclades'.
184
* Obsolete PUBLIC_USE_POOL setting, since Cyclades manages IP pool for all
185
  type of networks.
186
* Encrypt / decrypt the instance id / hostname in the  stats URL in
187
  snf-cyclades-app and snf-stats-app, using the 'CYCLADES_STATS_SECRET_KEY'
188
  and 'STATS_SECRET_KEY' respectively.
189
* Add support for snf-vncauthproxy-1.5 and the setting
190
  'CYCLADES_VNCAUTHPROXY_OPTS', which configures the extra options / arguments
191
  needed by the newer version of snf-vncauthproxy. Support for older versions
192
  of snf-vncauthproxy has been dropped. See also the upgrade notes for Synnefo
193
  and snf-vncauthproxy-1.5.
194
* Remove 'DEFAULT_ROUTING_TABLE' setting. If a link for an IP_LESS_ROUTED
195
  network is not specified, the link will be uniquely named
196
  'snf-link-$network_id'.
197

    
198

    
199
Cyclades UI
200
-----------
201

    
202
- Retrieve all networks information from the introduced cyclades network
203
  service.
204
- New IPs pane from which user can manage floating IPs.
205
- Redesign public keys overlay as an additional pane view.
206
- Split networking configuration into an additional step in machine create 
207
  wizard.
208
- Display forced networks and choices of the available floating IPs which will 
209
  be assigned to the created machine.
210
- Support for machine resize action. Explicit handling when machine is started
211
  by displaying an utility shutdown button within the resize overlay.
212
- Machine IPs toggling subview in icon/single views.
213
- Replace IPv4/IPv6 with machine's FQDN in icon/single view. When no FQDN can 
214
  be resolved display a message. Message can be configured using the introduced 
215
  ``UI_NO_FQDN_MESSAGE``. Setting ``UI_VM_HOSTNAME_FORMAT`` has been removed 
216
  and no longer used.
217
- Respect ``SNF:task_state`` machine attribute in order to improve machine
218
  status display.
219
- Append software version as a url parameter in HTML static files in order 
220
  to force browser cache invalidation between versions.
221
- Configurable Google fonts base url. Fonts base url can be changed usint the 
222
  ``SYNNEFO_FONTS_BASE_URL`` setting.
223
- Regression fix: Display reboot required notification on machine firewall
224
  parameters.
225
- Handling of ``GANETI_USE_HOTPLUG`` setting. Do not allow live network actions 
226
  when setting is set to ``False``.
227
- Double escaping fix in machine create wizard images list and machine details 
228
  subview.
229
- Fix image ordering in machine create wizard.
230

    
231

    
232
Pithos
233
------
234

    
235
* Management commands:
236
  * Introduced new command:
237
     * file-show
238

    
239
* Change view authentication
240
  The pithos views do not use the cookie information for user authentication.
241
  They request (from Astakos) and use a short-term access token for a
242
  specific resource.
243

    
244
* Remove PITHOS_ASTAKOS_COOKIE_NAME setting, since it is no longer useful
245

    
246
* Add PITHOS_OAUTH2_CLIENT_CREDENTIALS setting to authenticate the views with
247
  astakos during the resource access token generation procedure
248

    
249
* Add PITHOS_SERVE_API_DOMAIN setting to restrict file serving endpoints to a
250
  specific host
251

    
252
* Refactor metadata schema (table attributes) in Pithos DB to speedup current
253
objects by domain attribute. This is used by Plankton for listing VM images.
254

    
255
* Enforce container-level atomicity in (most) Pithos API calls.
256

    
257
* Remove command 'resource-export-pithos' subsumed by 'service-export-pithos'.
258

    
259
.. _Changelog-0.14.10:
260

    
261
v0.14.10
262
=======
263

    
264
Released: Tue Nov 26 11:03:37 EET 2013
265

    
266
Cyclades
267
-------
268

    
269
* This is the first release to support Ganeti 2.8. Support for older versions
270
  of Ganeti is dropped.
271
* Use Ganeti opportunistic locking to achive parallelized instance creations
272
  in the same backend. Add setting 'GANETI_USE_OPPORTUNISTIC_LOCKING' to
273
  enable the use of this feature.
274
* Fix warning message while getting object permissions to appear only when
275
  path is None and the object has permissions
276
* Add name to newly created NICs and the corresponding firewall tags.
277

    
278
.. _Changelog-0.14.9:
279

    
280
v0.14.9
281
=======
282

    
283
Released: Mon Nov 11 12:13:31 EET 2013
284

    
285
* Astakos: Fix minor problems with logging in the Astakos module, which could
286
  lead to unexpected exceptions
287

    
288
.. _Changelog-0.14.8:
289

    
290
v0.14.8
291
=======
292

    
293
Released: Fri Nov  8 17:25:08 EET 2013
294

    
295
Synnefo-wide
296
------------
297

    
298
* This is the first release to support Debian Wheezy along with Squeeze. You
299
  can mix and match nodes freely.
300
* Update Django dependency to Django>=1.2,<1.5. Django 1.4.5 is available for
301
  Squeeze through squeeze-backports.
302
* Since this version, Synnefo ships an example Gunicorn configuration file
303
  that is automatically installed at ``/etc/gunicorn.d/synnefo.example``.
304

    
305
Cyclades
306
--------
307

    
308
* On VM creation, pass the hashmap of the image (pithosmap://) instead of the
309
  image URL (pithos://). Access to the Pithos DB by Ganeti nodes is no longer
310
  required.
311
* Workaround race between server creation and server deletion. This will be
312
  fixed properly by updating Ganeti to support the 'depends' attribute for
313
  OP_INSTANCE_REMOVE.
314

    
315
Astakos
316
-------
317

    
318
* For Shibboleth logins, store all attributes along with the user in the DB.
319

    
320
.. _Changelog-0.14.7:
321

    
322
v0.14.7
323
=======
324

    
325
Released: Wed Sep 18 17:50:12 EEST 2013
326

    
327
Cyclades
328
--------
329

    
330
* Fix bug in helpdesk view
331

    
332
.. _Changelog-0.14.6:
333

    
334
v0.14.6
335
=======
336

    
337
Released: Wed Sep 18 16:18:58 EEST 2013
338

    
339
Pithos
340
------
341

    
342
* Substitute the PITHOS_BACKEND_QUOTA setting with two
343
  distinct settings: PITHOS_BACKEND_ACCOUNT_QUOTA &
344
  PITHOS_BACKEND_CONTAINER_QUOTA
345
* Set PITHOS_BACKEND_CONTAINER_QUOTA default value to 0 (unlimited)
346
* Fix bug that resulted in DB deadlocks.
347

    
348
Cyclades
349
--------
350

    
351
* Fix bug in snf-dispatcher that resulted in servers to be deleted from the
352
  DB even if the corresponding Ganeti job failed.
353

    
354
Branding
355
--------
356

    
357
* Add new BRANDING_FOOTER_EXTRA_MESSAGE setting.
358

    
359

    
360
.. _Changelog-0.14.5:
361

    
362
v0.14.5
363
=======
364

    
365
Released: Wed Aug  7 11:19:49 EEST 2013
366

    
367
Pithos
368
------
369

    
370
* Fix security issue with handling Pithos versions.
371

    
372

    
373
.. _Changelog-0.14.4:
374

    
375
v0.14.4
376
=======
377

    
378
Released: Mon Jul 29 12:24:22 EEST 2013
379

    
380
Pithos
381
------
382

    
383
* Fix bug in reconcile resources management command.
384

    
385

    
386
.. _Changelog-0.14.3:
387

    
388
v0.14.3
389
=======
390

    
391
Released: Thu Jul 25 12:22:47 EEST 2013
392

    
393
Synnefo-wide
394
------------
395

    
396
* Use the SYNNEFO_TRACE environmental variable to control whether the greenlet
397
  tracing code will get loaded or not.
398
* Split the HIDDEN_COOKIES setting in HIDDEN_HEADERS and HIDDEN_COOKIES, and
399
  add the MAIL_MAX_LEN setting, to limit the mail size for unhandled
400
  exceptions.
401

    
402

    
403
.. _Changelog-0.14.2:
404

    
405
Released: Fri Jul 12 13:13:32 EEST 2013
406

    
407
v0.14.2
408
=======
409

    
410
Cyclades
411
--------
412

    
413
* Add new setting PITHOS_BACKEND_POOL_SIZE, which configures the size
414
  of the pool of Pithos backends that are used by plankton.
415

    
416

    
417

    
418
.. _Changelog-0.14:
419

    
420
v0.14
421
=====
422

    
423
Released: Tue Jun 25 14:01:19 EEST 2013
424

    
425
Synnefo-wide
426
------------
427

    
428
* Create 'snf_django' Python package to hold common code for all Synnefo
429
  components.
430

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

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

    
440
* Deprecate CLOUDBAR_ACTIVE_SERVICE setting from all apps. 
441

    
442
* Common synnefo 404/500 templates (located in snf-webproject)
443

    
444
Astakos
445
-------
446

    
447
* Redesign of the accounting system (quotaholder) and integration into
448
  Astakos.
449

    
450
  * Simplified the quotaholder model; removed tables Entity and Policy; now
451
    table Holding contains limit and usage for every holding.
452
  * Extended table Holding, so that we can keep track of quota for every
453
    valid combination of holder (e.g. user), resource, and source (e.g. the
454
    default system or some specific project).
455
  * Refactored code for issuing and resolving commissions for robustness;
456
    added a 'force' option to bypass the upper limit check when issuing a
457
    commission.
458
  * Simplified syncing to the quotaholder; removed fields from models
459
    Project and ProjectMembership, previously needed for syncing; removed
460
    state PROJECT_DEACTIVATED from ProjectMembership.
461
  * Removed settings ASTAKOS_QUOTAHOLDER_URL, ASTAKOS_QUOTAHOLDER_TOKEN,
462
    and ASTAKOS_QUOTAHOLDER_POOLSIZE.
463

    
464
* API-related changes:
465

    
466
  * Implemented API calls for quota, resources, and commissions.
467
  * Moved all API calls under '/account/v1.0'.
468
  * Implemented the keystone API call POST /tokens under '/identity/v2.0'.
469

    
470
* Service and resource specification and handling:
471

    
472
  * Specified a format for defining services along with the API endpoints
473
    and the resources they expose. Migrated internal resource name by
474
    prefixing it with service name (e.g. 'vm' becomes 'cyclades.vm');
475
    renamed registered service 'pithos+' to 'pithos'.
476
  * Specified a procedure to register a Synnefo component, its services and
477
    their resources in astakos and set the resources' default base quota
478
    limit. Removed resource definitions from settings.
479
  * Moved service and resource presentation data out of the respective db
480
    models into a separate file of UI constants.
481

    
482
* Converted the limit on pending applications from a setting to a quotable
483
  resource. Converted the related user setting to a user-specific base quota
484
  limit. Deprecated model UserSetting; removed setting
485
  ASTAKOS_PENDING_APPLICATION_LIMIT.
486

    
487
* Changes in locking strategy:
488

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

    
494
* Changes in views:
495

    
496
  * Replaced custom transaction context with a simple decorator for managing
497
    transactions and a context 'ExceptionHandler', which logs and suppresses
498
    exceptions
499

    
500
* Added fine grain user auth provider's policies.
501

    
502
  * Administrator can override default auth provider policies to a specific 
503
    user or group of users.
504
  * Optionally a user can be assigned to a list of groups, based on the
505
    authentication method he choosed to signup.
506

    
507
* Removed explicit handling of SMTP errors on each email delivery. Exceptions 
508
  are now propagated to base django exception handler.
509

    
510
* Email used in html/email tempaltes which prompt user to contact for service 
511
  support prompts is now defined in ``CONTACT_EMAIL`` setting introduced in 
512
  snf-common settings.
513

    
514
* Improvements in user activation flow
515

    
516
  * User moderation now takes place after the user has verified his email
517
    address.
518
  * User model enriched with additional user state fields
519
  * Split activation email from moderation process. Administrator is required 
520
    to moderate user explicitly using the `user-modify --accept` or
521
    `user-modify --reject` commands.
522
  * Improved logging throught out user activation procedures.
523

    
524
* Remove deprecated AstakosUser model fields: `provider`,
525
  `third_party_identifier`
526

    
527
* Allow override of authentication provider messages using the following 
528
  format in setting names: ``ASTAKOS_<PROVIDER_MODULE>_<MSGID>_MSG``
529

    
530
* Cloudbar automatically tries to identify the active service based on window 
531
  location.
532

    
533
* Removing authentication provider view is now CSRF protected.
534

    
535
* New `API access` view, containing useful information to users on how to 
536
  access available Synnefo services API's.
537

    
538
* Remove of ASTAKOS_*_EMAIL_SUBJECT settings. All email subjects are now 
539
  defined in astakos.im.messages module. Overriding default values can be 
540
  achieved using custom gettext files or using astakos messages settings::
541
	
542
	#change of greeting email subject
543
  	ASTAKOS_GREETING_EMAIL_SUBJECT_MESSAGE = 'Welcome to my cloud'
544

    
545
* Remove ``ASTAKOS_ACTIVATION_REDIRECT_URL`` and ``ASTAKOS_LOGIN_SUCCESS_URL`` 
546
  from astakos .conf file. Settings are dynamically computed based on 
547
  ``ASTAKOS_BASE_URL``.
548

    
549
* Management commands:
550

    
551
  * Introduced new commands:
552
     * authpolicy-{add, list, remove, set, show}
553
     * group-{add, list}
554
     * component-{add, list, modify, remove}
555
     * reconcile-resources-astakos
556
     * resource-{export-astakos, import, modify}
557
     * service-{export-astakos, import, show}
558
  * Renamed commands:
559
     * astakos-quota to quota
560
     * user-update to user-modify
561
     * full-cleanup to cleanup-full
562
  * Removed commands:
563
     * astakos-init
564
     * invitation-{details, list}
565
     * project-sync
566
     * resource-{add, remove}
567
     * service-{add, remove, token-renew, update}
568
     * user-invite
569
     * user-set-initial-quota (integrated its functionality in user-modify and quota)
570
  * Added quota and project-related information in user-show command; added
571
    membership information in project-show.
572

    
573
Cyclades
574
--------
575

    
576
* Make 'type' attribute required for network create API request.
577
* Networks not created to all Ganeti backends upon creation, they are instead
578
  created to a backend only when a VM connects to the network.
579
* Add 'CYCLADES_ASTAKOSCLIENT_POOLSIZE' setting which tunes the size of the
580
  http connection pool to astakos.
581
* Remove 'CYCLADES_USER_CATALOG_URL' and 'CYCLADES_USER_FEEDBACK_URL' settings
582
* Remove CYCLADES_USE_QUOTAHOLDER, CYCLADES_QUOTAHOLDER_TOKEN,
583
  CYCLADES_QUOTAHOLDER_URL, CYCLADES_QUOTAHOLDER_POOLSIZE settings
584
* Rename 'cyclades-usage-verify' management command to
585
  'reconcile-resources-cyclades'. Also, remove 'cyclades-usage-reset' command,
586
  which is equivalent to 'reconcile-resources-cyclades --fix'.
587
* Rename 'cyclades-reconcile-commissions' management command to
588
  'reconcile-commissions-cyclades'.
589
* Remove obsolete 'MAX_VMS_PER_USER', 'MAX_NETWORKS_PER_USER',
590
  "VMS_USER_QUOTA" and "NETWORKS_USER_QUOTA" settings, since their usage
591
  is covered by Quotaholder.
592
* Remove obsolete setting 'API_ROOT_URL', since it is being covered by
593
  the use of CYCLADES_BASE_URL* Remove obsolete setting 'API_ROOT_URL', since
594
  it is being covered by 'CYCLADES_BASE_URL'.
595
* Remove obsolete settings GANETI_DISK_TEMPLATES and
596
  DEFAULT_GANETI_DISK_TEMPLATE
597

    
598
Cyclades helpdesk
599
-----------------
600

    
601
* Additional start/stop vm action
602
* Display extend backend info in vm's view
603
* Fixed IP lookup
604

    
605
Pithos
606
------
607

    
608
* Remove PITHOS_AUTHENTICATION_USERS setting, which was used to override
609
  astakos users.
610
* Remove 'PITHOS_USER_CATALOG_URL', 'PITHOS_USER_FEEDBACK_URL' and
611
  'PITHOS_USER_LOGIN_URL' settings.
612
* Remove PITHOS_USE_QUOTAHOLDER, PITHOS_QUOTAHOLDER_URL,
613
  PITHOS_QUOTAHOLDER_TOKEN and PITHOS_ASTAKOSCLIENT_POOLSIZE
614

    
615
Tools
616
-----
617

    
618

    
619
.. _Changelog-0.13:
620

    
621
v0.13
622
=====
623

    
624
Released: Wed Apr 10 18:52:50 EEST 2013
625

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

    
632
Synnefo-wide
633
------------
634

    
635
* Support for pooling throughout Synnefo
636

    
637
  * Pooled Django DB connections, Pithos backend connections, HTTP
638
    connections using single `objpool` package
639

    
640
* Improved management commands
641

    
642
  * Unified codebase for output of tables in JSON, CSV
643

    
644
* Bring most of Synnefo code inside a single, unified repository
645

    
646
  * support automatic Python and Debian package builds for individual commits
647
  * with automatic version generation
648

    
649
* Overhauling of Synnefo settings: renames and refactoring, for increased
650
  uniformity (in progress)
651
* Deployment: Standardize on gunicorn, with gevent-based workers
652
  and use of Green threads throughout Synnefo
653
* Documentation: New scale-out guide, with distinct node roles,
654
  for mass Synnefo deployments
655

    
656
Astakos
657
-------
658

    
659
* Support multiple authentication methods
660

    
661
  * Classic (username/password), Shibboleth, LDAP/Active Directory,
662
    Google, Twitter, LinkedIn
663
  * Users can enable/disable auth methods, and switch between them
664

    
665
* Introduce a UUID as a global identifier for users, throughout Synnefo
666

    
667
  * The UUID remains constant as the user enables/disables login methods
668

    
669
* Allow users to modify their email address freely
670
* Per-user, per-resource accounting mechanism (quotaholder)
671
* Full quota support, with per-user, per-resource quotas, based on quotaholder
672
* Projects: Users can create and join Projects
673

    
674
  * Projects grant extra resources to their members
675

    
676
* UI Enhancements for quotas and projects
677

    
678
  * distinct Usage tab, showing usage of individual resources
679
  * Project management UI
680
  * New Overview page
681

    
682
* refactored/improved /login endpoint used by desktop/mobile clients.
683
  * endpoint url is now exposed by `weblogin` service
684
  * clients should use unauthenticated identity/tokens api to resolve the 
685
    endpoint url
686
  * view only allows redirects to `pithos://` scheme urls
687
  * removed uuid from redirect parameters. Client should use authenticated 
688
    request to identity/tokens to retrieve user uuid.
689

    
690

    
691
Cyclades
692
--------
693

    
694
* Commission resources on quotaholder/Astakos
695
* Support mass creation of flavors
696
* Support for the ExtStorage disk template in Ganeti
697
* Query and report quotas in the UI
698
* Pass VM configuration parameters over a VM-side API (`vmapi`)
699

    
700
  * Do not pass sensitive data as Ganeti OS parameters
701
  * Keep sensitive data in memory caches (memcached) and
702
    never allow them to hit the disk
703

    
704
* Display additional backend information in helpdesk machines list
705
* Allow helpdesk users to search for an account using a known machine id
706
* Helpdesk actions are now logged using the synnefo's common login
707
  infrastructure
708

    
709
UI
710
^^
711
* Removed feedback endpoint. Feedback requests delegate to astakos feedback
712
  service. ``FEEDBACK_CONTACTS``, ``FEEDBACK_EMAIL_FROM`` settings removed, 
713
  and no longer used.
714
* ``UI_LOGIN_URL``, ``UI_GLANCE_URL``, ``COMPUTE_URL`` settings no longer 
715
  required to be set and are dynamically computed based on ``ASTAKOS_BASE_URL``
716
  and ``CYCLADES_BASE_URL`` settings.
717
* File group is no longer included in ssh keys personality metadata sent in 
718
  create vm calls.
719
  
720

    
721
Pithos
722
------
723

    
724
* Support storage of blocks on a RADOS backend, for Archipelago
725

    
726
  * new settings:
727
    PITHOS_RADOS_STORAGE, PITHOS_RADOS_POOL_BLOCKS, PITHOS_RADOS_POOL_MAPS
728

    
729
* X-Object-Public now contains full url (domain + proper component prefix + 
730
  file path)
731

    
732
* Rewritten support for public URLs, with admin-selectable length
733

    
734
  * new settings:
735
    PITHOS_PUBLIC_URL_SECURITY, PITHOS_PUBLIC_URL_ALPHABET
736

    
737
* Enable pithos backend to use external quotaholder component
738

    
739
  * new settings:
740
    PITHOS_USE_QUOTAHOLDER, PITHOS_QUOTAHOLDER_URL, PITHOS_QUOTAHOLDER_TOKEN,
741
    PITHOS_QUOTAHOLDER_POOLSIZE
742

    
743
* Moderated version debiting mechanism
744

    
745
  * new setting:
746
    PITHOS_BACKEND_FREE_VERSIONING
747

    
748
* Proxy Astakos user-visible services
749

    
750
  * new settings:
751
    PITHOS_PROXY_USER_SERVICES, PITHOS_USER_CATALOG_URL,
752
    PITHOS_USER_FEEDBACK_URL, PITHOS_USER_LOGIN_URL
753

    
754
Tools
755
-----
756

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