Statistics
| Branch: | Tag: | Revision:

root / docs / older / Changelog.cyclades-app @ 5ede2c79

History | View | Annotate | Download (28.2 kB)

1
Changelog
2
---------
3

    
4
v0.13.0
5
*******
6
  * Remove 'snf-admin' and 'snf-cloud' tools
7

    
8
v0.12.0
9
*******
10

    
11
FIXES:
12
  UI:
13
	* Fix unclosed DIV's and other minor html fixes.
14
	* Fix multiple network actions #2298
15
	* Handle multiple image users #2297
16
	* Fix double escaping of image details in vm creation view
17
	* Set ownership information for authorized_keys personality files
18

    
19

    
20
NEW FEATURES:
21
  UI:
22
	* Optionally group public network interfaces in one network view in ui 
23
	  Configurable by the UI_GROUP_PUBLIC_NETWORKS setting (defaults to True).
24
	* New setting UI_CHANGES_SINCE_ALIGMENT to allow aligment of the date used
25
	  by ui in api calls that support changes-since parameter.
26
	* New setting UI_AUTOMATIC_NETWORK_RANGE_FORMAT which is used by ui so
27
	  that automatic private network subnet does not conflict with exising 
28
	  user network subnets.
29
	* New settings added to allow fine grain of vm connection information:
30
		- UI_VM_HOSTNAME_FORMAT
31
		- UI_CONNECT_PROMPT_MESSAGES 
32
		- UI_EXTRA_RDP_CONTENT
33
	* New setting UI_CUSTOM_IMAGE_HELP_URL added. URL that links to a custom
34
	  image creation guide.
35
	* UI is now quota agnostic. Prevent user from creating network/vms that
36
	  would exceed the users available quotas.
37
	* Warn user against untrustworthy image owners #3012
38
	  
39

    
40
  HELPDESK:
41
  	* New helpdesk view (accessible from /helpdesk url) added. View is only 
42
	  accessible from users that belong to `helpdesk` group in astakos. 
43
	  Helpdesk view provides all available vms/networks information that is 
44
	  stored in cyclades database for a specific user id.
45
	  
46

    
47
  PLANKTON:
48
	* Pool connections to Pithos backend.
49
	* Add snf-manage image-{list, show} management commands
50

    
51
  LOGIC:
52
    * Support for suspended VMs
53
	* Add snf-manage queue-retry management command
54
	* Support for RabbitMQ dead-letter-exchange in dispatcher
55
	* Support for rejecting messages from rejecting messages from dispatcher
56
	* Process Ganeti messages about network reserved_ips
57

    
58

    
59
v0.11.0
60
*******
61

    
62
FIXES:
63
  LOGIC:
64
	* Fix bugs concerning reconcilliation of building vms (#2288, #2289)
65
	* Fix bug in dispatcher default file
66
  UI:
67
        * Fixed default UI settings importing synnefo settings:
68
	  Admin must set FEEDBACK_EMAIL_FROM explicitly.
69

    
70
NEW FEATURES:
71
  LOGIC:
72
	* Support multiple Ganeti backends and correlated management commands:
73
	  snf-manage [backend-add, backend-list, backend-modify, backend-remove]
74
	* Support for different types of networks (public routed, physical vlan,
75
	  MAC filtered)
76
	* IP Pool management
77
	* Enhance reconcile management command, to reconcile instance NICS
78
	* Management commands for reconciliation of networks and pools:
79
	  snf-manage [reconcile-networks, reconcile-pools]
80
	* New management commands for inspecting the state of network and server in
81
	  DB and all backends: snf-manage [network-inspect, server-inspect]
82
	* New management command for creating a network: snf-manage
83
	  network-create
84
	* New synnefo.db schema and data migrations
85
	* New settings for MAC-prefix pool: MAC_POOL_BASE, MAC_POOL_LIMIT
86
	* Replaced GANETI_NULL_LINK with PUBLIC_ROUTED_ROUTING_TABLE
87
	* Replaced GANETI_LINK_PREFIX with PRIVATE_PHYSICAL_VLAN_BRIDGE_PREFIX
88
	* Replaced GANETI_MAX_LINK_NUMBER with PRIVATE_PHYSICAL_VLAN_MAX_NUMBER
89
	* Replaced PRIVATE_MAC_FILTERED_BRIDGE
90
	* Add setting ENABLED_NETWORKS
91
	* Add setting SECRET_ENCRYPTION_KEY
92
	* Add settings for configuring each network type
93

    
94

    
95
v0.10.0
96
*******
97

    
98
* Improve dispatcher stale pid lockfile handling
99
* Changed default value of UI_MEDIA_URL
100

    
101
  To match debian package default path (`/static/ui/static/snf/`)
102

    
103
* Private networks quota setting added (``MAX_NETWORKS_PER_USER``)
104
* Simple per user networks/vms quota mechanism based on
105

    
106
  NETWORKS_USER_QUOTA/VMS_USER_QUOTA settings. 
107
  This allows you to override the global per user quota for the specific user 
108
  ids::
109
	
110
	# limit all users to 2 vms per user
111
  	MAX_VMS_PER_USER = 2
112
	
113
	# but let `user1@grnet.gr` and `user2@grnet.gr` to be able to create up to
114
	# 10 vms each.
115
	VMS_USER_QUOTA = {
116
		'user1@grnet.gr': 10, 
117
		'user2@grnet.gr': 10
118
	}
119
	
120
* Fix error message when no available network links can be created.
121
* Added setting for public network in Ganeti (``GANETI_PUBLIC_NETWORK``)
122
* Added setting for RabbitMQ endpoints (``AMQP_HOSTS``)
123
* Mechanism for serializing messages from ganeti based based on event timestamp
124
* Management command for inspecting messages of a queue (``queue-inspect``)
125
* new synnefo.db migration
126

    
127

    
128
v0.9.14
129
*******
130

    
131
Logic
132
^^^^^
133
* Remove messages that can not be handled from queue 
134

    
135
UI
136
^^
137
* Fix create view image selection, Refs (#2487)
138
* Display stats period selection in ui 
139
* Improve wording on vm create view 
140
* Console popup window fix for safari (#2463)
141
* Use 'id_rsa' as the filename for the downloaded private key (#2461)
142
* Changed the name of the auto generated public key ('my generated public key')
143

    
144

    
145
v0.9.13
146
*******
147

    
148
* Restore plankton backends from invalid commit
149

    
150

    
151
v0.9.12
152
*******
153

    
154
* Update copyright notice on ui footer 
155
* Improve readability of vm password in ui 
156
* Fix nonexistent image metadata handling 
157
* Fix multiple connect actions sent to the server (#2358)
158
* Fix history handling (#2299)
159
* Fix python-daemon required version 
160

    
161

    
162
v0.9.11
163
*******
164

    
165
* listservers management command unicode workaround
166

    
167

    
168
v0.9.10
169
*******
170

    
171
* Fallback to displaying the image id if it can not resolve it.
172
* Remove **detect-orphan-{servers,networks}.
173

    
174

    
175
v0.9.9
176
******
177

    
178
* Update footer links
179
* Fix create view default flavor
180
* Updated setup.py required packages versions
181

    
182

    
183
v0.9.8
184
******
185

    
186
* Fix empty user information in feedback mails
187

    
188

    
189
v0.9.7
190
******
191
* Verify VNC server settings in get_console
192
* Management commands additions / improvements / fixes
193
* UI application fixes/improvements
194
* Other minor bugfixes
195

    
196

    
197
v0.9.2
198
******
199
* ui.userdata migration fixes
200
* new synnefo.db migrations (fixes constrain issues)
201

    
202

    
203
v0.9.1
204
******
205
* Bumped version for debian package to upgrade from 0.9.0rc1
206

    
207

    
208
v0.9.0
209
******
210

    
211
* Removed link_static management command from synnefo.ui app
212
* Astakos integration in ui and api
213
* Cloudbar integration in ui
214

    
215

    
216
2011-11-29, v0.7.4
217
******************
218

    
219
FIXES:
220
	OKEANOS_INTRO:
221
		* News section
222

    
223

    
224
2011-10-21, v0.7.3
225
******************
226

    
227
FIXES:
228
	UI:
229
		* Fix two UI glitches with Firefox 3.6 (#1545, #1546)
230

    
231

    
232
2011-10-19, v0.7.2
233
******************
234

    
235
FIXES:
236
    UI:
237
	    * Fix regressions with flavor sorting and image size checking
238
		  (#1429, #1507)
239

    
240

    
241
2011-10-17, v0.7.1
242
******************
243

    
244
FIXES:
245
    UI:
246
        * Fix Enter/Esc on machine rename not working in the UI (#1501)
247
	    * Fix UI barfs if a VM is based on an Image with state=DELETED (#1494)
248
        * Fix UI user logout action does not work (#1497)
249
    Images:	
250
		* Fix erroneous reference to $(HELPER_DIR) in /etc/default /snf-image (#1498)
251
		* Fix typo in snf-image-helper ChangePassword task (#1500)
252
		* Show timestamps on execution of helper tasks in snf-image helper VM (#1499)
253
    Deployment:
254
		* Improve check for Ganeti master in snf-ganeti-eventd init script (#1323)
255
		* Fix snf-ganeti-eventd init script ignored defaults file (#1505)
256

    
257

    
258
2011-10-13, v0.7
259
****************
260

    
261
NEW FEATURES:
262
    UI:
263
        * From the ground-up rebuilt, refactored MVC-based UI (#1443)
264
        * Document all settings introduced due to UI refactoring (#1447)
265
        * UI asset files versioning (#1460)
266
        * Improve feedback on completed steps during machine creation (#1461)
267
    Images:
268
        * Completely re-engineered image deployment mechanism based on
269
          snf-image Ganeti OS provider, in isolated helper VM
270
        * Support public and private images (#555)
271
        * Support handling of VM filesystem, injection of arbitrary files
272
          on VM creation (#491)
273
        * Implement file injection as a task in snf-image (#1095)
274
        * Remove all-host based processing of (potentially user-provided)
275
          Images (#969)
276
    API:
277
        * Implement <personality> tag in OpenStack Compute API
278
          for file injection (#985, #1093)
279
        * Update API implementation for server/image metadata based on latest
280
          draft version of spec (#1403)
281
        * Support deletion of Flavors, support servers referring to
282
          inexistent (deleted) Flavors (#1157)
283
    Admin:
284
        * Addition of **meta option to snf-admin image for easy setting
285
          of image metadata values on image creation (#1107)
286
    Deployment:
287
        * Initial iteration of a system test suite, snf-burnin,
288
          for end-to-end testing of Synnefo deployments (#1155)
289
        * Re-engineered logging mechanism, for finer-grained control (#1033)
290
        * Add init script for snf-ganeti-eventd, fix Debian packaging (#1323)
291
        * Document removal of Flavors from circulation (#1472)
292
        * Add generic service unavailable template (#1359)
293

    
294

    
295
FIXES:
296
    UI:
297
        * Fix problems when reusing the Create machine wizard with IE8 (#997)
298
        * Fix problematic update of the networks tab and minor fixes (#861)
299
        * Fix "Connecting" and "progress" gif in networks tab (#863)
300
        * Fix inconsistencies on machine transitions between views (#917)
301
        * Fix IE rendering mode (#975)
302
        * Fix UI machine/network creation overlays style clutter (#979)
303
        * Have UI should reset action confirmations after state change (#981)
304
        * UI barfs due to exception on "New Machine" wizard (#1473)
305
        * UI throws exception on single-server view (#1483)
306
    API:
307
        * Fix incomplete constraints in ImageMetadata Model (#1255)
308
    Deployment:
309
        * Split initial_data.json to work around South "feature" (#1263)
310
        * Fix missing snf-ganeti-instance-image package dependency (#1319)
311
    Kamaki:
312
        * The kamaki client lib uses the root logger (#1337)
313
        * The kamaki client lib fails to set server metadata (#1399)
314
    Invitations:
315
        * FIx bug causing HTTP 500 error on /invitations/login (#1407)
316
        * Fix sort order of flavors, sort by actual characteristicts (#1429)
317
        * Fix display of error modal boxes, do notrefresh or display another
318
          error (#1433)
319
        * Fix positioning of machines in "Destroying" (#1437)
320
        * Fix Metadata button shown as clickable while it's not (#1441)
321
    Images:
322
        * Missing dependency on 'qemu-img' in snf-image-helper (#1484)
323
    Logic:
324
        * Fix messages left in the queue due to unknown Ganeti opcodes (#1492)
325

    
326

    
327
2011-09-15, v0.6.2
328
******************
329

    
330
FIXES:
331
    UI:
332
        * Fix handling of Images in state=DELETED,
333
          allow sorting and categorization of Images in the UI (#823)
334
        * Fix the "Create New wizard" does not honor selection of
335
          "small/medium/large" images (#1129)
336
    Admin:
337
        * Fix the admin interface throws exception on the
338
          Invitations tab (1105)
339
    API:
340
        * Make API responses uncacheable (#1091)
341
    Logic:
342
        * Fix The dispatcher leaving messages unprocessed for
343
          unknown Ganeti opcodes(#1111)
344

    
345
NEW FEATURES:
346
    Admin:
347
        * Support filtering based on state, support image registration
348
          with mandatory type argument, make all deletion operations
349
          set state to DELETED (#849)
350
    API:
351
        * Allow marking flavors as removed, honor deleted flag (#1055)
352

    
353

    
354
2011-09-13, v0.6.1
355
******************
356

    
357
FIXES:
358
    UI:
359
        * Make all AJAX requests to the API uncache-able
360

    
361

    
362
2011-09-12, v0.6
363
****************
364

    
365
NEW FEATURES:
366
    Admin:
367
        * Initial version of new Web-based admininstration panel, allows
368
          management of Synnefo entities directly on the DB (#849)
369
        * Allow setting https apiurl and token in cloud tool (#853)
370
    Deployment:
371
        * Overhauled reconciliation mechanism, unit tests (#1021, #811)
372
    UI:
373
        * Overhaul CPU/RAM/disk sliders in UI to be more intuitive (#843)
374
        * Support setting of small, medium large flavors in UI (#815)
375
        * Have the UI filter flavors, depending on image size (#817)
376
        * Better, error-specific handling of error codes in UI (#971)
377
        * Implement retrieval of authentication token from the UI (#977)
378
        * Re-worked invitation UI is more vocal on errors, supports pagination
379
          (#1039)
380
        * Support a list of UI-specific metadata keys to be copied from Image
381
          to newly-created Server (#847)
382
    Images:
383
        * Support dd-based deployment of Windows and Linux images, using only
384
          dd-based sequential I/O, get rid of ntfsclone (#965, #1007)
385

    
386
FIXES:
387
    UI:
388
        * Fix Opera failing with "too old changes-since value" when idle (#521)
389
        * Fix UI problems with Firefox 3.5.x (#781)
390
        * Fix server statistics not refreshing properly in the UI (#881)
391
        * Machine rename icon not visible on IE (#909)
392
        * Fix list view fail not updating machine state properly (#915)
393
        * Fix colors in "Error" state (#953)
394
        * Fix the confirmation bar disappearing at times (#955)
395
        * Hide all actions when in state "Destroying..." (#957)
396
        * Disable connect action when machine has no ip set (#983)
397
        * Update image details on last vm creation step overlay on IE (#1011)
398
        * Fix list view displays UI error when servers are updated on IE
399
          (#1013)
400
        * Make "Add invitation", remove invitation button appear clickable
401
          (#1019)
402
    Logic:
403
        * Fix Logic layer complaining about certain Ganeti opcodes (#1031)
404

    
405

    
406
2011-08-29, v0.5.5
407
******************
408

    
409
FIXES:
410
    Logic:
411
        * Bugfixes, reconnect to AMQP properly when connection drops,
412
          added more DEBUG- and INFO-level logging messages.
413

    
414

    
415
2011-07-27, v0.5.4
416
******************
417

    
418
FIXES:
419
    UI:
420
        * Numerous bugfixes, most in response to user feedback from
421
          the Alpha deployment
422
        * #813 (Minor UI issues), #857 (long machine names),
423
          #865 (problem when user has zero invitations),
424
          #873 (generic 404 template), #895 (default username in RDP file),
425
          #897 (show spinner for the public network), 899 (allow Connect
426
          from the network UI), #901 (cannot select password for copying
427
          with Chrome), #893 (firewall profile selection behaves as a single
428
          list for all servers), #903 (cannot copy paste IPv4 in icon view),
429
          #905 (Javascript throws exception when left idle), #907 (similar
430
          issue with #907), #913 (list view alert message)
431
    Images:
432
        * ntfsclone does not use all of the available space on the target (#879)
433
    Deployment:
434
        * Move fix_amqp_settings to queue system init code (#809)
435
    Admin:
436
        * snf-admin user invite is not non-ascii friendly (#943)
437
        * snf-user should show email addresses, even without any arguments (#871)
438

    
439
FEATURES:
440
    UI:
441
        * Show completion percentage when a machine is being built (#887)
442
    API:
443
        * Report percentage completion for machines in BUILD (#891)
444
    Images:
445
        * The image deployment layer should report completion to the API layer
446
          (#889)
447
    Deployment:
448
        * Drop ganeti-eventd & snf-ganeti-hook synnefo dependency (#691)
449
        * Split Synnefo Ganeti tools to separate project under snf-cyclades-gtools/
450
        * Import code for building Debian packages, refactor repository (#691)
451

    
452

    
453
2011-07-19, v0.5.3.1
454
********************
455

    
456
FIXES:
457
    API:
458
        * Fix bug with firewall code using inexistent, removed setting
459
    GUI:
460
        * Fix bug with invitations UI (#859)
461
        * Fix bug with feedback form submission raising HTTP 500
462
    Deployment:
463
        * Fix bug with error reporting by the invitations app
464

    
465

    
466
2011-07-19, v0.5.3
467
******************
468

    
469
FIXES:
470
    GUI:
471
        * Add separate LOGOUT_URL setting
472
          fixes bug with URL in invitations mail
473
    Deployment:
474
        * Recode invitations email in UTF-8
475
        * Use DEFAULT_FROM_EMAIL Django setting as From: header
476
          for all emails
477

    
478

    
479
2011-07-18, v0.5.2
480
******************
481

    
482
FIXES:
483
    GUI:
484
        * Improve IPv6 support in UI (#839, #841)
485
        * Improve Connect messages, propose username (#801)
486
        * Add "tag"/"value" headers in Modify tags popup (#845)
487
    API:
488
        * Support arbitrary arguments to RAPI CreateInstanceCall() (#835)
489
    Admin tool:
490
        * Support creation and modification of users, flavors, images (#827)
491
        * Support sending invitations from the command line
492

    
493

    
494
2011-07-14, v0.5.1
495
******************
496

    
497
FIXES:
498
    GUI:
499
        * non-standard dpi settings (#343)
500
        * many minor bugs (#717)
501
        * remove "Login again" button from Java VNC viewer (#731)
502
        * Fix no firewall settings shown for newly built machines (#753)
503
        * Fix handling of transitional "Destroying" state (#771)
504
        * Use well-formed, client- and server-specific messages
505
          for the Connect operation (#801)
506
        * Fix misaligned action labels in IE (#821)
507
          generic cross-browser compatibility fixes (#341)
508
    Logic:
509
        * fix dispatcher flushing AMQP queues (#719)
510
        * Support asynchronous VM deletion (#721)
511
        * Add backend prefix to all AMQP queues (#723)
512
        * Document workarounds for dispatcher daemonization problems
513
          when logging to stdout (#779)
514
    Images:
515
        * Fix ntfsclone causing excess I/O load due to verbose output (#729)
516
    API:
517
        * Have API use the flavor-defined disk sizes (#759)
518
        * Make backend disk templates (plain, drbd) configurable (#77&)
519
        * Work around Ganeti bug with getting VNC console info (#783)
520
        * Set serial_console=False explicitly on Ganeti backend (#785)
521
        * Allow exception info to propagate when VNC console allocation fails
522
          (#789)
523
        * Handle deletion of machines in ERROR when no Ganeti instance exists
524
          (#799)
525
    Backend:
526
        * Synchronize contrib/kvm-vif-bridge to agree with the API on the tags
527
          to use for firewall profiles (#789)
528

    
529
NEW FEATURES
530
    GUI:
531
        * Add themed form for invitations, integrate with UI (#439)
532
        * Add themed feedback form, integrate with API error window
533
          (~okeanos #7)
534
    Admin tool:
535
        * Add initial version of snf-admin tool for user, VM and image
536
          management (#727)
537

    
538

    
539
2011-07-01, v0.5
540
****************
541

    
542
NEW FEATURES
543
    GUI:
544
        * Overhauled icon and single-server view, updated color set
545
          (#651, #653, #667, #669, #673, #675, #677, #443, #631)
546
        * Added statistics, retrieves pre-processed PNGs from backend (#527)
547
        * Added buttons for modifier keys, custom theming to Java VNC client
548
          (#545)
549
        * Support single-click RDP-based connection to Windows VMs (#673)
550
        * Allow setting network firewall profiles on public interfaces (#661)
551
    Images:
552
        * Complete set of Linux distribution Images (Debian, Fedora, Ubuntu)
553
          (#493, #509)
554
        * Complete support for Windows machines (create, customize, boot)
555
          (#495)
556
    Logic:
557
        * Support centralized logging, logging.conf-based setup (#547)
558
    AAI:
559
        * Allow per-user setting of number of outgoing invitations (#439, #705)
560
        * Support "switch-user"-type functionality for helpdesk users (#665)
561
        * Support user logout in the UI, delete relevant tokens (#663)
562
    API:
563
        * Supports retrieval of statistics (#527)
564
        * Support maximum number of VMs per user (quota) (#703)
565
        * Extend API to support distinct firewall profiles, update backend (#659)
566
    Deployment:
567
        * BSD 2-clause Licensing (#581)
568
        * Initial translation of UI to Greek (#689)
569
        * Drop Django dependency in snf-ganeti-eventd and snf-ganeti-hook (#691)
570
          Synnefo dependency remains, already patched by ops, to be committed
571
        * Split settings.py to distinct files under settings.d/ (#693)
572
        * Use the Django email framework (#697)
573
        * Implemented statistics-gathering mechanism at the backend (#527)
574

    
575
FIXES:
576
    GUI:
577
        * Too many bug fixes to mention (#403, #429, #465, #473, #557, #589,
578
          #599, #605, #607, #609, #611, #613, #619, #621, #623, #625, #627,
579
          #629, #633, #635, #637, #639, #641, #643, #645, #647, #649, #655,
580
          #657, #681, #687, #699, #701, #707, #709)
581
        * Better cross-browser compatibility (#341)
582
        * Should work with relative URLs (#421)
583
    Images:
584
        * Set hostname in Linux VMs appropriately (#603)
585
    Logic:
586
        * Include EUI-64-derived IPv6 address in ganeti-net-status notifications
587
          (#615)
588
    Deployment:
589
        * Do not set nodes explicitly, use iallocator at Ganeti backend (#617)
590

    
591

    
592
2011-06-06, v0.4
593
****************
594

    
595
NEW FEATURES:
596
    GUI:
597
        * Support displaying info on and handling of public and private networks,
598
          with differential updates (#407, #469)
599
        * Support create new private network (#541), add machine to
600
          private network (#543)
601
        * Design and implement a completely revamped blue and orange
602
          color theme (#529, #531)
603
        * Implement improved add/edit metadata dialog with suggested values for
604
          keys (#535, #537)
605
        * Implement list of suggested keys in add server metadata dialog (#537)
606
        * Add full-screen Console window, themed as the rest of the UI (#497)
607
        * Implement single-machine view in the UI (#573)
608
        * Add user notification (spinner) on button clicks performing
609
          API actions (#471)
610
        * Full IE support, differential updates (#461)
611
    AAI:
612
        * Each token has its own expiration date, fix expiration of
613
          development test token (#483)
614
        * Support adding new users to the DB by invitation (#439)
615
    API:
616
        * Extend networks API, support differential updates for private nets (#569)
617
        * Support XML replies for the /networks API namespace (#553)
618
        * Implement mechanism for reconciliation of DB state with Ganeti backend
619
          state in case of AMQP failure (#505)
620
        * Support Ganeti link pooling for management of private networks (#513)
621
        * Support reception and processing of NIC configuration notifications
622
          from Ganeti over AMQP (#513)
623
    IMAGES:
624
        * Implement generic API<->Ganeti mechanism for passing custom VM parameters (#487)
625
        * Support selection and handling of OS images for VM customization (#489)
626
        * Support random selection and enforcement of root password on Linux VMs (#485)
627
    GANETI BACKEND:
628
        * Design and implement mechanism for handling network connection requests,
629
          based on link ids of virtual NICs (#411)
630
        * Support handling of public and private networks,
631
          based on NFDHCPD and custom KVM ifup scripts (#407, #411)
632

    
633
FIXES:
634
    GUI:
635
        * Remove extraneous GET /server/id/meta requests (#463)
636
        * Fix location of the "Create New" wizard in IE (#467)
637
        * Make numerous hardcoded strings translatable (#473)
638
        * Fix alignment of step names in "Create New" wizard (#475)
639
        * Fix OS icons not appearing in Opera (#477)
640
        * Fix correspondence of OS icons to icon URIs (#481)
641
        * Fix console action inoperable in list view (#497)
642
        * Fix HTTP errors from backend not reported correctly (#523)
643
        * Fix handling of API "UKNNOWN" status for servers (#571)
644
        * Add SVG-derived icons for Fedora in multiple resolutions (#587)
645
        * Various minor UI glitches (#583, #585, #591)
646
    API:
647
        * Fix entering Greek characters in fields failed (was due to
648
          problem with db creation parameters in MySQL) (#499)
649
        * Fix return erroneous 304 NOT MOTIFIED for GET /servers if only
650
          server metadata modified (#525)
651
        * Fix return erroneous "UNKNOWN" status under specific circumstances (#573)
652
        * Remove private network connections when a server is deleted (#579)
653

    
654

    
655
KNOWN DEFECTS:
656

    
657
    GUI:
658
        * Does not work with relative URLs (cannot deploy under subdir) (#421)
659
        * UI breaks if "Create New" called twice in quick succession (#609)
660
        * Esc/Enter keys do not work in edit metadata window (#605)
661
        * No spinner icon on outstanding requests for updates to private networks (#607)
662
        * Error window overflows in case of longer-than-usual traceback in
663
          "Details" field (#611)
664
        * Single-server view does not update properly (#613)
665
    IMAGES:
666
        * Image deployment mechanism does not set Linux hostname properly (#603)
667
    GANETI BACKEND:
668
        * No IPv6 reported from the Synnefo Ganeti hook to the API
669
          (backend, API and UI can all handle IPv6 though) (#615)
670
        * All VMs currently allocated to the first Ganeti node, since no
671
          allocator has been installed in the development Ganeti yet (#617)
672
    Deployment:
673
        * No rigorous testing of data migration, migrations in real-world
674
          conditions will probably fail (#503)
675

    
676

    
677
2011-05-10, v0.3
678
****************
679

    
680
FIXES/NEW FEATURES:
681

    
682
    GUI:
683
        * Report connection failures correctly, instead of a bogus 503 error (#427)
684
        * Support rename Virtual Machines using a nifty pencil icon (#429)
685
        * Fix complete failure of site with IE (starts, has known defects) (#431)
686
        * Support expanding box in icon view, containing metadata info (#375, #435, #441)
687
        * Support providing X-Auth-Token headers for authentication (#455)
688
        * Support Java applet-based popup for VNC console access (#391)
689
        * Initial implementation of "networks" tab interface mockup, no actual functionality (#415)
690
    AAI:
691
        * End-to-end Shibboleth support (#345)
692
    API:
693
        * Support creation, management and removal of private L2 networks (#409, #457)
694
        * Fix API implementation does not return unAuthorized cloud faults (#459)
695
        * Merge support for X-Auth-Token based authentication (#423)
696
    Logic:
697
        * Re-engineer messaging layer, migrate from 0mq to an AMQP-based infrastructure (#393)
698
        * Extended dispatcher, provides the context for executing business layer functions (#393)
699
        * Extended Ganeti event daemon, publish notifications over AMQP (#393)
700
        * Support a generic Synnefo hook in Ganeti, publish notifications over AMQP (#393, #397)
701
        * Extend logic layer, process NIC configuration notifications, update VM info in DB (#397)
702
    Deployment:
703
        * Add improved version of README.deploy, detailing node types in a Synnefo deployment
704

    
705
KNOWN DEFECTS:
706

    
707
    GUI:
708
        * Inoperative console action in list view (#497)
709
        * Various UI glitches under Chrome/Safari (wizard)
710
        * Serious functionality glitches with IE (no auto-refresh, no machine rename)
711
        * Serious UI glitches with non-standard dpi settings (#343)
712
        * Does not work with relative URLs (cannot deploy under subdir) (#421)
713
    API:
714
        * No Greek characters allowed in server names with the MySQL backend (#499)
715
    Deployment:
716
        * No rigorous testing of data migration, migrations in real-world conditions will probably fail (#503)
717

    
718

    
719
2011-04-19, v0.2.2
720
******************
721

    
722
Bug fix release:
723
    GUI:
724
        * Fix start operation breakage due to extra argument in API call (#433)
725

    
726

    
727
2011-04-19, v0.2.1
728
******************
729

    
730
Bug fix release:
731
    GUI:
732
        * Fix shutdown operation breakage due to extra argument in API call (#433)
733

    
734

    
735
2011-04-19, v0.2
736
****************
737

    
738
FIXES/NEW FEATURES:
739

    
740
    GUI:
741
        * Show transitional state when command is in progress ("Starting", etc) (#401)
742
        * Allow only "destroy" for machines being built (#399)
743
        * Show nice icons for the icon, list and single view (#389)
744
        * Show the VM configuration (flavor) in list view (#387)
745
        * Add Destroy action in icon view (#381)
746
        * Show spinner when action is in progress (#379)
747
        * Handle OS icons properly for Images and machines, user-controlled (#257)
748
        * Support modification of VM metadata (currently: only addition, removal) (#375)
749
        * Support machine rename (#307)
750
        * Show welcome screen when no VMs defined (#279)
751
        * Revamped "Create New" wizard (#83)
752
    API:
753
        * Return buildInProgress properly (#351)
754
        * Loads of new unit tests (#417)
755
        * Support OOB console access over VNC using vncauthproxy
756
            - Run as daemon, support automatic port selection (#419)
757
        * Refactor ganeti-0mqd
758
            - Run as daemon, receive messages from Ganeti hooks, publish over 0mq
759
    Deployment:
760
        * Add initial version of README.deploy, detailing service dependencies
761
        * Add support for database migrations, using Django South (#371)
762
        * Install continuous integration platform (Jenkins), run tests automatically (#383)
763

    
764
KNOWN DEFECTS:
765

    
766
    GUI:
767
        * Minor visual problems with Firefox 3.5 (#403)
768
        * Major cross-browser compatibility problems (no IE support) (#431, #341)
769
        * Requires installation under /, does not work with relative URLs (#421)
770
        * Incorrect 503 return code when server is unreachable (#427)