Revision c3396aeb

b/Changelog
1
CHANGELOG for version 0.8
1
CHANGELOG for version 0.9
2 2

  
3 3
Bug Fixes:
4
- Race condition with HTTP request path when threading (#3526, #3527)
5
- Fix bug where files with repeated blocks fail to upload (#3555)
6
- Fixed non-ascii character issues when managing container or object names and
7
    data in pithos+ client (#3256, #3325)
8
- Made download cancellation more responsive (#3457)
9
- Gracious behavior when deleting a deleted network (#3547)
10
- Make OS/Storage list_object compatible to OS/Storage v2 (#3596)
11
- Minor typos or oversights (#3403, #3444, #3509)
4

  
12 5

  
13 6
 Changes:
14
 - Rename some command groups: store --> file, astakos --> user (#3566)
15
 - Create a command subgroup for cyclades/compute image commands. Plankton image
16
    commands: kamaki image <command>, Cyclades/Compute image commands:
17
    kamaki image compute <command> (#3490)
18
 - Rename 'image public' --> 'image list' (#3566, 3490)
19
 - Redesign HTTP connection mechanism: use an objpool-provided context manager
20
    and simplify the kamaki http management. Merge kamaki.clients.connection
21
    to kamaki.clients (#3526, #3527)
22
- Modify semantics for kamaki store *quota operations. Rename container quota
23
    operations to containerlimit <get|set>. The term quota now refers to the
24
    immutable account quota (#3541)
25
- Remove quotaholder module from kamaki (#3587)
26
- Create network uses a default network type (#3514)
27
- Enforce uniformity to runtime arguments: first the short then the long form
28
    e.g. -f, --force. Add a short or long format in common runtimes (#3456)
29
- Change the names of command group specifications from <command>_cli to <api>.
30
    Config files must be updated accordingly (#3566)
31
- Require progress
7

  
32 8

  
33 9
Features:
34
- Allow request logging into a file. Let user set the log_file parameter in
35
    configuration file to specify where to log. (#3441)
36
- Remove token and http data logging let user allow them by setting log_token
37
    and log_data configuration options (#3441)
38
- Make maximum threads a configuration option (max_threads, #3546)
39
- Suggest user to install ansicolors (#3367)
40
- Extensive unittests in kamaki.clients, that cover all cases (#3228, #3229)
41
- New runtime options in pithos+ client interface (now known as "kamaki file")
42
    allow operations between differernt users/accounts (#3230)
43
- Intuitive pithos+ client semantics. Affect copy, move, upload (#3310, 3536)
44
- Expose connection pool size (all api methods, #3422) and etag-if-match
45
    (upload, #3574)
46
- Image register returns info on registered image, in success. Affected both
47
    the api and the cli (#3512)
48
- Add name and owner filtering to image list. Name can also be partially
49
    filtered (#3513)
50
- Upload the contents of a directory, recursively, check preconditions before
51
    uploading (#3536)
10

  
b/README.Upgrade
1
This document describes changes and steps to upgrade from kamaki 0.7.X to kamaki 0.8
1
This document describes changes and steps to upgrade from kamaki 0.8.X to kamaki 0.9
2 2

  
3
This document refers to users who:
4
- use the kamaki command line
5
- load configuration options with the kamaki.cli.config
6

  
7
Notable changes:
8
- Make progress (>= 1.1) module a requirement (was a suggestion)
9
- log http requests to ~/.kamaki.log
10
- Rename some command groups:
11
    store --> file
12
    astakos --> user
13
- Rename some mandatory configuration options:
14
    astakos.url --> user.url,
15
    store.url --> file.url
16
- Do not require <cmd group>.cli (cli specification) field in configuration file, use it only to override default values.
17
- Change the naming convention for cli specifications by loosing the _cli suffix:
18
    <cmd group>_cli --> <cmd group>
19
- Seperate kamaki image commands based on whether they make requests to Plankton or Cyclades.
20
    Plankton image commands: kamaki image <action>
21
    Cyclades image commands: kamaki image compute <action>
22
- Rename: kamaki image public --> kamaki image list
23
- Change letter case for recursive download runtime argument:
24
    kamaki store download -r <container>:<path> [local destination]
25
    -->
26
    kamaki file download -R <container>:<path> [local destination]
27

  
28

  
29
Suggested upgrade method:
30
1. Backup the .kamakirc file (usually stored as ~/.kamakirc). E.g.:
31
    cp ~/.kamakirc ~/tmp/.kamakirc.bu
32
2. Upgrade kamaki (refer to your installation method). E.g. if installed from pypi:
33
    pip install --upgrade kamaki
34
3. Download the script bellow:
35
    For Linux, OS X, *nix, systems that run bash:
36
        https://code.grnet.gr/attachments/download/2493/kamaki0.7to0.8.sh
37
    For windows:
38
        https://code.grnet.gr/attachments/download/2497/kamaki0.7to0.8.bat
39
and run it from command line. This script will modify the default .kamakirc file in order to comply with version 0.8
b/version
1
0.7next
1
0.8next

Also available in: Unified diff