Statistics
| Branch: | Tag: | Revision:

root / Changelog @ d0986bac

History | View | Annotate | Download (4.3 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

    
10
.. _Changelog-0.13next:
11

    
12
v0.13next
13
=========
14

    
15
Released: UNRELEASED
16

    
17
Synnefo-wide
18
------------
19
* Create 'snf_django' Python package to hold common code for all Synnefo
20
  components.
21

    
22
Astakos
23
-------
24

    
25
Cyclades
26
--------
27
* Remove 'CYCLADES_USER_CATALOG_URL' and 'CYCLADES_USER_FEEDBACK_URL' settings
28
* Remove CYCLADES_USE_QUOTAHOLDER, CYCLADES_QUOTAHOLDER_TOKEN,
29
  CYCLADES_QUOTAHOLDER_URL, CYCLADES_QUOTAHOLDER_POOLSIZE settings
30

    
31
Pithos
32
------
33
* Remove PITHOS_AUTHENTICATION_USERS setting, which was used to override
34
  astakos users.
35
* Remove 'PITHOS_USER_CATALOG_URL', 'PITHOS_USER_FEEDBACK_URL' and
36
  'PITHOS_USER_LOGIN_URL' settings.
37

    
38
Tools
39
-----
40

    
41

    
42
.. _Changelog-0.13:
43

    
44
v0.13
45
=====
46

    
47
Released: Wed Apr 10 18:52:50 EEST 2013
48

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

    
55
Synnefo-wide
56
------------
57

    
58
* Support for pooling throughout Synnefo
59

    
60
  * Pooled Django DB connections, Pithos backend connections, HTTP
61
    connections using single `objpool` package
62

    
63
* Improved management commands
64

    
65
  * Unified codebase for output of tables in JSON, CSV
66

    
67
* Bring most of Synnefo code inside a single, unified repository
68

    
69
  * support automatic Python and Debian package builds for individual commits
70
  * with automatic version generation
71

    
72
* Overhauling of Synnefo settings: renames and refactoring, for increased
73
  uniformity (in progress)
74
* Deployment: Standardize on gunicorn, with gevent-based workers
75
  and use of Green threads throughout Synnefo
76
* Documentation: New scale-out guide, with distinct node roles,
77
  for mass Synnefo deployments
78

    
79
Astakos
80
-------
81

    
82
* Support multiple authentication methods
83

    
84
  * Classic (username/password), Shibboleth, LDAP/Active Directory,
85
    Google, Twitter, LinkedIn
86
  * Users can enable/disable auth methods, and switch between them
87

    
88
* Introduce a UUID as a global identifier for users, throughout Synnefo
89

    
90
  * The UUID remains constant as the user enables/disables login methods
91

    
92
* Allow users to modify their email address freely
93
* Per-user, per-resource accounting mechanism (quotaholder)
94
* Full quota support, with per-user, per-resource quotas, based on quotaholder
95
* Projects: Users can create and join Projects
96

    
97
  * Projects grant extra resources to their members
98

    
99
* UI Enhancements for quotas and projects
100

    
101
  * distinct Usage tab, showing usage of individual resources
102
  * Project management UI
103
  * New Overview page
104

    
105
Cyclades
106
--------
107

    
108
* Commission resources on quotaholder/Astakos
109
* Support mass creation of flavors
110
* Support for the ExtStorage disk template in Ganeti
111
* Query and report quotas in the UI
112
* Pass VM configuration parameters over a VM-side API (`vmapi`)
113

    
114
  * Do not pass sensitive data as Ganeti OS parameters
115
  * Keep sensitive data in memory caches (memcached) and
116
    never allow them to hit the disk
117

    
118
* Display additional backend information in helpdesk machines list
119
* Allow helpdesk users to search for an account using a known machine id
120
* Helpdesk actions are now logged using the synnefo's common login
121
  infrastructure
122

    
123
Pithos
124
------
125

    
126
* Support storage of blocks on a RADOS backend, for Archipelago
127

    
128
  * new settings:
129
    PITHOS_RADOS_STORAGE, PITHOS_RADOS_POOL_BLOCKS, PITHOS_RADOS_POOL_MAPS
130

    
131
* Rewritten support for public URLs, with admin-selectable length
132

    
133
  * new settings:
134
    PITHOS_PUBLIC_URL_SECURITY, PITHOS_PUBLIC_URL_ALPHABET
135

    
136
* Enable pithos backend to use external quotaholder component
137

    
138
  * new settings:
139
    PITHOS_USE_QUOTAHOLDER, PITHOS_QUOTAHOLDER_URL, PITHOS_QUOTAHOLDER_TOKEN,
140
    PITHOS_QUOTAHOLDER_POOLSIZE
141

    
142
* Moderated version debiting mechanism
143

    
144
  * new setting:
145
    PITHOS_BACKEND_FREE_VERSIONING
146

    
147
* Proxy Astakos user-visible services
148

    
149
  * new settings:
150
    PITHOS_PROXY_USER_SERVICES, PITHOS_USER_CATALOG_URL,
151
    PITHOS_USER_FEEDBACK_URL, PITHOS_USER_LOGIN_URL
152

    
153
Tools
154
-----
155

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