Statistics
| Branch: | Tag: | Revision:

root / Changelog @ a6d847dc

History | View | Annotate | Download (28.9 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.15rc5
10
========
11

    
12
Released: UNRELEASED
13

    
14
Astakos
15
-------
16

    
17
* Fix request authorisation code failures due to Unicode issue:
18
  https://code.grnet.gr/issues/4971
19

    
20
Pithos
21
------
22

    
23
* Extend API to optionally enforce a specific content disposition type
24
  in view and public requests: https://code.grnet.gr/issues/5019
25

    
26
* Fix bulk operation (delete/copy/move) failures in overpopulated
27
  containers/folders: https://code.grnet.gr/issues/5119
28

    
29
* Fix performance issue due to missing index
30

    
31
Cyclades
32
--------
33

    
34
* Fix a few occurrences of HTTP 500 errors being triggered due to insufficient
35
 validation of incoming requests in the Network API
36
* Speed up some API calls by fixing the relevant DB queries
37

    
38
.. _Changelog-0.15rc4:
39

    
40
v0.15rc4
41
========
42

    
43
Released: Wed Jan 15 10:56:10 EET 2014
44

    
45
Synnefo-wide
46
------------
47

    
48
* Integrate Pithos tests in continuous integration.
49

    
50
* Change astakosclient to accept AUTH_URL instead of BASE_URL
51
  ASTAKOS_BASE_URL settings has been removed from Pithos and Cyclades
52
  and has been replaced with ASTAKOS_AUTH_URL. Both Pithos and Cyclades
53
  proxy the Astakos services under ASTAKOS_PROXY_PREFIX path.
54
  ASTAKOS_PROXY_PREFIX by default has a value of '_astakos'.
55
  More specifically, Astakos' identity service is proxied under
56
  '_astakos/identity', Astakos' account service is under '_astakos/account'
57
  and Astakos' ui service is under '_astakos/ui'.
58

    
59
* Add 'mail_admins' handler to 'django.request' logger in order to send email
60
  notifactions to users listed in 'ADMINS' setting about unhandled exceptions
61
  in the code.
62

    
63
* Extend astakosclient to request and validate OAuth 2.0 access tokens
64

    
65
* Change response status code from 400 (Bad Request) to 405 (Not allowed
66
  method) in case of an unexpected request method.
67

    
68
Astakos
69
-------
70

    
71
* Changes in project schema:
72

    
73
  * A Project entry is created when submitting an application for a new
74
    project, rather than on approval. Its state is dependent on the state
75
    of its `reference' application (current definition). Lock Project rather
76
    than Chain (the latter is semantically obsolete).
77

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

    
82
  * Improve recording of project, application, and membership actions.
83

    
84
* Implement API calls for projects.
85

    
86
* Store the base URL of a component. Deployer should provide it when adding
87
  a new component. Service endpoints originating from a component are
88
  expected to match its base URL; otherwise, a warning is issued.
89
  Re-registration with `snf-component-register' affects both the base and
90
  the ui URL.
91

    
92
* Changes in resource and quota handling:
93

    
94
  * New resources are registered with unlimited default base quota,
95
    represented by 2**63-1.
96
  * Each newly accepted user copies the default value for all resources
97
    as their own base quota. A base quota is considered 'custom' if its
98
    value differs from the default.
99
  * Changing resource's default quota affects the base quota *only* of
100
    future users.
101
  * Resource definition got flags 'api_visible' and 'ui_visible',
102
    replacing flag 'allow_in_projects'. They control whether a user can
103
    access these resources. The system internally always accounts for
104
    all resources, and a user can get off quota even for a resource that
105
    is not visible.
106

    
107
* Remove API call GET /account/v1.0/authenticate in favor of
108
  POST /identity/v2.0/tokens.
109

    
110
* Export basic statistics about Astakos service from '/admin/stats/detail' API
111
  endpoint. Access to this endpoint is only allowed to users that belong to
112
  the Astakos groups that are defined in the
113
  'ASTAKOS_ADMIN_STATS_PERMITTED_GROUPS' setting. Statistics are also availble
114
  from 'snf-manage stats-astakos' management command.
115

    
116
* Implement OAuth 2.0 Authorization Code Grant
117
  Add API calls for authorization code and access token generation
118

    
119
* Add API call for validating OAuth 2.0 access tokens
120

    
121
* **Shibboleth module** Extract unique identifier from the
122
  ``REMOTE_USER`` header.
123

    
124
* Automatically fill third party signup form fields when available by the
125
  the third party provider.
126

    
127
* Omit validation issues for non-required metadata values received from the 
128
  third party authentication provider.
129

    
130
* Management commands:
131

    
132
  * Introduced new commands:
133
	* component-show
134
	* quota-list (replacing quota, supports various filters)
135
	* quota-verify (replacing quota)
136
	* oauth2-client-add (register OAuth 2.0 client)
137
	* oauth2-client-list (list registered oauth 2.0 clients)
138
	* oauth2-client-remove (remove OAuth 2.0 client)
139
  * Changed commands:
140
	* component-add got options --base-url and --ui-url
141
	* resource-modify --limit became --default-quota
142
	* user-modify can operate on multiple users with --all and --exclude
143
	* user-modify --set-base-quota became --base-quota
144
  * Removed commands:
145
	* quota
146
	* resource-import (subsumed by service-import)
147
	* resource-export-astakos (subsumed by service-export-astakos)
148

    
149
Cyclades
150
--------
151

    
152
* Major changes to Cyclades networks:
153

    
154
  * Implement 'cyclades_network' service, containing the /networks, /ports,
155
    /subnets and /floatingips API endpoints under '/network/v2.0'. The old
156
    /networks API of 'cyclades_compute' (under /compute/v2.0) is
157
    removed.
158
  * Implement `snf-manage subnet-{create, list, modify, inspect}' management
159
    commands for handling of subnets.
160
  * Implement `snf-manage port-{create, list, remove, inspect}' management
161
    commands for handling of ports.
162
  * Add two new settings, 'CYCLADES_FORCED_SERVER_NETWORKS' and
163
    'CYCLADES_DEFAULT_SERVER_NETWORKS' to control the networks that newly
164
    created servers will be connected.
165

    
166
* Implement Floating IP addresses, which are IPv4 addresses that can be
167
  dynamically added and removed to a running server.
168

    
169
  * Add new 'cyclades.floating_ip' resource.
170
  * Implement 'snf-manage floating-ip-{create,list,remove,attach,detach}'
171
    management commands to handle floating IPs.
172
  * Add 'floating_ip_pool' attribute to networks to mark networks that can
173
    be used as floating IP pools.
174

    
175
* Implement 'resize' server action.
176

    
177
  * Implement the 'resize' server action, to change the flavor of a server.
178
    Only 'cpu' and 'memory' resizing is supported.
179

    
180
* Compute quotas for CPU and memory of running vms.
181

    
182
  * Change 'cyclades.cpu' and 'cyclades.ram' resources to represent the CPU
183
    and RAM for running VMs. Total CPU and RAM usage is represented by new
184
    'cyclades.total_cpu' and 'cyclades.total_ram' resources.
185

    
186
* Refer to Ganeti NICs by their name instead of their index.
187

    
188
  * Make cyclades give a unique name to each Ganeti NIC. NICs are refered by
189
    their unique name and not by their index inside the VM that are connected
190
    to.
191

    
192
* Support firewall profile for all NICs of an instance. Change firewall
193
  settings to be filled with the unique name of the NIC. The affected settings
194
  are the GANETI_FIREWALL_{ENABLED, DISABLED, PROTECTED}_TAG settings.
195
* Add accounting for public IP addresses that is accessible via `snf-manage
196
  ip-list` management command and via the helpdesk app.
197
* Implement IPv6 only networks.
198
* Extend servers info API response with 'SNF:fqdn' attribute, and introduce
199
  CYCLADES_SERVERS_FQDN to set the template for servers FDQN. Remove
200
  'UI_VM_HOSTNAME_FORMAT' setting.
201
* Extend servers info API response with 'SNF:port_forwarding' attribute,
202
  describing port fowarding rules (DNAT) that are applied to vms. The
203
  description of such rules is done via the new CYCLADES_PORT_FORWARDING
204
  setting.
205
* Speed up server reconciliation, by performing parallel reconciliation for
206
  each backend.
207
* Change --dhcp option of network management commands from a flag to a boolean
208
  value, e.g. --dhcp=True
209
* Remove 'ARCHIPELAGO_BACKENDS' setting used to distinquish between backends
210
  that hosted only archipelago backends. Instead allocation is based on which
211
  disk-templates are enabled in each backend.
212
* Implement 'snf-manage server-remove' management command.
213
* Move reconciliation of IP pools from 'reconcile-networks' to
214
  'reconcile-pools'. The IP pool reconciliation does not reconcile the IP
215
  pools with Ganeti. Instead it checks if the pool is consistent with the
216
  IPs that are used by instances.
217
* Do not automatically release externally reserved IPs if they are released
218
  from a Ganeti backend. Management of externally reserved IPs must be
219
  performed from Cyclades with 'network-modify' command.
220
* Export basic statistics about Cyclades Service from '/admin/stats/detail'
221
  API endpoint. Access to this endpoint is only allowed to users that belong
222
  to the Astakos groups that are defined in the 'ADMIN_STATS_PERMITTED_GROUPS'
223
  setting.  Statistics are also availble from 'snf-manage stats-cyclades'
224
  management command.
225
* Support enforcing quota through command 'enforce-resources-cyclades'.
226
* Remove command 'resource-export-cyclades' subsumed by
227
  'service-export-cyclades'.
228
* Obsolete PUBLIC_USE_POOL setting, since Cyclades manages IP pool for all
229
  type of networks.
230
* Encrypt / decrypt the instance id / hostname in the  stats URL in
231
  snf-cyclades-app and snf-stats-app, using the 'CYCLADES_STATS_SECRET_KEY'
232
  and 'STATS_SECRET_KEY' respectively.
233
* Add support for snf-vncauthproxy-1.5 and the setting
234
  'CYCLADES_VNCAUTHPROXY_OPTS', which configures the extra options / arguments
235
  needed by the newer version of snf-vncauthproxy. Support for older versions
236
  of snf-vncauthproxy has been dropped. See also the upgrade notes for Synnefo
237
  and snf-vncauthproxy-1.5.
238
* Remove 'DEFAULT_ROUTING_TABLE' setting. If a link for an IP_LESS_ROUTED
239
  network is not specified, the link will be uniquely named
240
  'snf-link-$network_id'.
241
* Extend flavors with 'allow_create' attribute. Flavors that have this
242
  attribute unset cannot be used by users to create new servers.
243

    
244

    
245
Cyclades UI
246
-----------
247

    
248
- Retrieve all networks information from the introduced cyclades network
249
  service.
250
- New IPs pane from which user can manage floating IPs.
251
- Redesign public keys overlay as an additional pane view.
252
- Split networking configuration into an additional step in machine create
253
  wizard.
254
- Display forced networks and choices of the available floating IPs which will
255
  be assigned to the created machine.
256
- Support for machine resize action. Explicit handling when machine is started
257
  by displaying an utility shutdown button within the resize overlay.
258
- Machine IPs toggling subview in icon/single views.
259
- Replace IPv4/IPv6 with machine's FQDN in icon/single view. When no FQDN can
260
  be resolved display a message. Message can be configured using the introduced
261
  ``UI_NO_FQDN_MESSAGE``. Setting ``UI_VM_HOSTNAME_FORMAT`` has been removed
262
  and no longer used.
263
- Respect ``SNF:task_state`` machine attribute in order to improve machine
264
  status display.
265
- Append software version as a url parameter in HTML static files in order
266
  to force browser cache invalidation between versions.
267
- Configurable Google fonts base url. Fonts base url can be changed usint the
268
  ``SYNNEFO_FONTS_BASE_URL`` setting.
269
- Regression fix: Display reboot required notification on machine firewall
270
  parameters.
271
- Handling of ``GANETI_USE_HOTPLUG`` setting. Do not allow live network actions
272
  when setting is set to ``False``.
273
- Double escaping fix in machine create wizard images list and machine details
274
  subview.
275
- Fix image ordering in machine create wizard.
276
- New setting ``UI_SSH_SUPPORT_OSFAMILY_EXCLUDE_LIST``. A list of image OS
277
  families for which ui will disable ssh key injection in machine wizard.
278
- Setting ``UI_SUPPORT_SSH_OS_LIST`` removed and no longer used.
279
- Group public networks by name if setting ``UI_GROUP_PUBLIC_NETWORKS`` is set 
280
  to True.
281
- Setting ``UI_GROUPED_PUBLIC_NETWORK_NAME`` has been deprecated and no longer 
282
  used.
283

    
284

    
285
Cyclades Userdata
286
-----------------
287

    
288
- Maximum allowed length of ssh key content. Configurable from the 
289
  ``USERDATA_SSH_KEY_MAX_CONTENT_SIZE`` setting.
290

    
291

    
292
Pithos
293
------
294

    
295
* Rewrite tests.
296
* Performance optimizations in object listing.
297
* Introduce backend method decorator for handling transaction management if no
298
  transaction is initiated from the frontend.
299
* Fix Internal Server Errors https://code.grnet.gr/issues/4501 &
300
  https://code.grnet.gr/issues/4502.
301
* Fix REQUEST ENTITY TOO LARGE request failure during move operations
302
  https://code.grnet.gr/issues/4154.
303
* Fix FORBIDDEN request failure while listing implicitly shared objects
304
  https://code.grnet.gr/issues/4131.
305
* Fix issue with the computed size of an updated object.
306
* Reply with the Merkle hash in the ETag header if MD5 is deactivated.
307
* Reply with FORBIDDEN (403) to public listing requests performed by non path
308
  owners.
309
* Change response status to NOT FOUND (404) while trying to delete an
310
  already deleted object.
311
* Change SQLAlchemy version to 0.7
312
* Change view authorization
313
  The pithos views do not use the cookie information for user authentication.
314
  They request (from Astakos) and use a short-term access token for a
315
  specific resource.
316
* Remove PITHOS_ASTAKOS_COOKIE_NAME setting, since it is no longer useful
317
* Add PITHOS_OAUTH2_CLIENT_CREDENTIALS setting to authenticate the views with
318
  astakos during the resource access token generation procedure
319
* Add PITHOS_UNSAFE_DOMAIN setting to restrict file serving endpoints to a
320
  specific host
321
* Added new 'file-show' management command
322
* Remove command 'resource-export-pithos' subsumed by 'service-export-pithos'.
323

    
324
.. _Changelog-0.14.10:
325

    
326
v0.14.10
327
=======
328

    
329
Released: Tue Nov 26 11:03:37 EET 2013
330

    
331
Cyclades
332
-------
333

    
334
* This is the first release to support Ganeti 2.8. Support for older versions
335
  of Ganeti is dropped.
336
* Use Ganeti opportunistic locking to achive parallelized instance creations
337
  in the same backend. Add setting 'GANETI_USE_OPPORTUNISTIC_LOCKING' to
338
  enable the use of this feature.
339
* Fix warning message while getting object permissions to appear only when
340
  path is None and the object has permissions
341
* Add name to newly created NICs and the corresponding firewall tags.
342

    
343
.. _Changelog-0.14.9:
344

    
345
v0.14.9
346
=======
347

    
348
Released: Mon Nov 11 12:13:31 EET 2013
349

    
350
* Astakos: Fix minor problems with logging in the Astakos module, which could
351
  lead to unexpected exceptions
352

    
353
.. _Changelog-0.14.8:
354

    
355
v0.14.8
356
=======
357

    
358
Released: Fri Nov  8 17:25:08 EET 2013
359

    
360
Synnefo-wide
361
------------
362

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

    
370
Cyclades
371
--------
372

    
373
* On VM creation, pass the hashmap of the image (pithosmap://) instead of the
374
  image URL (pithos://). Access to the Pithos DB by Ganeti nodes is no longer
375
  required.
376
* Workaround race between server creation and server deletion. This will be
377
  fixed properly by updating Ganeti to support the 'depends' attribute for
378
  OP_INSTANCE_REMOVE.
379

    
380
Astakos
381
-------
382

    
383
* For Shibboleth logins, store all attributes along with the user in the DB.
384

    
385
.. _Changelog-0.14.7:
386

    
387
v0.14.7
388
=======
389

    
390
Released: Wed Sep 18 17:50:12 EEST 2013
391

    
392
Cyclades
393
--------
394

    
395
* Fix bug in helpdesk view
396

    
397
.. _Changelog-0.14.6:
398

    
399
v0.14.6
400
=======
401

    
402
Released: Wed Sep 18 16:18:58 EEST 2013
403

    
404
Pithos
405
------
406

    
407
* Substitute the PITHOS_BACKEND_QUOTA setting with two
408
  distinct settings: PITHOS_BACKEND_ACCOUNT_QUOTA &
409
  PITHOS_BACKEND_CONTAINER_QUOTA
410
* Set PITHOS_BACKEND_CONTAINER_QUOTA default value to 0 (unlimited)
411
* Fix bug that resulted in DB deadlocks.
412

    
413
Cyclades
414
--------
415

    
416
* Fix bug in snf-dispatcher that resulted in servers to be deleted from the
417
  DB even if the corresponding Ganeti job failed.
418

    
419
Branding
420
--------
421

    
422
* Add new BRANDING_FOOTER_EXTRA_MESSAGE setting.
423

    
424

    
425
.. _Changelog-0.14.5:
426

    
427
v0.14.5
428
=======
429

    
430
Released: Wed Aug  7 11:19:49 EEST 2013
431

    
432
Pithos
433
------
434

    
435
* Fix security issue with handling Pithos versions.
436

    
437

    
438
.. _Changelog-0.14.4:
439

    
440
v0.14.4
441
=======
442

    
443
Released: Mon Jul 29 12:24:22 EEST 2013
444

    
445
Pithos
446
------
447

    
448
* Fix bug in reconcile resources management command.
449

    
450

    
451
.. _Changelog-0.14.3:
452

    
453
v0.14.3
454
=======
455

    
456
Released: Thu Jul 25 12:22:47 EEST 2013
457

    
458
Synnefo-wide
459
------------
460

    
461
* Use the SYNNEFO_TRACE environmental variable to control whether the greenlet
462
  tracing code will get loaded or not.
463
* Split the HIDDEN_COOKIES setting in HIDDEN_HEADERS and HIDDEN_COOKIES, and
464
  add the MAIL_MAX_LEN setting, to limit the mail size for unhandled
465
  exceptions.
466

    
467

    
468
.. _Changelog-0.14.2:
469

    
470
Released: Fri Jul 12 13:13:32 EEST 2013
471

    
472
v0.14.2
473
=======
474

    
475
Cyclades
476
--------
477

    
478
* Add new setting PITHOS_BACKEND_POOL_SIZE, which configures the size
479
  of the pool of Pithos backends that are used by plankton.
480

    
481
Pithos
482
------
483

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

    
487

    
488
.. _Changelog-0.14:
489

    
490
v0.14
491
=====
492

    
493
Released: Tue Jun 25 14:01:19 EEST 2013
494

    
495
Synnefo-wide
496
------------
497

    
498
* Create 'snf_django' Python package to hold common code for all Synnefo
499
  components.
500

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

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

    
510
* Deprecate CLOUDBAR_ACTIVE_SERVICE setting from all apps.
511

    
512
* Common synnefo 404/500 templates (located in snf-webproject)
513

    
514
Astakos
515
-------
516

    
517
* Redesign of the accounting system (quotaholder) and integration into
518
  Astakos.
519

    
520
  * Simplified the quotaholder model; removed tables Entity and Policy; now
521
    table Holding contains limit and usage for every holding.
522
  * Extended table Holding, so that we can keep track of quota for every
523
    valid combination of holder (e.g. user), resource, and source (e.g. the
524
    default system or some specific project).
525
  * Refactored code for issuing and resolving commissions for robustness;
526
    added a 'force' option to bypass the upper limit check when issuing a
527
    commission.
528
  * Simplified syncing to the quotaholder; removed fields from models
529
    Project and ProjectMembership, previously needed for syncing; removed
530
    state PROJECT_DEACTIVATED from ProjectMembership.
531
  * Removed settings ASTAKOS_QUOTAHOLDER_URL, ASTAKOS_QUOTAHOLDER_TOKEN,
532
    and ASTAKOS_QUOTAHOLDER_POOLSIZE.
533

    
534
* API-related changes:
535

    
536
  * Implemented API calls for quota, resources, and commissions.
537
  * Moved all API calls under '/account/v1.0'.
538
  * Implemented the keystone API call POST /tokens under '/identity/v2.0'.
539

    
540
* Service and resource specification and handling:
541

    
542
  * Specified a format for defining services along with the API endpoints
543
    and the resources they expose. Migrated internal resource name by
544
    prefixing it with service name (e.g. 'vm' becomes 'cyclades.vm');
545
    renamed registered service 'pithos+' to 'pithos'.
546
  * Specified a procedure to register a Synnefo component, its services and
547
    their resources in astakos and set the resources' default base quota
548
    limit. Removed resource definitions from settings.
549
  * Moved service and resource presentation data out of the respective db
550
    models into a separate file of UI constants.
551

    
552
* Converted the limit on pending applications from a setting to a quotable
553
  resource. Converted the related user setting to a user-specific base quota
554
  limit. Deprecated model UserSetting; removed setting
555
  ASTAKOS_PENDING_APPLICATION_LIMIT.
556

    
557
* Changes in locking strategy:
558

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

    
564
* Changes in views:
565

    
566
  * Replaced custom transaction context with a simple decorator for managing
567
    transactions and a context 'ExceptionHandler', which logs and suppresses
568
    exceptions
569

    
570
* Added fine grain user auth provider's policies.
571

    
572
  * Administrator can override default auth provider policies to a specific
573
    user or group of users.
574
  * Optionally a user can be assigned to a list of groups, based on the
575
    authentication method he choosed to signup.
576

    
577
* Removed explicit handling of SMTP errors on each email delivery. Exceptions
578
  are now propagated to base django exception handler.
579

    
580
* Email used in html/email tempaltes which prompt user to contact for service
581
  support prompts is now defined in ``CONTACT_EMAIL`` setting introduced in
582
  snf-common settings.
583

    
584
* Improvements in user activation flow
585

    
586
  * User moderation now takes place after the user has verified his email
587
    address.
588
  * User model enriched with additional user state fields
589
  * Split activation email from moderation process. Administrator is required
590
    to moderate user explicitly using the `user-modify --accept` or
591
    `user-modify --reject` commands.
592
  * Improved logging throught out user activation procedures.
593

    
594
* Remove deprecated AstakosUser model fields: `provider`,
595
  `third_party_identifier`
596

    
597
* Allow override of authentication provider messages using the following
598
  format in setting names: ``ASTAKOS_<PROVIDER_MODULE>_<MSGID>_MSG``
599

    
600
* Cloudbar automatically tries to identify the active service based on window
601
  location.
602

    
603
* Removing authentication provider view is now CSRF protected.
604

    
605
* New `API access` view, containing useful information to users on how to
606
  access available Synnefo services API's.
607

    
608
* Remove of ASTAKOS_*_EMAIL_SUBJECT settings. All email subjects are now
609
  defined in astakos.im.messages module. Overriding default values can be
610
  achieved using custom gettext files or using astakos messages settings::
611

    
612
	#change of greeting email subject
613
  	ASTAKOS_GREETING_EMAIL_SUBJECT_MESSAGE = 'Welcome to my cloud'
614

    
615
* Remove ``ASTAKOS_ACTIVATION_REDIRECT_URL`` and ``ASTAKOS_LOGIN_SUCCESS_URL``
616
  from astakos .conf file. Settings are dynamically computed based on
617
  ``ASTAKOS_BASE_URL``.
618

    
619
* Management commands:
620

    
621
  * Introduced new commands:
622
     * authpolicy-{add, list, remove, set, show}
623
     * group-{add, list}
624
     * component-{add, list, modify, remove}
625
     * reconcile-resources-astakos
626
     * resource-{export-astakos, import, modify}
627
     * service-{export-astakos, import, show}
628
  * Renamed commands:
629
     * astakos-quota to quota
630
     * user-update to user-modify
631
     * full-cleanup to cleanup-full
632
  * Removed commands:
633
     * astakos-init
634
     * invitation-{details, list}
635
     * project-sync
636
     * resource-{add, remove}
637
     * service-{add, remove, token-renew, update}
638
     * user-invite
639
     * user-set-initial-quota (integrated its functionality in user-modify and quota)
640
  * Added quota and project-related information in user-show command; added
641
    membership information in project-show.
642

    
643
Cyclades
644
--------
645

    
646
* Make 'type' attribute required for network create API request.
647
* Networks not created to all Ganeti backends upon creation, they are instead
648
  created to a backend only when a VM connects to the network.
649
* Add 'CYCLADES_ASTAKOSCLIENT_POOLSIZE' setting which tunes the size of the
650
  http connection pool to astakos.
651
* Remove 'CYCLADES_USER_CATALOG_URL' and 'CYCLADES_USER_FEEDBACK_URL' settings
652
* Remove CYCLADES_USE_QUOTAHOLDER, CYCLADES_QUOTAHOLDER_TOKEN,
653
  CYCLADES_QUOTAHOLDER_URL, CYCLADES_QUOTAHOLDER_POOLSIZE settings
654
* Rename 'cyclades-usage-verify' management command to
655
  'reconcile-resources-cyclades'. Also, remove 'cyclades-usage-reset' command,
656
  which is equivalent to 'reconcile-resources-cyclades --fix'.
657
* Rename 'cyclades-reconcile-commissions' management command to
658
  'reconcile-commissions-cyclades'.
659
* Remove obsolete 'MAX_VMS_PER_USER', 'MAX_NETWORKS_PER_USER',
660
  "VMS_USER_QUOTA" and "NETWORKS_USER_QUOTA" settings, since their usage
661
  is covered by Quotaholder.
662
* Remove obsolete setting 'API_ROOT_URL', since it is being covered by
663
  the use of CYCLADES_BASE_URL* Remove obsolete setting 'API_ROOT_URL', since
664
  it is being covered by 'CYCLADES_BASE_URL'.
665
* Remove obsolete settings GANETI_DISK_TEMPLATES and
666
  DEFAULT_GANETI_DISK_TEMPLATE
667

    
668
Cyclades helpdesk
669
-----------------
670

    
671
* Additional start/stop vm action
672
* Display extend backend info in vm's view
673
* Fixed IP lookup
674

    
675
Pithos
676
------
677

    
678
* Remove PITHOS_AUTHENTICATION_USERS setting, which was used to override
679
  astakos users.
680
* Remove 'PITHOS_USER_CATALOG_URL', 'PITHOS_USER_FEEDBACK_URL' and
681
  'PITHOS_USER_LOGIN_URL' settings.
682
* Remove PITHOS_USE_QUOTAHOLDER, PITHOS_QUOTAHOLDER_URL,
683
  PITHOS_QUOTAHOLDER_TOKEN and PITHOS_ASTAKOSCLIENT_POOLSIZE
684

    
685
* Enforce container-level atomicity in (most) Pithos API calls.
686

    
687

    
688
Tools
689
-----
690

    
691

    
692
.. _Changelog-0.13:
693

    
694
v0.13
695
=====
696

    
697
Released: Wed Apr 10 18:52:50 EEST 2013
698

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

    
705
Synnefo-wide
706
------------
707

    
708
* Support for pooling throughout Synnefo
709

    
710
  * Pooled Django DB connections, Pithos backend connections, HTTP
711
    connections using single `objpool` package
712

    
713
* Improved management commands
714

    
715
  * Unified codebase for output of tables in JSON, CSV
716

    
717
* Bring most of Synnefo code inside a single, unified repository
718

    
719
  * support automatic Python and Debian package builds for individual commits
720
  * with automatic version generation
721

    
722
* Overhauling of Synnefo settings: renames and refactoring, for increased
723
  uniformity (in progress)
724
* Deployment: Standardize on gunicorn, with gevent-based workers
725
  and use of Green threads throughout Synnefo
726
* Documentation: New scale-out guide, with distinct node roles,
727
  for mass Synnefo deployments
728

    
729
Astakos
730
-------
731

    
732
* Support multiple authentication methods
733

    
734
  * Classic (username/password), Shibboleth, LDAP/Active Directory,
735
    Google, Twitter, LinkedIn
736
  * Users can enable/disable auth methods, and switch between them
737

    
738
* Introduce a UUID as a global identifier for users, throughout Synnefo
739

    
740
  * The UUID remains constant as the user enables/disables login methods
741

    
742
* Allow users to modify their email address freely
743
* Per-user, per-resource accounting mechanism (quotaholder)
744
* Full quota support, with per-user, per-resource quotas, based on quotaholder
745
* Projects: Users can create and join Projects
746

    
747
  * Projects grant extra resources to their members
748

    
749
* UI Enhancements for quotas and projects
750

    
751
  * distinct Usage tab, showing usage of individual resources
752
  * Project management UI
753
  * New Overview page
754

    
755
* refactored/improved /login endpoint used by desktop/mobile clients.
756
  * endpoint url is now exposed by `weblogin` service
757
  * clients should use unauthenticated identity/tokens api to resolve the
758
    endpoint url
759
  * view only allows redirects to `pithos://` scheme urls
760
  * removed uuid from redirect parameters. Client should use authenticated
761
    request to identity/tokens to retrieve user uuid.
762

    
763

    
764
Cyclades
765
--------
766

    
767
* Commission resources on quotaholder/Astakos
768
* Support mass creation of flavors
769
* Support for the ExtStorage disk template in Ganeti
770
* Query and report quotas in the UI
771
* Pass VM configuration parameters over a VM-side API (`vmapi`)
772

    
773
  * Do not pass sensitive data as Ganeti OS parameters
774
  * Keep sensitive data in memory caches (memcached) and
775
    never allow them to hit the disk
776

    
777
* Display additional backend information in helpdesk machines list
778
* Allow helpdesk users to search for an account using a known machine id
779
* Helpdesk actions are now logged using the synnefo's common login
780
  infrastructure
781

    
782
UI
783
^^
784
* Removed feedback endpoint. Feedback requests delegate to astakos feedback
785
  service. ``FEEDBACK_CONTACTS``, ``FEEDBACK_EMAIL_FROM`` settings removed,
786
  and no longer used.
787
* ``UI_LOGIN_URL``, ``UI_GLANCE_URL``, ``COMPUTE_URL`` settings no longer
788
  required to be set and are dynamically computed based on ``ASTAKOS_BASE_URL``
789
  and ``CYCLADES_BASE_URL`` settings.
790
* File group is no longer included in ssh keys personality metadata sent in
791
  create vm calls.
792

    
793

    
794
Pithos
795
------
796

    
797
* Support storage of blocks on a RADOS backend, for Archipelago
798

    
799
  * new settings:
800
    PITHOS_RADOS_STORAGE, PITHOS_RADOS_POOL_BLOCKS, PITHOS_RADOS_POOL_MAPS
801

    
802
* X-Object-Public now contains full url (domain + proper component prefix +
803
  file path)
804

    
805
* Rewritten support for public URLs, with admin-selectable length
806

    
807
  * new settings:
808
    PITHOS_PUBLIC_URL_SECURITY, PITHOS_PUBLIC_URL_ALPHABET
809

    
810
* Enable pithos backend to use external quotaholder component
811

    
812
  * new settings:
813
    PITHOS_USE_QUOTAHOLDER, PITHOS_QUOTAHOLDER_URL, PITHOS_QUOTAHOLDER_TOKEN,
814
    PITHOS_QUOTAHOLDER_POOLSIZE
815

    
816
* Moderated version debiting mechanism
817

    
818
  * new setting:
819
    PITHOS_BACKEND_FREE_VERSIONING
820

    
821
* Proxy Astakos user-visible services
822

    
823
  * new settings:
824
    PITHOS_PROXY_USER_SERVICES, PITHOS_USER_CATALOG_URL,
825
    PITHOS_USER_FEEDBACK_URL, PITHOS_USER_LOGIN_URL
826

    
827
Tools
828
-----
829

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