Statistics
| Branch: | Tag: | Revision:

root / Changelog @ 7e67657f

History | View | Annotate | Download (27.5 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
* Change response status code from 400 (Bad Request) to 405 (Not allowed
35
  method) in case of an unexpected request method.
36

    
37
Astakos
38
-------
39

    
40
* Changes in project schema:
41

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

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

    
51
  * Improve recording of project, application, and membership actions.
52

    
53
* Implement API calls for projects.
54

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

    
61
* Changes in resource and quota handling:
62

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

    
76
* Remove API call GET /account/v1.0/authenticate in favor of
77
  POST /identity/v2.0/tokens.
78

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

    
85
* Implement OAuth 2.0 Authorization Code Grant
86
  Add API calls for authorization code and access token generation
87

    
88
* Add API call for validating OAuth 2.0 access tokens
89

    
90
* **Shibboleth module** Extract unique identifier from the 
91
  ``REMOTE_USER`` header.
92

    
93
* Automatically fill third party signup form fields when available by the 
94
  the third party provider.
95

    
96
* Management commands:
97
  * Introduced new commands:
98
     * component-show
99
     * quota-list (replacing quota, supports various filters)
100
     * quota-verify (replacing quota)
101
	 * oauth2-client-add (register OAuth 2.0 client)
102
	 * oauth2-client-list (list registered oauth 2.0 clients)
103
	 * oauth2-client-remove (remove OAuth 2.0 client)
104
  * Changed commands:
105
     * component-add got options --base-url and --ui-url
106
     * resource-modify --limit became --default-quota
107
     * user-modify can operate on multiple users with --all and --exclude
108
     * user-modify --set-base-quota became --base-quota
109
  * Removed commands:
110
     * quota
111
     * resource-import (subsumed by service-import)
112
     * resource-export-astakos (subsumed by service-export-astakos)
113

    
114
Cyclades
115
--------
116

    
117
* Major changes to Cyclades networks:
118

    
119
  * Implement 'cyclades_network' service, containing the /networks, /ports,
120
    /subnets and /floatingips API endpoints under '/network/v2.0'.
121
	The old /networks API of 'cyclades_compute' (under /compute/v2.0) is
122
	removed.
123
  * Implement `snf-manage subnet-{create, list, modify, inspect}' management
124
    commands for handling of subnets.
125
  * Implement `snf-manage port-{create, list, remove, inspect}' management
126
    commands for handling of ports.
127
  * Add two new settings, 'CYCLADES_FORCED_SERVER_NETWORKS' and
128
	'CYCLADES_DEFAULT_SERVER_NETWORKS' to control the networks that newly
129
	created servers will be connected.
130

    
131
* Implement Floating IP addresses, which are IPv4 addresses that can be
132
  dynamically added and removed to a running server.
133

    
134
  * Add new 'cyclades.floating_ip' resource.
135
  * Implement 'snf-manage floating-ip-{create,list,remove,attach,detach}'
136
	management commands to handle floating IPs.
137
  * Add 'floating_ip_pool' attribute to networks to mark networks that can
138
    be used as floating IP pools.
139

    
140
* Implement 'resize' server action.
141

    
142
  * Implement the 'resize' server action, to change the flavor of a server.
143
  Only 'cpu' and 'memory' resizing is supported.
144

    
145
* Compute quotas for CPU and memory of running vms.
146

    
147
  * Change 'cyclades.cpu' and 'cyclades.ram' resources to represent the CPU
148
    and RAM for running VMs. Total CPU and RAM usage is represented by new
149
    'cyclades.total_cpu' and 'cyclades.total_ram' resources.
150

    
151
* Refer to Ganeti NICs by their name instead of their index.
152

    
153
  * Make cyclades give a unique name to each Ganeti NIC. NICs are refered by
154
    their unique name and not by their index inside the VM that are connected
155
	to.
156

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

    
207

    
208
Cyclades UI
209
-----------
210

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

    
240

    
241
Pithos
242
------
243

    
244
* Rewrite tests.
245

    
246
* Performance optimizations in object listing.
247

    
248
* Introduce backend method decorator for handling transaction management if no
249
  transaction is initiated from the frontend.
250

    
251
* Fix Internal Server Errors https://code.grnet.gr/issues/4501 &
252
  https://code.grnet.gr/issues/4502.
253

    
254
* Fix REQUEST ENTITY TOO LARGE request failure during move operations
255
  https://code.grnet.gr/issues/4154.
256

    
257
* Fix FORBIDDEN request failure while listing implicitly shared objects
258
  https://code.grnet.gr/issues/4131.
259

    
260
* Fix issue with the computed size of an updated object.
261

    
262
* Reply with the Merkle hash in the ETag header if MD5 is deactivated.
263

    
264
* Reply with FORBIDDEN (403) to public listing requests performed by non path
265
  owners.
266

    
267
* Change response status to NOT FOUND (404) while trying to delete an
268
  already deleted object.
269

    
270
* Change SQLAlchemy version to 0.7
271

    
272
* Change view authorization
273
  The pithos views do not use the cookie information for user authentication.
274
  They request (from Astakos) and use a short-term access token for a
275
  specific resource.
276

    
277
* Remove PITHOS_ASTAKOS_COOKIE_NAME setting, since it is no longer useful
278

    
279
* Add PITHOS_OAUTH2_CLIENT_CREDENTIALS setting to authenticate the views with
280
  astakos during the resource access token generation procedure
281

    
282
* Add PITHOS_SERVE_API_DOMAIN setting to restrict file serving endpoints to a
283
  specific host
284

    
285
* Management commands:
286
  * Introduced new command:
287
     * file-show
288

    
289
* Remove command 'resource-export-pithos' subsumed by 'service-export-pithos'.
290

    
291
.. _Changelog-0.14.10:
292

    
293
v0.14.10
294
=======
295

    
296
Released: Tue Nov 26 11:03:37 EET 2013
297

    
298
Cyclades
299
-------
300

    
301
* This is the first release to support Ganeti 2.8. Support for older versions
302
  of Ganeti is dropped.
303
* Use Ganeti opportunistic locking to achive parallelized instance creations
304
  in the same backend. Add setting 'GANETI_USE_OPPORTUNISTIC_LOCKING' to
305
  enable the use of this feature.
306
* Fix warning message while getting object permissions to appear only when
307
  path is None and the object has permissions
308
* Add name to newly created NICs and the corresponding firewall tags.
309

    
310
.. _Changelog-0.14.9:
311

    
312
v0.14.9
313
=======
314

    
315
Released: Mon Nov 11 12:13:31 EET 2013
316

    
317
* Astakos: Fix minor problems with logging in the Astakos module, which could
318
  lead to unexpected exceptions
319

    
320
.. _Changelog-0.14.8:
321

    
322
v0.14.8
323
=======
324

    
325
Released: Fri Nov  8 17:25:08 EET 2013
326

    
327
Synnefo-wide
328
------------
329

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

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

    
340
* On VM creation, pass the hashmap of the image (pithosmap://) instead of the
341
  image URL (pithos://). Access to the Pithos DB by Ganeti nodes is no longer
342
  required.
343
* Workaround race between server creation and server deletion. This will be
344
  fixed properly by updating Ganeti to support the 'depends' attribute for
345
  OP_INSTANCE_REMOVE.
346

    
347
Astakos
348
-------
349

    
350
* For Shibboleth logins, store all attributes along with the user in the DB.
351

    
352
.. _Changelog-0.14.7:
353

    
354
v0.14.7
355
=======
356

    
357
Released: Wed Sep 18 17:50:12 EEST 2013
358

    
359
Cyclades
360
--------
361

    
362
* Fix bug in helpdesk view
363

    
364
.. _Changelog-0.14.6:
365

    
366
v0.14.6
367
=======
368

    
369
Released: Wed Sep 18 16:18:58 EEST 2013
370

    
371
Pithos
372
------
373

    
374
* Substitute the PITHOS_BACKEND_QUOTA setting with two
375
  distinct settings: PITHOS_BACKEND_ACCOUNT_QUOTA &
376
  PITHOS_BACKEND_CONTAINER_QUOTA
377
* Set PITHOS_BACKEND_CONTAINER_QUOTA default value to 0 (unlimited)
378
* Fix bug that resulted in DB deadlocks.
379

    
380
Cyclades
381
--------
382

    
383
* Fix bug in snf-dispatcher that resulted in servers to be deleted from the
384
  DB even if the corresponding Ganeti job failed.
385

    
386
Branding
387
--------
388

    
389
* Add new BRANDING_FOOTER_EXTRA_MESSAGE setting.
390

    
391

    
392
.. _Changelog-0.14.5:
393

    
394
v0.14.5
395
=======
396

    
397
Released: Wed Aug  7 11:19:49 EEST 2013
398

    
399
Pithos
400
------
401

    
402
* Fix security issue with handling Pithos versions.
403

    
404

    
405
.. _Changelog-0.14.4:
406

    
407
v0.14.4
408
=======
409

    
410
Released: Mon Jul 29 12:24:22 EEST 2013
411

    
412
Pithos
413
------
414

    
415
* Fix bug in reconcile resources management command.
416

    
417

    
418
.. _Changelog-0.14.3:
419

    
420
v0.14.3
421
=======
422

    
423
Released: Thu Jul 25 12:22:47 EEST 2013
424

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

    
428
* Use the SYNNEFO_TRACE environmental variable to control whether the greenlet
429
  tracing code will get loaded or not.
430
* Split the HIDDEN_COOKIES setting in HIDDEN_HEADERS and HIDDEN_COOKIES, and
431
  add the MAIL_MAX_LEN setting, to limit the mail size for unhandled
432
  exceptions.
433

    
434

    
435
.. _Changelog-0.14.2:
436

    
437
Released: Fri Jul 12 13:13:32 EEST 2013
438

    
439
v0.14.2
440
=======
441

    
442
Cyclades
443
--------
444

    
445
* Add new setting PITHOS_BACKEND_POOL_SIZE, which configures the size
446
  of the pool of Pithos backends that are used by plankton.
447

    
448
Pithos
449
------
450

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

    
454

    
455
.. _Changelog-0.14:
456

    
457
v0.14
458
=====
459

    
460
Released: Tue Jun 25 14:01:19 EEST 2013
461

    
462
Synnefo-wide
463
------------
464

    
465
* Create 'snf_django' Python package to hold common code for all Synnefo
466
  components.
467

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

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

    
477
* Deprecate CLOUDBAR_ACTIVE_SERVICE setting from all apps. 
478

    
479
* Common synnefo 404/500 templates (located in snf-webproject)
480

    
481
Astakos
482
-------
483

    
484
* Redesign of the accounting system (quotaholder) and integration into
485
  Astakos.
486

    
487
  * Simplified the quotaholder model; removed tables Entity and Policy; now
488
    table Holding contains limit and usage for every holding.
489
  * Extended table Holding, so that we can keep track of quota for every
490
    valid combination of holder (e.g. user), resource, and source (e.g. the
491
    default system or some specific project).
492
  * Refactored code for issuing and resolving commissions for robustness;
493
    added a 'force' option to bypass the upper limit check when issuing a
494
    commission.
495
  * Simplified syncing to the quotaholder; removed fields from models
496
    Project and ProjectMembership, previously needed for syncing; removed
497
    state PROJECT_DEACTIVATED from ProjectMembership.
498
  * Removed settings ASTAKOS_QUOTAHOLDER_URL, ASTAKOS_QUOTAHOLDER_TOKEN,
499
    and ASTAKOS_QUOTAHOLDER_POOLSIZE.
500

    
501
* API-related changes:
502

    
503
  * Implemented API calls for quota, resources, and commissions.
504
  * Moved all API calls under '/account/v1.0'.
505
  * Implemented the keystone API call POST /tokens under '/identity/v2.0'.
506

    
507
* Service and resource specification and handling:
508

    
509
  * Specified a format for defining services along with the API endpoints
510
    and the resources they expose. Migrated internal resource name by
511
    prefixing it with service name (e.g. 'vm' becomes 'cyclades.vm');
512
    renamed registered service 'pithos+' to 'pithos'.
513
  * Specified a procedure to register a Synnefo component, its services and
514
    their resources in astakos and set the resources' default base quota
515
    limit. Removed resource definitions from settings.
516
  * Moved service and resource presentation data out of the respective db
517
    models into a separate file of UI constants.
518

    
519
* Converted the limit on pending applications from a setting to a quotable
520
  resource. Converted the related user setting to a user-specific base quota
521
  limit. Deprecated model UserSetting; removed setting
522
  ASTAKOS_PENDING_APPLICATION_LIMIT.
523

    
524
* Changes in locking strategy:
525

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

    
531
* Changes in views:
532

    
533
  * Replaced custom transaction context with a simple decorator for managing
534
    transactions and a context 'ExceptionHandler', which logs and suppresses
535
    exceptions
536

    
537
* Added fine grain user auth provider's policies.
538

    
539
  * Administrator can override default auth provider policies to a specific 
540
    user or group of users.
541
  * Optionally a user can be assigned to a list of groups, based on the
542
    authentication method he choosed to signup.
543

    
544
* Removed explicit handling of SMTP errors on each email delivery. Exceptions 
545
  are now propagated to base django exception handler.
546

    
547
* Email used in html/email tempaltes which prompt user to contact for service 
548
  support prompts is now defined in ``CONTACT_EMAIL`` setting introduced in 
549
  snf-common settings.
550

    
551
* Improvements in user activation flow
552

    
553
  * User moderation now takes place after the user has verified his email
554
    address.
555
  * User model enriched with additional user state fields
556
  * Split activation email from moderation process. Administrator is required 
557
    to moderate user explicitly using the `user-modify --accept` or
558
    `user-modify --reject` commands.
559
  * Improved logging throught out user activation procedures.
560

    
561
* Remove deprecated AstakosUser model fields: `provider`,
562
  `third_party_identifier`
563

    
564
* Allow override of authentication provider messages using the following 
565
  format in setting names: ``ASTAKOS_<PROVIDER_MODULE>_<MSGID>_MSG``
566

    
567
* Cloudbar automatically tries to identify the active service based on window 
568
  location.
569

    
570
* Removing authentication provider view is now CSRF protected.
571

    
572
* New `API access` view, containing useful information to users on how to 
573
  access available Synnefo services API's.
574

    
575
* Remove of ASTAKOS_*_EMAIL_SUBJECT settings. All email subjects are now 
576
  defined in astakos.im.messages module. Overriding default values can be 
577
  achieved using custom gettext files or using astakos messages settings::
578
	
579
	#change of greeting email subject
580
  	ASTAKOS_GREETING_EMAIL_SUBJECT_MESSAGE = 'Welcome to my cloud'
581

    
582
* Remove ``ASTAKOS_ACTIVATION_REDIRECT_URL`` and ``ASTAKOS_LOGIN_SUCCESS_URL`` 
583
  from astakos .conf file. Settings are dynamically computed based on 
584
  ``ASTAKOS_BASE_URL``.
585

    
586
* Management commands:
587

    
588
  * Introduced new commands:
589
     * authpolicy-{add, list, remove, set, show}
590
     * group-{add, list}
591
     * component-{add, list, modify, remove}
592
     * reconcile-resources-astakos
593
     * resource-{export-astakos, import, modify}
594
     * service-{export-astakos, import, show}
595
  * Renamed commands:
596
     * astakos-quota to quota
597
     * user-update to user-modify
598
     * full-cleanup to cleanup-full
599
  * Removed commands:
600
     * astakos-init
601
     * invitation-{details, list}
602
     * project-sync
603
     * resource-{add, remove}
604
     * service-{add, remove, token-renew, update}
605
     * user-invite
606
     * user-set-initial-quota (integrated its functionality in user-modify and quota)
607
  * Added quota and project-related information in user-show command; added
608
    membership information in project-show.
609

    
610
Cyclades
611
--------
612

    
613
* Make 'type' attribute required for network create API request.
614
* Networks not created to all Ganeti backends upon creation, they are instead
615
  created to a backend only when a VM connects to the network.
616
* Add 'CYCLADES_ASTAKOSCLIENT_POOLSIZE' setting which tunes the size of the
617
  http connection pool to astakos.
618
* Remove 'CYCLADES_USER_CATALOG_URL' and 'CYCLADES_USER_FEEDBACK_URL' settings
619
* Remove CYCLADES_USE_QUOTAHOLDER, CYCLADES_QUOTAHOLDER_TOKEN,
620
  CYCLADES_QUOTAHOLDER_URL, CYCLADES_QUOTAHOLDER_POOLSIZE settings
621
* Rename 'cyclades-usage-verify' management command to
622
  'reconcile-resources-cyclades'. Also, remove 'cyclades-usage-reset' command,
623
  which is equivalent to 'reconcile-resources-cyclades --fix'.
624
* Rename 'cyclades-reconcile-commissions' management command to
625
  'reconcile-commissions-cyclades'.
626
* Remove obsolete 'MAX_VMS_PER_USER', 'MAX_NETWORKS_PER_USER',
627
  "VMS_USER_QUOTA" and "NETWORKS_USER_QUOTA" settings, since their usage
628
  is covered by Quotaholder.
629
* Remove obsolete setting 'API_ROOT_URL', since it is being covered by
630
  the use of CYCLADES_BASE_URL* Remove obsolete setting 'API_ROOT_URL', since
631
  it is being covered by 'CYCLADES_BASE_URL'.
632
* Remove obsolete settings GANETI_DISK_TEMPLATES and
633
  DEFAULT_GANETI_DISK_TEMPLATE
634

    
635
Cyclades helpdesk
636
-----------------
637

    
638
* Additional start/stop vm action
639
* Display extend backend info in vm's view
640
* Fixed IP lookup
641

    
642
Pithos
643
------
644

    
645
* Remove PITHOS_AUTHENTICATION_USERS setting, which was used to override
646
  astakos users.
647
* Remove 'PITHOS_USER_CATALOG_URL', 'PITHOS_USER_FEEDBACK_URL' and
648
  'PITHOS_USER_LOGIN_URL' settings.
649
* Remove PITHOS_USE_QUOTAHOLDER, PITHOS_QUOTAHOLDER_URL,
650
  PITHOS_QUOTAHOLDER_TOKEN and PITHOS_ASTAKOSCLIENT_POOLSIZE
651

    
652
* Enforce container-level atomicity in (most) Pithos API calls.
653

    
654

    
655
Tools
656
-----
657

    
658

    
659
.. _Changelog-0.13:
660

    
661
v0.13
662
=====
663

    
664
Released: Wed Apr 10 18:52:50 EEST 2013
665

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

    
672
Synnefo-wide
673
------------
674

    
675
* Support for pooling throughout Synnefo
676

    
677
  * Pooled Django DB connections, Pithos backend connections, HTTP
678
    connections using single `objpool` package
679

    
680
* Improved management commands
681

    
682
  * Unified codebase for output of tables in JSON, CSV
683

    
684
* Bring most of Synnefo code inside a single, unified repository
685

    
686
  * support automatic Python and Debian package builds for individual commits
687
  * with automatic version generation
688

    
689
* Overhauling of Synnefo settings: renames and refactoring, for increased
690
  uniformity (in progress)
691
* Deployment: Standardize on gunicorn, with gevent-based workers
692
  and use of Green threads throughout Synnefo
693
* Documentation: New scale-out guide, with distinct node roles,
694
  for mass Synnefo deployments
695

    
696
Astakos
697
-------
698

    
699
* Support multiple authentication methods
700

    
701
  * Classic (username/password), Shibboleth, LDAP/Active Directory,
702
    Google, Twitter, LinkedIn
703
  * Users can enable/disable auth methods, and switch between them
704

    
705
* Introduce a UUID as a global identifier for users, throughout Synnefo
706

    
707
  * The UUID remains constant as the user enables/disables login methods
708

    
709
* Allow users to modify their email address freely
710
* Per-user, per-resource accounting mechanism (quotaholder)
711
* Full quota support, with per-user, per-resource quotas, based on quotaholder
712
* Projects: Users can create and join Projects
713

    
714
  * Projects grant extra resources to their members
715

    
716
* UI Enhancements for quotas and projects
717

    
718
  * distinct Usage tab, showing usage of individual resources
719
  * Project management UI
720
  * New Overview page
721

    
722
* refactored/improved /login endpoint used by desktop/mobile clients.
723
  * endpoint url is now exposed by `weblogin` service
724
  * clients should use unauthenticated identity/tokens api to resolve the 
725
    endpoint url
726
  * view only allows redirects to `pithos://` scheme urls
727
  * removed uuid from redirect parameters. Client should use authenticated 
728
    request to identity/tokens to retrieve user uuid.
729

    
730

    
731
Cyclades
732
--------
733

    
734
* Commission resources on quotaholder/Astakos
735
* Support mass creation of flavors
736
* Support for the ExtStorage disk template in Ganeti
737
* Query and report quotas in the UI
738
* Pass VM configuration parameters over a VM-side API (`vmapi`)
739

    
740
  * Do not pass sensitive data as Ganeti OS parameters
741
  * Keep sensitive data in memory caches (memcached) and
742
    never allow them to hit the disk
743

    
744
* Display additional backend information in helpdesk machines list
745
* Allow helpdesk users to search for an account using a known machine id
746
* Helpdesk actions are now logged using the synnefo's common login
747
  infrastructure
748

    
749
UI
750
^^
751
* Removed feedback endpoint. Feedback requests delegate to astakos feedback
752
  service. ``FEEDBACK_CONTACTS``, ``FEEDBACK_EMAIL_FROM`` settings removed, 
753
  and no longer used.
754
* ``UI_LOGIN_URL``, ``UI_GLANCE_URL``, ``COMPUTE_URL`` settings no longer 
755
  required to be set and are dynamically computed based on ``ASTAKOS_BASE_URL``
756
  and ``CYCLADES_BASE_URL`` settings.
757
* File group is no longer included in ssh keys personality metadata sent in 
758
  create vm calls.
759
  
760

    
761
Pithos
762
------
763

    
764
* Support storage of blocks on a RADOS backend, for Archipelago
765

    
766
  * new settings:
767
    PITHOS_RADOS_STORAGE, PITHOS_RADOS_POOL_BLOCKS, PITHOS_RADOS_POOL_MAPS
768

    
769
* X-Object-Public now contains full url (domain + proper component prefix + 
770
  file path)
771

    
772
* Rewritten support for public URLs, with admin-selectable length
773

    
774
  * new settings:
775
    PITHOS_PUBLIC_URL_SECURITY, PITHOS_PUBLIC_URL_ALPHABET
776

    
777
* Enable pithos backend to use external quotaholder component
778

    
779
  * new settings:
780
    PITHOS_USE_QUOTAHOLDER, PITHOS_QUOTAHOLDER_URL, PITHOS_QUOTAHOLDER_TOKEN,
781
    PITHOS_QUOTAHOLDER_POOLSIZE
782

    
783
* Moderated version debiting mechanism
784

    
785
  * new setting:
786
    PITHOS_BACKEND_FREE_VERSIONING
787

    
788
* Proxy Astakos user-visible services
789

    
790
  * new settings:
791
    PITHOS_PROXY_USER_SERVICES, PITHOS_USER_CATALOG_URL,
792
    PITHOS_USER_FEEDBACK_URL, PITHOS_USER_LOGIN_URL
793

    
794
Tools
795
-----
796

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