~ubuntu-branches/ubuntu/oneiric/request-tracker3.8/oneiric-updates

« back to all changes in this revision

Viewing changes to UPGRADING

  • Committer: Bazaar Package Importer
  • Author(s): Dominic Hargreaves, Dominic Hargreaves, Christian Perrier
  • Date: 2009-06-16 21:46:59 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20090616214659-5ji9k1n3qyc2br3n
Tags: 3.8.4-1
[ Dominic Hargreaves ]
* Add missing comma in Depends (fixes FTBFS on etch)
* Update debconf translations: pt.po, ja.po, sv.po, it.po, cs.po, ru.po
  (Closes: #519885, #519922, #520603, #520759, #521199, #521926)
* Document preference for not using SQLite in production
  (Closes: #512750)

[ Christian Perrier ]
* Debconf templates and debian/control reviewed by the debian-l10n-
  english team as part of the Smith review project.
  (Closes: #522367, #520959)
* [Debconf translation updates]
  - Japanese. Closes: #522896
  - German. Closes: #520958
  - Portuguese. Closes: #523481
  - Galician. Closes: #524256
  - Galician. Closes: #524256
  - Spanish. Closes: #524449
  - Italian. Closes: #524715
  - Russian. Closes: #524894
  - Swedish. Closes: #525171
  - French. Closes: #525281

[ Dominic Hargreaves ]
* Don't tell dbconfig to comment out unused variables, since this
  breaks MySQL and Postgres database configuration (Closes: #523090)
* Update Standards-Version (no changes)
* Switch dependency on sysklogd to rsyslog (Closes: #526914)
* New upstream release; includes
  - Minor security fix (Closes: #533069)
  - Add missing Postgres index (Closes: #512653)
* Patch webmux.pl to provide a better error message when the wrong
  major version of RT is in @INC (for example in a mod_perl context).
  (Closes: #518692)
* Add some more example Exim 4 configuration (Closes: #238345)
* Don't apply database ACLs in databases managed by dbconfig-common.
* Remove unused ACL patch

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
well.
19
19
 
20
20
*******
 
21
UPGRADING FROM 3.8.3 and earlier - Changes:
 
22
 
 
23
Arguments to the NotifyGroup Scrip Action need
 
24
to be corrected in the database using 
 
25
 
 
26
/opt/rt3/sbin/rt-setup-database --dba root --prompt-for-dba-password --action upgrade
 
27
 
 
28
 
 
29
UPGRADING FROM 3.8.2 and earlier - Changes:
 
30
 
 
31
New scrip condition 'On Reject'.
21
32
 
22
33
UPGRADING FROM 3.8.1 and earlier - Changes:
23
34
 
 
35
= Oracle configuration =
 
36
 
 
37
$DatabaseName is used as SID, so RT can connect without environment variables
 
38
or tnsnames.ora file. Because of this change your RT instance may loose ability
 
39
to connect to your DB, you have to update options and restart your web server.
 
40
Example configuration:
 
41
 
 
42
    Set($DatabaseType, 'Oracle');
 
43
    Set($DatabaseHost, '192.168.0.1');
 
44
    # undefined port => will try both 1526 and 1521
 
45
    Set($DatabasePort, undef);
 
46
    # ORACLE SID
 
47
    Set($DatabaseName, 'XE');
 
48
    # user for RT in Oracle, RT's tables in his schema
 
49
    Set($DatabaseUser, 'test');
 
50
    # above user's password
 
51
    Set($DatabasePassword, 'test');
 
52
 
24
53
= Rights changes =
25
54
 
26
55
Now, if you want any user to be able to access the Approvals tools (a.k.a.  the
93
122
 
94
123
Read about GnuPG integration in `perldoc docs/gnupg_integration.pod`.
95
124
 
96
 
New scrip actions 'On Close' and 'On Reopen'.
 
125
New scrip conditions 'On Close' and 'On Reopen'.
97
126
 
98
127
UPGRADING FROM 3.5.7 and earlier - Changes:
99
128