Statistics
| Branch: | Tag: | Revision:

root / Changelog @ 62c86226

History | View | Annotate | Download (4.6 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
* Rename 'cyclades-usage-verify' management command to
31
  'reconcile-resources-cyclades'. Also, remove 'cyclades-usage-reset' command,
32
  which is equivalent to 'reconcile-resources-cyclades --fix'.
33
* Rename 'cyclades-reconcile-commissions' management command to
34
  'reconcile-commissions-cyclades'.
35

    
36

    
37
Pithos
38
------
39
* Remove PITHOS_AUTHENTICATION_USERS setting, which was used to override
40
  astakos users.
41
* Remove 'PITHOS_USER_CATALOG_URL', 'PITHOS_USER_FEEDBACK_URL' and
42
  'PITHOS_USER_LOGIN_URL' settings.
43

    
44
Tools
45
-----
46

    
47

    
48
.. _Changelog-0.13:
49

    
50
v0.13
51
=====
52

    
53
Released: Wed Apr 10 18:52:50 EEST 2013
54

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

    
61
Synnefo-wide
62
------------
63

    
64
* Support for pooling throughout Synnefo
65

    
66
  * Pooled Django DB connections, Pithos backend connections, HTTP
67
    connections using single `objpool` package
68

    
69
* Improved management commands
70

    
71
  * Unified codebase for output of tables in JSON, CSV
72

    
73
* Bring most of Synnefo code inside a single, unified repository
74

    
75
  * support automatic Python and Debian package builds for individual commits
76
  * with automatic version generation
77

    
78
* Overhauling of Synnefo settings: renames and refactoring, for increased
79
  uniformity (in progress)
80
* Deployment: Standardize on gunicorn, with gevent-based workers
81
  and use of Green threads throughout Synnefo
82
* Documentation: New scale-out guide, with distinct node roles,
83
  for mass Synnefo deployments
84

    
85
Astakos
86
-------
87

    
88
* Support multiple authentication methods
89

    
90
  * Classic (username/password), Shibboleth, LDAP/Active Directory,
91
    Google, Twitter, LinkedIn
92
  * Users can enable/disable auth methods, and switch between them
93

    
94
* Introduce a UUID as a global identifier for users, throughout Synnefo
95

    
96
  * The UUID remains constant as the user enables/disables login methods
97

    
98
* Allow users to modify their email address freely
99
* Per-user, per-resource accounting mechanism (quotaholder)
100
* Full quota support, with per-user, per-resource quotas, based on quotaholder
101
* Projects: Users can create and join Projects
102

    
103
  * Projects grant extra resources to their members
104

    
105
* UI Enhancements for quotas and projects
106

    
107
  * distinct Usage tab, showing usage of individual resources
108
  * Project management UI
109
  * New Overview page
110

    
111
Cyclades
112
--------
113

    
114
* Commission resources on quotaholder/Astakos
115
* Support mass creation of flavors
116
* Support for the ExtStorage disk template in Ganeti
117
* Query and report quotas in the UI
118
* Pass VM configuration parameters over a VM-side API (`vmapi`)
119

    
120
  * Do not pass sensitive data as Ganeti OS parameters
121
  * Keep sensitive data in memory caches (memcached) and
122
    never allow them to hit the disk
123

    
124
* Display additional backend information in helpdesk machines list
125
* Allow helpdesk users to search for an account using a known machine id
126
* Helpdesk actions are now logged using the synnefo's common login
127
  infrastructure
128

    
129
Pithos
130
------
131

    
132
* Support storage of blocks on a RADOS backend, for Archipelago
133

    
134
  * new settings:
135
    PITHOS_RADOS_STORAGE, PITHOS_RADOS_POOL_BLOCKS, PITHOS_RADOS_POOL_MAPS
136

    
137
* Rewritten support for public URLs, with admin-selectable length
138

    
139
  * new settings:
140
    PITHOS_PUBLIC_URL_SECURITY, PITHOS_PUBLIC_URL_ALPHABET
141

    
142
* Enable pithos backend to use external quotaholder component
143

    
144
  * new settings:
145
    PITHOS_USE_QUOTAHOLDER, PITHOS_QUOTAHOLDER_URL, PITHOS_QUOTAHOLDER_TOKEN,
146
    PITHOS_QUOTAHOLDER_POOLSIZE
147

    
148
* Moderated version debiting mechanism
149

    
150
  * new setting:
151
    PITHOS_BACKEND_FREE_VERSIONING
152

    
153
* Proxy Astakos user-visible services
154

    
155
  * new settings:
156
    PITHOS_PROXY_USER_SERVICES, PITHOS_USER_CATALOG_URL,
157
    PITHOS_USER_FEEDBACK_URL, PITHOS_USER_LOGIN_URL
158

    
159
Tools
160
-----
161

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