Statistics
| Branch: | Tag: | Revision:

root / Changelog @ 39ae7eb7

History | View | Annotate | Download (14.7 kB)

1
.. _Changelog:
2

    
3
Unified Changelog file for Synnefo versions >= 0.13
4
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
5

    
6
Since v0.13 most of the Synnefo components have been merged into a single
7
repository and have aligned versions.
8

    
9
v0.14next
10
=========
11

    
12
Released: UNRELEASED
13

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

    
17
* Integrate Pithos tests in continuous integration.
18

    
19
Cyclades
20
--------
21

    
22
* Implement Floating IP addresses, which are addresses that can be dynamically
23
  added and removed to a running server.
24

    
25
  * Implement the 'os-floating-ips' and 'os-floating-ip-pools' API extensions.
26
  * Implement 'snf-manage floating-ip-list' management command.
27
  * Add 'floating_ip_pool' attribute to networks. Such networks must exist to
28
    all Ganeti backends.
29

    
30
* Speed up server reconciliation, by performing parallel reconciliation for
31
  each backend.
32
* Implement IPv6 only networks.
33
* Implement 'resize' server action.
34

    
35
  * Implement the 'resize' server action, to change the flavor of a server.
36
  Only 'cpu' and 'memory' resizing is supported.
37

    
38
* Compute quotas for CPU and memory of running vms.
39
* Obsolete PUBLIC_USE_POOL setting, since Cyclades manages IP pool for all
40
  type of networks.
41
* Extend servers info API response with 'SNF:fqdn' attribute, and introduce
42
  CYCLADES_SERVERS_FQDN to set the template for servers FDQN.
43
* Extend servers info API response with 'SNF:port_forwarding' attribute,
44
  describing port fowarding rules (DNAT) that are applied to vms. The
45
  description of such rules is done via the new CYCLADES_PORT_FORWARDING
46
  setting.
47

    
48
Pithos
49
------
50

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

    
54
* Enforce container-level atomicity in (most) Pithos API calls.
55

    
56

    
57
.. _Changelog-0.14.5:
58

    
59
v0.14.5
60
=======
61

    
62
Released: Wed Aug  7 11:19:49 EEST 2013
63

    
64
Pithos
65
------
66

    
67
* Fix security issue with handling Pithos versions.
68

    
69

    
70
.. _Changelog-0.14.4:
71

    
72
v0.14.4
73
=======
74

    
75
Released: Mon Jul 29 12:24:22 EEST 2013
76

    
77
Pithos
78
------
79

    
80
* Fix bug in reconcile resources management command.
81

    
82

    
83
.. _Changelog-0.14.3:
84

    
85
v0.14.3
86
=======
87

    
88
Released: Thu Jul 25 12:22:47 EEST 2013
89

    
90
Synnefo-wide
91
------------
92

    
93
* Use the SYNNEFO_TRACE environmental variable to control whether the greenlet
94
  tracing code will get loaded or not.
95
* Split the HIDDEN_COOKIES setting in HIDDEN_HEADERS and HIDDEN_COOKIES, and
96
  add the MAIL_MAX_LEN setting, to limit the mail size for unhandled
97
  exceptions.
98

    
99

    
100
.. _Changelog-0.14.2:
101

    
102
Released: Fri Jul 12 13:13:32 EEST 2013
103

    
104
v0.14.2
105
=======
106

    
107
Cyclades
108
--------
109

    
110
* Add new setting PITHOS_BACKEND_POOL_SIZE, which configures the size
111
  of the pool of Pithos backends that are used by plankton.
112

    
113

    
114
.. _Changelog-0.14:
115

    
116
v0.14
117
=====
118

    
119
Released: Tue Jun 25 14:01:19 EEST 2013
120

    
121
Synnefo-wide
122
------------
123

    
124
* Create 'snf_django' Python package to hold common code for all Synnefo
125
  components.
126

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

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

    
136
* Deprecate CLOUDBAR_ACTIVE_SERVICE setting from all apps. 
137

    
138
* Common synnefo 404/500 templates (located in snf-webproject)
139

    
140
Astakos
141
-------
142

    
143
* Redesign of the accounting system (quotaholder) and integration into
144
  Astakos.
145

    
146
  * Simplified the quotaholder model; removed tables Entity and Policy; now
147
    table Holding contains limit and usage for every holding.
148
  * Extended table Holding, so that we can keep track of quota for every
149
    valid combination of holder (e.g. user), resource, and source (e.g. the
150
    default system or some specific project).
151
  * Refactored code for issuing and resolving commissions for robustness;
152
    added a 'force' option to bypass the upper limit check when issuing a
153
    commission.
154
  * Simplified syncing to the quotaholder; removed fields from models
155
    Project and ProjectMembership, previously needed for syncing; removed
156
    state PROJECT_DEACTIVATED from ProjectMembership.
157
  * Removed settings ASTAKOS_QUOTAHOLDER_URL, ASTAKOS_QUOTAHOLDER_TOKEN,
158
    and ASTAKOS_QUOTAHOLDER_POOLSIZE.
159

    
160
* API-related changes:
161

    
162
  * Implemented API calls for quota, resources, and commissions.
163
  * Moved all API calls under '/account/v1.0'.
164
  * Implemented the keystone API call POST /tokens under '/identity/v2.0'.
165

    
166
* Service and resource specification and handling:
167

    
168
  * Specified a format for defining services along with the API endpoints
169
    and the resources they expose. Migrated internal resource name by
170
    prefixing it with service name (e.g. 'vm' becomes 'cyclades.vm');
171
    renamed registered service 'pithos+' to 'pithos'.
172
  * Specified a procedure to register a Synnefo component, its services and
173
    their resources in astakos and set the resources' default base quota
174
    limit. Removed resource definitions from settings.
175
  * Moved service and resource presentation data out of the respective db
176
    models into a separate file of UI constants.
177

    
178
* Converted the limit on pending applications from a setting to a quotable
179
  resource. Converted the related user setting to a user-specific base quota
180
  limit. Deprecated model UserSetting; removed setting
181
  ASTAKOS_PENDING_APPLICATION_LIMIT.
182

    
183
* Changes in locking strategy:
184

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

    
190
* Changes in views:
191

    
192
  * Replaced custom transaction context with a simple decorator for managing
193
    transactions and a context 'ExceptionHandler', which logs and suppresses
194
    exceptions
195

    
196
* Added fine grain user auth provider's policies.
197

    
198
  * Administrator can override default auth provider policies to a specific 
199
    user or group of users.
200
  * Optionally a user can be assigned to a list of groups, based on the
201
    authentication method he choosed to signup.
202

    
203
* Removed explicit handling of SMTP errors on each email delivery. Exceptions 
204
  are now propagated to base django exception handler.
205

    
206
* Email used in html/email tempaltes which prompt user to contact for service 
207
  support prompts is now defined in ``CONTACT_EMAIL`` setting introduced in 
208
  snf-common settings.
209

    
210
* Improvements in user activation flow
211

    
212
  * User moderation now takes place after the user has verified his email
213
    address.
214
  * User model enriched with additional user state fields
215
  * Split activation email from moderation process. Administrator is required 
216
    to moderate user explicitly using the `user-modify --accept` or
217
    `user-modify --reject` commands.
218
  * Improved logging throught out user activation procedures.
219

    
220
* Remove deprecated AstakosUser model fields: `provider`,
221
  `third_party_identifier`
222

    
223
* Allow override of authentication provider messages using the following 
224
  format in setting names: ``ASTAKOS_<PROVIDER_MODULE>_<MSGID>_MSG``
225

    
226
* Cloudbar automatically tries to identify the active service based on window 
227
  location.
228

    
229
* Removing authentication provider view is now CSRF protected.
230

    
231
* New `API access` view, containing useful information to users on how to 
232
  access available Synnefo services API's.
233

    
234
* Remove of ASTAKOS_*_EMAIL_SUBJECT settings. All email subjects are now 
235
  defined in astakos.im.messages module. Overriding default values can be 
236
  achieved using custom gettext files or using astakos messages settings::
237
	
238
	#change of greeting email subject
239
  	ASTAKOS_GREETING_EMAIL_SUBJECT_MESSAGE = 'Welcome to my cloud'
240

    
241
* Remove ``ASTAKOS_ACTIVATION_REDIRECT_URL`` and ``ASTAKOS_LOGIN_SUCCESS_URL`` 
242
  from astakos .conf file. Settings are dynamically computed based on 
243
  ``ASTAKOS_BASE_URL``.
244

    
245
* Management commands:
246

    
247
  * Introduced new commands:
248
     * authpolicy-{add, list, remove, set, show}
249
     * group-{add, list}
250
     * component-{add, list, modify, remove}
251
     * reconcile-resources-astakos
252
     * resource-{export-astakos, import, modify}
253
     * service-{export-astakos, import, show}
254
  * Renamed commands:
255
     * astakos-quota to quota
256
     * user-update to user-modify
257
     * full-cleanup to cleanup-full
258
  * Removed commands:
259
     * astakos-init
260
     * invitation-{details, list}
261
     * project-sync
262
     * resource-{add, remove}
263
     * service-{add, remove, token-renew, update}
264
     * user-invite
265
     * user-set-initial-quota (integrated its functionality in user-modify and quota)
266
  * Added quota and project-related information in user-show command; added
267
    membership information in project-show.
268

    
269
Cyclades
270
--------
271

    
272
* Make 'type' attribute required for network create API request.
273
* Networks not created to all Ganeti backends upon creation, they are instead
274
  created to a backend only when a VM connects to the network.
275
* Add 'CYCLADES_ASTAKOSCLIENT_POOLSIZE' setting which tunes the size of the
276
  http connection pool to astakos.
277
* Remove 'CYCLADES_USER_CATALOG_URL' and 'CYCLADES_USER_FEEDBACK_URL' settings
278
* Remove CYCLADES_USE_QUOTAHOLDER, CYCLADES_QUOTAHOLDER_TOKEN,
279
  CYCLADES_QUOTAHOLDER_URL, CYCLADES_QUOTAHOLDER_POOLSIZE settings
280
* Rename 'cyclades-usage-verify' management command to
281
  'reconcile-resources-cyclades'. Also, remove 'cyclades-usage-reset' command,
282
  which is equivalent to 'reconcile-resources-cyclades --fix'.
283
* Rename 'cyclades-reconcile-commissions' management command to
284
  'reconcile-commissions-cyclades'.
285
* Remove obsolete 'MAX_VMS_PER_USER', 'MAX_NETWORKS_PER_USER',
286
  "VMS_USER_QUOTA" and "NETWORKS_USER_QUOTA" settings, since their usage
287
  is covered by Quotaholder.
288
* Remove obsolete setting 'API_ROOT_URL', since it is being covered by
289
  the use of CYCLADES_BASE_URL* Remove obsolete setting 'API_ROOT_URL', since
290
  it is being covered by 'CYCLADES_BASE_URL'.
291
* Remove obsolete settings GANETI_DISK_TEMPLATES and
292
  DEFAULT_GANETI_DISK_TEMPLATE
293

    
294
Cyclades helpdesk
295
-----------------
296

    
297
* Additional start/stop vm action
298
* Display extend backend info in vm's view
299
* Fixed IP lookup
300

    
301
Pithos
302
------
303

    
304
* Remove PITHOS_AUTHENTICATION_USERS setting, which was used to override
305
  astakos users.
306
* Remove 'PITHOS_USER_CATALOG_URL', 'PITHOS_USER_FEEDBACK_URL' and
307
  'PITHOS_USER_LOGIN_URL' settings.
308
* Remove PITHOS_USE_QUOTAHOLDER, PITHOS_QUOTAHOLDER_URL,
309
  PITHOS_QUOTAHOLDER_TOKEN and PITHOS_ASTAKOSCLIENT_POOLSIZE
310

    
311
Tools
312
-----
313

    
314

    
315
.. _Changelog-0.13:
316

    
317
v0.13
318
=====
319

    
320
Released: Wed Apr 10 18:52:50 EEST 2013
321

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

    
328
Synnefo-wide
329
------------
330

    
331
* Support for pooling throughout Synnefo
332

    
333
  * Pooled Django DB connections, Pithos backend connections, HTTP
334
    connections using single `objpool` package
335

    
336
* Improved management commands
337

    
338
  * Unified codebase for output of tables in JSON, CSV
339

    
340
* Bring most of Synnefo code inside a single, unified repository
341

    
342
  * support automatic Python and Debian package builds for individual commits
343
  * with automatic version generation
344

    
345
* Overhauling of Synnefo settings: renames and refactoring, for increased
346
  uniformity (in progress)
347
* Deployment: Standardize on gunicorn, with gevent-based workers
348
  and use of Green threads throughout Synnefo
349
* Documentation: New scale-out guide, with distinct node roles,
350
  for mass Synnefo deployments
351

    
352
Astakos
353
-------
354

    
355
* Support multiple authentication methods
356

    
357
  * Classic (username/password), Shibboleth, LDAP/Active Directory,
358
    Google, Twitter, LinkedIn
359
  * Users can enable/disable auth methods, and switch between them
360

    
361
* Introduce a UUID as a global identifier for users, throughout Synnefo
362

    
363
  * The UUID remains constant as the user enables/disables login methods
364

    
365
* Allow users to modify their email address freely
366
* Per-user, per-resource accounting mechanism (quotaholder)
367
* Full quota support, with per-user, per-resource quotas, based on quotaholder
368
* Projects: Users can create and join Projects
369

    
370
  * Projects grant extra resources to their members
371

    
372
* UI Enhancements for quotas and projects
373

    
374
  * distinct Usage tab, showing usage of individual resources
375
  * Project management UI
376
  * New Overview page
377

    
378
* refactored/improved /login endpoint used by desktop/mobile clients.
379
  * endpoint url is now exposed by `weblogin` service
380
  * clients should use unauthenticated identity/tokens api to resolve the 
381
    endpoint url
382
  * view only allows redirects to `pithos://` scheme urls
383
  * removed uuid from redirect parameters. Client should use authenticated 
384
    request to identity/tokens to retrieve user uuid.
385

    
386

    
387
Cyclades
388
--------
389

    
390
* Commission resources on quotaholder/Astakos
391
* Support mass creation of flavors
392
* Support for the ExtStorage disk template in Ganeti
393
* Query and report quotas in the UI
394
* Pass VM configuration parameters over a VM-side API (`vmapi`)
395

    
396
  * Do not pass sensitive data as Ganeti OS parameters
397
  * Keep sensitive data in memory caches (memcached) and
398
    never allow them to hit the disk
399

    
400
* Display additional backend information in helpdesk machines list
401
* Allow helpdesk users to search for an account using a known machine id
402
* Helpdesk actions are now logged using the synnefo's common login
403
  infrastructure
404

    
405
UI
406
^^
407
* Removed feedback endpoint. Feedback requests delegate to astakos feedback
408
  service. ``FEEDBACK_CONTACTS``, ``FEEDBACK_EMAIL_FROM`` settings removed, 
409
  and no longer used.
410
* ``UI_LOGIN_URL``, ``UI_GLANCE_URL``, ``COMPUTE_URL`` settings no longer 
411
  required to be set and are dynamically computed based on ``ASTAKOS_BASE_URL``
412
  and ``CYCLADES_BASE_URL`` settings.
413
* File group is no longer included in ssh keys personality metadata sent in 
414
  create vm calls.
415
  
416

    
417
Pithos
418
------
419

    
420
* Support storage of blocks on a RADOS backend, for Archipelago
421

    
422
  * new settings:
423
    PITHOS_RADOS_STORAGE, PITHOS_RADOS_POOL_BLOCKS, PITHOS_RADOS_POOL_MAPS
424

    
425
* X-Object-Public now contains full url (domain + proper component prefix + 
426
  file path)
427

    
428
* Rewritten support for public URLs, with admin-selectable length
429

    
430
  * new settings:
431
    PITHOS_PUBLIC_URL_SECURITY, PITHOS_PUBLIC_URL_ALPHABET
432

    
433
* Enable pithos backend to use external quotaholder component
434

    
435
  * new settings:
436
    PITHOS_USE_QUOTAHOLDER, PITHOS_QUOTAHOLDER_URL, PITHOS_QUOTAHOLDER_TOKEN,
437
    PITHOS_QUOTAHOLDER_POOLSIZE
438

    
439
* Moderated version debiting mechanism
440

    
441
  * new setting:
442
    PITHOS_BACKEND_FREE_VERSIONING
443

    
444
* Proxy Astakos user-visible services
445

    
446
  * new settings:
447
    PITHOS_PROXY_USER_SERVICES, PITHOS_USER_CATALOG_URL,
448
    PITHOS_USER_FEEDBACK_URL, PITHOS_USER_LOGIN_URL
449

    
450
Tools
451
-----
452

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