-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathChangelog
1663 lines (1242 loc) · 55.9 KB
/
Changelog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
.. _Changelog:
Unified Changelog file for Synnefo versions >= 0.13
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Since v0.13 most of the Synnefo components have been merged into a single
repository and have aligned versions.
.. _Changelog-0.21:
v0.21
=====
Released: UNRELEASED
Cyclades
--------
* Add support for virtual machine tags.
* Add 'adminPass' API parameter on server creation to support setting
administrative password by the user
Astakos
--------
* Support default project (tenant) per user.
.. _Changelog-0.20:
v0.20
=====
Released: Tue Mar 20 16:33:05 EET 2018
Synnefo-wide
------------
* snf-manage now records the synnefo logs to synnefo.log, similar to gunicorn.
* snf-manage now drops priviledges to 'synnefo:synnefo' user by default.
Cyclades
--------
* Add 'SNF:key_names' API parameter on server creation to support multiple
SSH key-pairs injection while spawning a VM.
* Add Volume type specs which provide extra Key-Value based specs to volume
types.
* Volume type specs prefixed with 'GNT-EXTP:' are propagated to Ganeti ext-
storage scripts.
* Add 'public' flag to Flavors and FlavorAccess to assign access to flavors
only to specific projects.
* Add Flavor specs which provide extra Key-Value based specs to flavors
* Introduce a policy module to gradually collect all resource access
checks.
* Migrate transaction handling to Django's atomic(). Use a transaction
context to schedule external operations on transaction exit.
* Move transactions to the logic level, so that all clients (API,
snf-manage, admin app) consistently run the same operations.
* Add mechanism for creating, listing, updating and deleting rescue images
* Add support for rescuing and unrescuing VMs using system defined rescue
images.
* Use ssh key API in UI instead of file injection when selecting ssh keys.
* Implement Openstack's userdata injection mechanism (user_data parameter) in
server create API
Astakos
-------
* Fix multiple local authentication providers in user accounts.
* Return only active project memberships when authenticating user token
* Migrate transaction handling to Django's atomic().
Tools
-----
* Extend snf-burnin to include testing of volumes and keypairs
Admin
-----
* Add functionality to set user's email, release shibboleth provider, and
enable local provider
.. _Changelog-0.19:
v0.19
=====
Released: Fri Jun 23 10:45:02 EEST 2017
Synnefo-wide
------------
* Add support for Debian Jessie. This is the only platform targeted for this
release.
* Migrate all components to newer version of Django (1.7) and update
dependencies versions.
* Remove South in favor of native Django migrations.
* Drop 'django' mode in gunicorn in favor of 'wsgi'.
* Fix instances of select_for_update that occurred outside transactions.
* Use a date-aware JSON session serializer instead of Pickle.
* Change default logging setup to log Synnefo's log messages to a separate
logfile.
Pithos
------
* Use new django class StreamingHttpResponse to stream responses.
* Fix execution of backend tests.
Cyclades
--------
* Adapt setting caches to the new django format. Introduce settings
PUBLIC_STATS_CACHE, VM_PASSWORD_CACHE, VMAPI_CACHE. Remove settings
PUBLIC_STATS_CACHE_POPULATE_INTERVAL, VMAPI_CACHE_BACKEND,
VMAPI_CACHE_KEY_PREFIX.
* Propagate VM owner change to the VM's NICs and attached IPs.
* Fix recording associated user to the IP history. Provide a script to fix
IP history inconsistencies due to prior VM owner changes.
* Add 'public' flag for Ganeti backends and Project-Backend mappings used in
VM allocation policy.
* Add new default FilterAllocator for choosing appropriate VM backends
* Add an Allocator's filter to place servers on backends based on
Project-Backend association.
* Implement keypairs API for management of SSH keys and support 'key_name'
parameter in server creation.
* For OpenStack compatibility, advertise the 'image', 'network', and 'volume'
endpoint URLs without a version suffix. The clients should take care to
construct the proper versioned URL.
* Expose /os-floating-ips under compute for compatibility with older
OpenStack clients.
* Provide version listing and details for endpoints.
Deploy
------
* Upgrade to target Debian Jessie.
CI
--
* Target Debian Jessie as CI base platform.
.. _Changelog-0.18.1:
v0.18.1
=======
Released: Wed Oct 12 12:32:04 EEST 2016
Astakos
-------
* Introduce 'overquota' state on project memberships, which can be used by
third-party plugins in order to implement a quota reclamation policy.
Setting `QUOTA_POLICY_MODULE` specifies the plugin that updates the
overquota state on project actions.
* Support suspending and unsuspending project memberships.
* User deactivation now automatically suspends user's system project, owned
projects, and project memberships. Reactivation unsuspends them.
* Add script `fix_deactivated_users` to suspend projects for previously
deactivated users.
* Send an informative email to the user's current email address when they
request to change their email.
* Add option to control whether to send e-mail to the user when suspending them
Cyclades
--------
* Command `enforce-resources-cyclades` now provides an option to "soft"
enforce dangerous resources. There is now no default list of resources to
check; the administrator must provide one.
* Make dispatcher use DISPATCHER_LOGGING_SETUP from synnefo settings to setup
its logging. Remove previous settings.
* Add a raven processor to filter sensitive information sent to Sentry using
the Sentry logging handler.
* Imporove SynnefoExceptionReporterFilter to better cleanse request body.
* Make eventd detect Ganeti Master failovers and allow having multiple eventd
instances running in the Ganeti cluster.
Admin
-----
* Add mechanism to generate css files on packaging
* Improve the displayed data in the tables
* Display more information regarding the enabled authentication providers
* Display pending modifications of projects
* Add the action 'modify user e-mail' in the Admin interface
* Display data related with the modification of users' e-mails like 'e-mail
pending verification', 'e-mail change requested at', 'initially accepted
e-mail'
Pithos
------
* Optimize object latest listing query
.. _Changelog-0.17:
v0.17
=====
Released: Thu Apr 28 12:35:46 EEST 2016
Synnefo-wide
------------
* Fixed postgresql connection pooling. The pool manager now closes the
real connection objects when pool verify fails.
Astakos
-------
* Support LDAP authentication by creating the 'LDAP' authentication
provider.
* Add 'autoverify' provider policy to automatically verify the user's
email. Obsolete the 'SKIP_EMAIL_VERIFICATION' setting.
* Extend authentication provider mechanism to support mapping arbitraty
provider's attributes to user attributes. Also, support making these
attributes to be 'forced' by the provider so that user cannot change
them (e.g. the user's email).
* Minor changes so that 'local' authentication provider is treated
in the same way as all other providers.
* Add the UUIDs of the projects that the user is member in the response
of 'identity/v2.0/tokens' API call.
* Display uuid in expired projects list.
* Fix checkbox behaviour in project members list.
* Add project_creation_date column in `snf-manage` projects list.
* Fixed `how-to` broken link in projects view.
* Extend tokens API response with user's projects.
* Fixed 'Unlimited' value handling in project submission form.
* Return 302 instead of 301 on logout to avoid the user-agents caching the
logout redirect.
Cyclades
--------
* Implement detachable volumes support.
* Support for detached volume creation.
* Support for VM attach/detach volume actions.
* Implement shared resources among members of a project.
* Extend Cyclades API with the 'shared_to_project' field, indicating whether
a resource is shared to the members of the project that the resource belongs
to.
* Extend `reassign` API call with the 'shared_to_project' field that can be
used to share or unshare a resource to project members.
* Update Cyclades API to return all resources that are accessible to a user,
and not only those that are owned by the user.
* Update snf-manage commands to show whether a resource is shared or not.
* Fix RAM rounding error in `snf-manage flavor-create`.
* `snf-manage` `server-create`, `floating-ip-create` and `network-create`
commands now accept a project argument.
* Show creation time in `snf-manage server-inspect`.
* Detect and handle disk resizes from Ganeti.
* Include the disks of the instance on snf-ganeti-eventd when
processing an OP_INSTANCE_GROW_DISK Ganeti job.
* Extend the log records of all actions to include the user that
performed them.
* Extend the ports that are accessible to the user with the ports that are
having a floating IP that is accessible to the user.
* Add an snf-manage command (helper-servers-sync) that syncs helper servers
across Ganeti backends.
* Add the 'CYCLADES_SHARED_RESOURCES_ENABLE' option to enable/disable the
feature of sharing a resource to the members of the project that
the resource belongs to.
* Create an allocator interface in order to allow the creation of different
backend allocation algorithms. Default backend allocator setting is changed
to `synnefo.logic.allocators.default_allocator.DefaultAllocator`.
* Implement an interface for memory caching.
* Add the option to retrieve the front page statistics
from the memory cache.
* Add the `PUBLIC_STATS_CACHE_POPULATE_INTERVAL` setting.
* Store the password in the cache on VM creation until the user
confirms that they stored it.
* Add config options for setting the dispatcher's logging severity:
`DISPATCHER_LOGGING_LEVEL`, `AMQP_LOGGING_LEVEL`, `LOGIC_LOGGING_LEVEL`
in `20-snf-cyclades-app-dispatcher.conf`.
* Change dispatcher's default logging level to "INFO" (was: "DEBUG").
Cyclades UI
-----------
* Extend Cyclades UI to work with shared resources
* Add option to share/unshare a resource in the project reassign view.
* Add icons to distinquish resources that are either shared by the user
or a shared to the user.
* Properly handle ghost resources, which are resources that are visible to
the user only because they are related with some shared resource, but the
user has no access to them. Add tooltip to explain this to the user.
* Custom image sections. Allow images uploaded by designated users to be
displayed in separate sections in image listing overlay.
* Include machine icon images for bitnami
* Show public networks without a floating IP in IPs wizard
* Display "No machine" option when creating volume from image source.
* Display "No machine" option when the user has no machines created.
* Add confirmation message on the password modal. If the user doesn't
confirm that they stored the password, the password modal will appear
each time they try to access their virtual machine.
Pithos
------
* Add new setting for block module arguments
* Fix access check for public files.
* The fact that a public URL for a file exists doesn't
grant an arbitrary user with read access to the file.
Pithos UI
---------
* Pithos UI has been rewritten from scratch. Some of the features of the new
UI are the following:
* Based on modern web technologies (EmberJS, Foundation CSS)
* Revised styles and responsive layout
* Improved perfomance
* Enhanced user experience
* Styles themes
* Container management support
* Astakos quota API integration
* Chunked upload support
The introduced web application is now packaged as `snf-ui-app`. The new
package replaces the previous one, `snf-pithos-webclient` which from now on
is deprecated and should no longer be used.
Admin
-----
* Enable OR operation between same type query terms
Admin UI
--------
* Update tips and tricks content.
CI
--
* Add an option (--local-package-dir) to upload local Debian packages to
the snf-deploy local packages directory.
* New config option to enable ssh forwarding.
Management
----------
* Allow specification of project when creating a new network, floating IP
or server using (cli) snf-manage.
* Add the `floating-ip-show` command.
Deploy
------
* Create helper VMs when running deploy.
* Remove the x2go repo.
Development
-----------
* Install/uninstall the required packages for development on the
install/uninstall scripts.
* Switch to the django-nose test runner.
.. _Changelog-0.16.2:
v0.16.2
=======
Released: Fri Jul 24 14:13:24 EEST 2015
Changelog
---------
* Switch to a more verbose Changelog style, which includes more details
regarding the commits of each relase. A summary of the changes is provided
with the NEWS file.
Admin
-----
* Handle unicode chars in VM search field.
* Check usage to decide if resource is useful.
* Display last login per auth provider if more than one exists.
* Display 'comments for review' in project applications.
* Display effective limit in user's quotas.
* Fix IP updated time since timestamp.
* Fetch image info using UUID and version.
Astakos
-------
* Always accept terms for users created via admin API.
* Allow admin to update the 'signed terms' date for a user via the 'signTerms'
admin API action.
* Improve admin API user creation process, in case that user moderation is
disabled.
* Provide South migration to fix initialized state of enrolled memberships.
* Handle empty project limit in application submission form.
* Include terminated projects in project list views.
* Display UUID in expired projects list.
* Fix checkbox behaviour in project members list.
* Fix style error in project creation form.
* Add project_creation_date column to list.
* Fix UI project tests.
* Route oa2 models to Astakos database in Synnefo DB router.
* Catch a couple of potential 500 errors.
* Fix auth_provider limit enforcement.
Bunrin
------
* Fix a race in public network detach.
* Handle exceptions and retry during SSH.
* Create private networks without a gateway.
CI
--
* Pin Debian Wheezy image during ci runs.
* Fix CI image flavor regexp.
Cyclades
--------
* Round up memory sizes in flavor create.
* Change volume ownership on server-modify.
Cyclades UI
-----------
* Add UI_IMAGE_LISTING_USERS setting to enable custom defined image sections
in image selection view of the VM creation wizard. The sections are defined
using the LISTING_SECTION image property.
* Change default private network gateway to 'None'.
* Include machine icon images for bitnami.
Deploy
------
* Substitute IPs with FQDNs.
* Fix CA creation.
* Use domain in ServerName.
* Update qa-init.sh for Ganeti.
* Disable v6 on loopback interface.
Documentation
-------------
* Update install guide to use Debian Wheezy.
Pithos
------
* Remove obsolete billing code
* Fix off-by-one error in Pithos API tests.
.. _Changelog-0.16.1:
v0.16.1
=======
Released: Fri Feb 6 12:05:44 EET 2015
Astakos
-------
* Include additional validation checks in project modification form to ensure
members limit is always set lower or equal than total limit.
* Prevent members limit from automatically being set to unlimited in project
modification form.
* Exclude terminated projects from responses of project list and user quota
api calls.
* Improve UI handling of inactive, terminated and empty projects.
* Change default pagination in projects list view.
Cyclades UI
-----------
* Improve handling of terminated projects in reassign view.
* Remove the COPYRECT encoding from the preferred noVNC client encodings, and
prefer TIGHT_PNG by default.
* Fix handling of SSH keys and password customization steps to images that
do not support them, e.g. snapshots.
* Add OS icons for Scientific Linux and CoreOS.
* Change project reassign button style for VMs and boot disks.
Stats
-----
* Aggregate the traffic of every VM interface in the net stats graphs.
Branding
--------
* Add CLOUDBAR_HOME_URL setting to allow Cloudbar home icon customization.
.. _Changelog-0.16:
v0.16
=====
Released: Tue Nov 11 10:44:57 EET 2014
Synnefo-wide
------------
* Replace accumulative projects with pool projects:
* Projects are now viewed as a source of finite resources. A member can
reserve a part of these resources up to a specified limit.
* Base quota are now offered through a special purpose user-specific system
project, identified with the same UUID as the user.
* Each actual resource (Cyclades VM, network, floating IP and Pithos
container) is now also associated with a project besides the owner.
* In resource creation, project defaults to the user-specific system
project, if not specified otherwise. It is also possible to change the
project assignment of an existing resource.
* All existing resources have been assigned to the respective
user-specific system projects.
* Logging mechanism for Synnefo management commands
* Log all stdout and stderr output of every invocation of snf-manage,
on unique filenames under a given directory.
* Add a new setting in the snf-common package, namely 'LOG_DIR', which
specifies the directory to be used by Synnefo components to write
their log files.
* Rename argument names of Synnefo management commands
* All Synnefo management commands now use 'user/flavor/image/network'
as argument names, instead of 'userid/user-id/owner/flavor-id/image
-id/network-id', for consistency across commands.
Astakos
-------
* Decouple projects from applications:
* Support project creation (by the system) and modification (by a
privileged user) without the need to submit/approve an application.
* View applications as modifications. When a project is uninitialized
(e.g. an application for a new project is pending), no further
modification is allowed.
* Applications are removed from the API. A project's last application is
only accessible as part of the project details.
* Decouple project state from application state; they can be combined by
an API client, if needed.
* Changes concerning quota and pool projects:
* A project must provide limits for all registered resources. On project
activation, resources missing are automatically completed using a
skeleton.
* Field 'uplimit' of registed resources is exposed as 'system_default' and
provide the skeleton for user-specific system projects. A new field
'project_default' is introduced to act as a skeleton for conventional
projects.
* The quotaholder now also records project quota besides user quota. The
two types of holders are distinguished with a prefix: 'user:' and
'project:'.
* The quota API is extended to make project quota available.
* Removed setting 'ASTAKOS_PROJECTS_VISIBLE'; we now always display
projects in the Astakos menu.
* Projects can be set 'private', making it accessible only to its owner and
members.
* Admin users API
* Extend astakos identity API to support user management functionality.
* Admin API related settings
* ``ADMIN_API_ENABLED``
Whether or not the admin api endpoints will be enabled.
* ``ADMIN_API_PERMITTED_GROUPS``
A list of group names for which users which belong to any of
them be granted full access to the admin API endpoints.
* Updated projects integration in UI
* Display both max per member/total in group quota in project views.
* Enhanced usage view to display individual resource usage details for
each of the projects the user is associated with.
* Display project usage statistics in project details view.
* Display system projects in admin project list view.
* Handle display of infinite resource quota values.
* Explicitly specify the lists in which every notification will be sent.
Cyclades
--------
* Introduce Volumes and Snapshots:
* Implement 'cyclades_volumes' service, containing the /volumes, /types,
and /snapshots API endpoints under '/volumes/v2.0'.
* Implement 'snf-manage volume-{create, list, show, modify, inspect, remove}'
management commands for handling volumes.
* Implement 'snf-manage snapshot-{create, list, show, modify}' management
commands for handling snapshots.
* Implement 'volume-type-{create, list, modify, show, remove}' management
commands for handling volume types.
* Implement reconciliation for stale snapshots.
* Add new settings:
* GANETI_MAX_DISKS_PER_INSTANCE: Maximum number of disks that each Ganeti
instance can have.
* CYCLADES_VOLUME_MAX_SIZE: The maximum allowed size (in GB) for Cyclades
volumes.
* CYCLADES_SNAPSHOTS_ENABLED: Enable/Disable the snapshots feature
altogether at the API level.
* Integrate Cyclades resources with Astakos projects.
* Extend API calls that create resources with the 'project' attribute
in order to assign resources to the specified project.
* Implement API calls for reassigning resources to a new project.
* Export the project that a resource belongs in the 'tenant_id' API
attribute.
* Add support for snf-vncauthproxy 1.6 (configurable VNC console types).
* Change the ``CYCLADES_VNCAUTHPROXY_OPTS`` setting to a list of dictionaries
and support configurable vncauthproxy proxy addresses (added in
snf-vncauthproxy-1.6).
* Add support for more types of VM console:
* Modify the current 'console' action to support VNC WebSockets (requires
snf-vncauthproxy=1.6).
* Add support for the three OpenStack Compute console actions
(VNC, RDP, Spice). RDP and Spice are currently not implemented.
* Update Cyclades to work with Pithos with integrated Archipelago v2
mapfiles.
* Include functionality for checking the status of the Cyclades update path,
which includes Ganeti, AMQP, snf-ganeti-eventd and snf-dispatcher. This
functionality is implemented as part of the snf-dispatcher and can be used
by passing the '--status-check' option.
* Add setting `CYCLADES_VM_MAX_METADATA` to limit the maximum number of
metadata per vm.
* Add setting `CYCLADES_VOLUME_MAX_METADATA` to limit the maximum number of
metadata per volume.
* Use common -u/--user option to specify the UUID or email of the user, for
all management commands.
* Store basic information about images that have been used to create servers,
in order to preserve this information even if images are deleted from
Pithos.
* Make 'snf-ganeti-eventd' tolerate failures when processing Ganeti jobs. The
daemon will not crash but continue to run in order to process jobs that can
be processed.
* Update 'backend-list' command to not count the free IPs from networks that
are drained.
* Fix the'network-inspect' command to not contain externally reserved IPs
in th number of available IPs.
* Add `GANETI_DISKS_WAIT_FOR_SYNC` setting to decide whether Ganeti will
wait for the disk mirror to sync (`--no-wait-for-sync` Ganeti option).
* Fix mishandling of `MAX_CIDR_BLOCK` setting. Allowed CIDR sizes
changed from (MAX_CIDR_BLOCK, 29) to [MAX_CIDR_BLOCK, 29].
* Fix various minor bugs.
* Remove stale '--public' and '--user' options from 'image-show' and
'snapshot-show' management commands.
Cyclades UI
-----------
* In sync with the updated astakos projects API
* Include a project select widget within all resource create views, to let user
decide the project that the created resources will be assigned to.
* Display resource assigned project in resource list views.
* Let user reassign resource project.
* Volumes API integration.
* Introduce the Disks list/create views.
* Display machine attached disks in icon/single machine views.
* Use ``CYCLADES_VOLUME_MAX_SIZE`` setting to determine the
maximum allowed disk size.
* Integrate volume snapshots
* Include available snapshots in disk/vm create wizards.
* Disk snaphot create actions.
* The ui snapshoting functionality (snapshot actions and listing)
can be enabled/disabled using the introduced ``UI_SNAPSHOTS_ENABLED``
setting.
* Replace TigerVNC Java client with an HTML5 Websocket-based client (noVNC)
* Other UI fixes
* Disabled suspended vm actions
* Custom error message for 413 api error response codes
* Enable resize actions from both info/actions subviews for active
machines
* Update images collection each time machine create wizard opens
* Fixed a couple of title truncate in several views
* Handle display of infinite resource quota values.
* Improve network create wizard. Support for custom gateway.
* Common font styling for all resource titles
Pithos
------
* Backend modifications to enable/support snapshot creation.
* Backend and API modifications to reflect the modifications in the resource
allocation mechanism via the accumulative projects with pool projects.
* Change default disposition type: If no disposition-type is
specifically requested or an invalid value is passed, the disposition type
is set to 'inline'.
Admin
-----
* Introduce Administrator Dashboard, which provides the following:
* Graphic access to the details of various Synnefo entities (users, VMs,
Projects).
* Intuitive filtering.
* Multiple actions and notifications.
* Charts and statistics generation.
* Define the Admin node URL and path with the ``ADMIN_BASE_URL`` setting
* The ``ADMIN_BASE_URL`` setting should be adjusted in every node that Admin
is installed.
Tools
-----
* Extend snf-burnin to include testing of snapshots.
.. _Changelog-0.15.2:
v0.15.2
=======
Released: Tue May 27 13:50:31 EEST 2014
Cyclades
--------
* Fix minor problem in network stats plugin of collectd
* Fix small issue in the 'stats-cyclades' command arising when Ganeti cannot
communicate with a node.
* Check max size of server metadata
* Add support for Ganeti 2.10
Cyclades UI
-----------
* Fix oraclelinux icon name
.. _Changelog-0.15.1:
v0.15.1
=======
Released: Thu May 15 13:31:37 EEST 2014
Synnefo-wide
------------
* Documentation: New CentOS installation guide.
* Handle Unicode issue in proxy requests.
Astakos
-------
* Change statistics API to expose statistics for all users and for users
per authentication provider (users that are exclusively using a provider).
* Fix minor problem in weblogin, which could lead to unexpected exception
* Fix Authenticate Identity API call with trailing slash, which used to fail
with 405 (Method not allowed)
Cyclades
--------
* Fix bug in snf-dispatcher that could result in unsynced NICs between
Cyclades and Ganeti.
* Support queries by IPv6 address in helpdesk app.
* Extend statistics API with detailed information about Ganeti clusters,
virtual servers and networks, public IPv4 pools and images.
* Allow creation of ports with existing floating IPs from networks that are
marked as drained.
Cyclades UI
-----------
* Include icons for Oracle Linux OS (oraclelinux)
* Include a null gateway IP when creating subnets for private networks to
override the default gateway IP of Neutron API.
Pithos
------
* Support selectable storage backend
* Add new settings:
- PITHOS_BACKEND_STORAGE: Possible values are 'nfs' and 'rados'.
- PITHOS_RADOS_CEPH_CONF: The Ceph configuration file.
* Remove unused variable PITHOS_RADOS_STORAGE
* Add 'pithos-sync-rados.sh' shell script in Pithos tools,
a Pithos object synchronization tool from NFS to Rados.
* Fix missing Content-Disposition header in object response, which caused
publicly shared objects to be saved with a meaningless name
(without extension)
.. _Changelog-0.15:
v0.15
=====
Released: Mon Mar 10 14:01:32 EET 2014
Synnefo-wide
------------
* Integrate Pithos tests in continuous integration.
* Change astakosclient to accept AUTH_URL instead of BASE_URL
ASTAKOS_BASE_URL settings has been removed from Pithos and Cyclades
and has been replaced with ASTAKOS_AUTH_URL. Both Pithos and Cyclades
proxy the Astakos services under ASTAKOS_PROXY_PREFIX path.
ASTAKOS_PROXY_PREFIX by default has a value of '_astakos'.
More specifically, Astakos' identity service is proxied under
'_astakos/identity', Astakos' account service is under '_astakos/account'
and Astakos' ui service is under '_astakos/ui'.
* Add 'mail_admins' handler to 'django.request' logger in order to send email
notifications to users listed in 'ADMINS' setting about unhandled exceptions
in the code.
* Extend astakosclient to request and validate OAuth 2.0 access tokens
* Change response status code from 400 (Bad Request) to 405 (Not allowed
method) in case of an unexpected request method.
Astakos
-------
* Changes in project schema:
* A Project entry is created when submitting an application for a new
project, rather than on approval. Its state is dependent on the state
of its 'reference' application (current definition). Lock Project rather
than Chain (the latter is semantically obsolete).
* Project states "Active - Pending" and "Suspended - Pending" have been
removed. In management command 'project-list', the existence of a pending
modification is indicated by a non-blank 'Pending AppID'.
* Improve recording of project, application, and membership actions.
* Implement API calls for projects.
* Store the base URL of a component. The deployer should provide it when
adding a new component. Service endpoints originating from a component
are expected to match its base URL; otherwise, a warning is issued.
re-registration with 'snf-component-register' affects both the base and
the ui URL.
* Changes in resource and quota handling:
* New resources are registered with unlimited default base quota,
represented by 2**63-1.
* Each newly accepted user copies the default value for all resources
as their own base quota. A base quota is considered 'custom' if its
value differs from the default.
* Changing resource's default quota affects the base quota *only* of
future users.
* Resource definition got flags 'api_visible' and 'ui_visible',
replacing flag 'allow_in_projects'. They control whether a user can
access these resources. The system internally always accounts for
all resources, and a user can get off quota even for a resource that
is not visible.
* Remove API call GET /account/v1.0/authenticate in favor of
POST /identity/v2.0/tokens.
* Export basic statistics about Astakos service at the '/admin/stats/detail' API
endpoint. Access to this endpoint is only allowed to users that belong to
the Astakos groups that are defined in the
'ASTAKOS_ADMIN_STATS_PERMITTED_GROUPS' setting. Statistics are also available
through the 'snf-manage stats-astakos' management command.
* Implement OAuth 2.0 Authorization Code Grant
Add API calls for authorization code and access token generation
* Add API call for validating OAuth 2.0 access tokens
* **Shibboleth module** Extract unique identifier from the
``REMOTE_USER`` header.
* Automatically fill third-party signup form fields when available by the
the third-party provider.
* Management commands:
* Introduced new commands:
* component-show
* quota-list (replacing quota, supports various filters)
* quota-verify (replacing quota)
* oauth2-client-add (register OAuth 2.0 client)
* oauth2-client-list (list registered oauth 2.0 clients)
* oauth2-client-remove (remove OAuth 2.0 client)
* Changed commands:
* component-add got options --base-url and --ui-url
* resource-modify --limit became --default-quota
* user-modify can operate on multiple users with --all and --exclude
* user-modify --set-base-quota became --base-quota
* Removed commands:
* quota
* resource-import (subsumed by service-import)
* resource-export-astakos (subsumed by service-export-astakos)
* Fix request authorization code failures due to Unicode issue:
https://code.grnet.gr/issues/4971
* Omit validation issues for non-required metadata values received from the
third-party authentication provider.
Cyclades
--------
* Major changes to Cyclades networks:
* Implement 'cyclades_network' service, containing the /networks, /ports,
/subnets and /floatingips API endpoints under '/network/v2.0'. The old
/networks API of 'cyclades_compute' (under /compute/v2.0) is
removed.
* Implement 'snf-manage subnet-{create, list, modify, inspect}' management
commands for handling of subnets.
* Implement 'snf-manage port-{create, list, remove, inspect}' management
commands for handling of ports.
* Add two new settings, 'CYCLADES_FORCED_SERVER_NETWORKS' and
'CYCLADES_DEFAULT_SERVER_NETWORKS' to control the networks that newly
created servers will be connected.
* Implement Floating IP addresses, which are IPv4 addresses that can be
dynamically added and removed to a running server.
* Add new 'cyclades.floating_ip' resource.
* Implement 'snf-manage floating-ip-{create,list,remove,attach,detach}'
management commands to handle floating IPs.
* Add 'floating_ip_pool' attribute to networks to mark networks that can
be used as floating IP pools.
* Implement 'resize' server action.
* Implement the 'resize' server action, to change the flavor of a server.
Only 'cpu' and 'memory' resizing is supported.
* Compute quotas for CPU and memory of running VMs.
* Change 'cyclades.cpu' and 'cyclades.ram' resources to represent the CPU
and RAM for running VMs. Total CPU and RAM usage is represented by new
'cyclades.total_cpu' and 'cyclades.total_ram' resources.
* Refer to Ganeti NICs by their name instead of their index.