~bkerensa/ubuntu/precise/landscape-client/fix-for-962974

« back to all changes in this revision

Viewing changes to landscape/__init__.py

  • Committer: Bazaar Package Importer
  • Author(s): Free Ekanayaka
  • Date: 2010-02-10 18:50:53 UTC
  • mfrom: (1.1.13 upstream)
  • Revision ID: james.westby@ubuntu.com-20100210185053-kqyzavz3rkpkl7nx
Tags: 1.4.4-0ubuntu0.10.04
* New upstream release (LP: #519200):
  - Add a message for creating package locks (LP: #514334)
  - Add support for auto-approved change-packages messages (LP: #517175)
  - Add support for installing server-generated debian packages (LP: #509752)
  - Add support for reporting Eucalyptus topology information (LP: #518501)
  - Fix timeout while inserting large free-space message (LP: #218388)
  - Fix wrong log path in motd (LP: #517454)
  - Fix race condition in process excecution (LP: #517453)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
DEBIAN_REVISION = ""
2
 
UPSTREAM_VERSION = "1.4.0"
 
2
UPSTREAM_VERSION = "1.4.4"
3
3
VERSION = "%s%s" % (UPSTREAM_VERSION, DEBIAN_REVISION)
4
 
API = "3.2"
 
4
 
 
5
# The "server-api" field of outgoing messages will be set to this value, and
 
6
# used by the server message system to lookup the correct MessageAPI adapter
 
7
# for handling the messages sent by the client. Bump it when the schema of any
 
8
# of the messages sent by the client changes in a backward-incompatible way.
 
9
#
 
10
# Changelog:
 
11
#
 
12
# 3.2:
 
13
#  * Add new "eucalyptus-info" and "eucalyptus-info-error" messages.
 
14
#
 
15
SERVER_API = "3.2"
 
16
 
 
17
# XXX This is needed for backward compatibility in the server code importing
 
18
# the API variable. We should eventually replace it in the server code.
 
19
API = SERVER_API
 
20
 
 
21
# The "client-api" field of outgoing messages will be set to this value, and
 
22
# used by the server to know which schema do the message types accepted by the
 
23
# client support. Bump it when the schema of an accepted message type changes
 
24
# and update the changelog below as needed.
 
25
#
 
26
# Changelog:
 
27
#
 
28
# 3.3:
 
29
#  * Add "binaries" field to "change-packages"
 
30
#  * Add "policy" field to "change-packages"
 
31
#  * Add new "change-package-locks" client accepted message type.
 
32
#
 
33
CLIENT_API = "3.3"
5
34
 
6
35
from twisted.python import util
7
36