File: UPGRADING-5.0

package info (click to toggle)
request-tracker5 5.0.7%2Bdfsg-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 80,264 kB
  • sloc: javascript: 191,898; perl: 87,146; sh: 1,426; makefile: 487; python: 37; php: 15
file content (77 lines) | stat: -rw-r--r-- 2,137 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
=head1 UPGRADING FROM RT 4.4.0 and greater

This documentation notes internals changes between the 4.4 and 5.0
series that are primarily of interest to developers writing extensions
or local customizations.  It is not an exhaustive list.

=over

=item *

The default callback in C<Articles/Elements/IncludeArticle> provides a ticket
object. However, the template itself does not need this ticket object, so it
is no longer guaranteed to be loaded when it is passed.

=item *

New group options were added to the ticket listings pages in SelfService. With
the additions, the C<AfterMyRequests> callback is no longer at the bottom of the
page. If you previously used this callback to add to the bottom of the SelfService
page, a new callback C<AfterMyGroupRequests> is now available below the new group
ticket listing.

=item *

When we cored RT::Extension::ConfigInDatabase, we renamed the table to
Configurations and also changed the internal implementation to support storing
regex there.

=back

=head1 DEPRECATED CODE

Code that is no longer used after updates is marked as deprecated so it will log
a warning for two versions before we remove it. This gives developers time to
update their code. This section lists code that has been removed after this
period.

=over

=item *

SQLFilter callback in /Elements/QueueSummaryByLifecycle

=item *

AfterUpdateCustomFieldValue callback in share/html/Admin/CustomFields/Modify.html

=item *

share/html/Elements/Quicksearch, which was renamed to QueueList

=item *

The find_expired_rows setting for ObjectCustomFieldValues is now find_disabled_rows.

=item *

RT::Queue now has a SetDefaultValue method, so individual methods for setting/getting defaults
are removed: SetInitialPriority, InitialPriority, SetFinalPriority, FinalPriority,
SetDefaultDueIn, DefaultDueIn.

=back

=head1 UPGRADING FROM 5.0.0 AND EARLIER

=over 4

=item *

C<RT::Crypt::GnuPG> previously had a package variable C<$RE_FILE_EXTENSIONS>
that could be modified to control file types RT should try to
decrypt. This has been moved to a configuration option in the C<%GnuPG>
setting in C<RT_Config.pm>.

=back

=cut