Commit | Line | Data |
eda0fb99 |
1 | =pod |
2 | |
3 | =head1 NAME |
4 | |
5 | Moose::Manual::Support - Policies regarding support, releases, and |
6 | compatibility. |
7 | |
995b7d56 |
8 | =head1 SUPPORT POLICY |
9 | |
a0214906 |
10 | There are two principles to Moose's policy of supported behavior. |
995b7d56 |
11 | |
64936d78 |
12 | =over 4 |
13 | |
14 | =item 1. |
15 | |
16 | Moose favors correctness over everything. |
17 | |
18 | =item 2. |
19 | |
20 | Moose supports documented and tested behavior, not accidental behavior or side |
21 | effects. |
22 | |
23 | =back |
995b7d56 |
24 | |
a0214906 |
25 | If a behavior has never been documented or tested, the behavior is |
26 | I<officially> undefined. Relying upon undocumented and untested behavior is |
27 | done at your own risk. |
995b7d56 |
28 | |
a0214906 |
29 | If a behavior is documented or tested but found to be incorrect later, the |
64936d78 |
30 | behavior will go through a deprecation period. During the deprecation period, |
31 | use of that feature will cause a warning. Eventually, the deprecated feature |
32 | will be removed. |
995b7d56 |
33 | |
eda0fb99 |
34 | =head1 RELEASE SCHEDULE |
35 | |
759dfceb |
36 | Moose is on a system of quarterly major releases, with minor releases as |
37 | needed between major releases. A minor release is defined as one that makes |
7b1aba0f |
38 | every attempt to preserve backwards compatibility. Currently this means that we |
39 | did not introduce any new dependency conflicts, and that we did not make any |
40 | changes to documented or tested behavior (this typically means that minor |
41 | releases will not change any existing tests in the test suite, although they |
42 | can add new ones). A minor release can include new features and bug fixes. |
d1e4fecf |
43 | |
64936d78 |
44 | Major releases may be backwards incompatible. Moose prioritizes |
45 | correctness over backwards compatibility or performance; see the L<Deprecation |
46 | Policy> to understand how backwards incompatible changes are announced. |
d1e4fecf |
47 | |
e4b7acd5 |
48 | Major releases are scheduled to happen during fixed release windows. If the |
49 | window is missed, then there will not be a major release until the next |
50 | release window. The release windows are one month long, and occur during the |
51 | months of January, April, July, and October. |
52 | |
a0214906 |
53 | Before a major release, a series of development releases will be made so that |
54 | users can test the upcoming major release before it is distributed to CPAN. It |
55 | is in the best interests of everyone involved if these releases are tested as |
56 | widely as possible. |
eda0fb99 |
57 | |
58 | =head1 DEPRECATION POLICY |
59 | |
60 | Moose has always prioritized correctness over performance and backwards |
79dce67a |
61 | compatibility. |
eda0fb99 |
62 | |
64936d78 |
63 | Major deprecations or API changes are documented in the Changes file as well |
64 | as in L<Moose::Manual::Delta>. The Moose developers will also make an effort |
65 | to warn users of upcoming deprecations and breakage through the Moose blog |
66 | (http://blog.moose.perl.org). |
eda0fb99 |
67 | |
45d92036 |
68 | Deprecated APIs will be preserved for at least one year I<after the major |
69 | release which deprecates that API>. Deprecated APIs will only be removed in a |
70 | major release. |
eda0fb99 |
71 | |
64936d78 |
72 | Moose will also warn during installation if the version of Moose being |
73 | installed will break an installed dependency. Unfortunately, due to the nature |
eda0fb99 |
74 | of the Perl install process these warnings may be easy to miss. |
75 | |
76 | =head1 BACKWARDS COMPATIBILITY |
77 | |
78 | We try to ensure compatibility by having a extensive test suite (last |
79 | count just over around 5123 tests), as well as testing a number of |
ccc47a38 |
80 | packages (currently just under 100 packages) that depend on Moose before |
eda0fb99 |
81 | any release. |
82 | |
83 | The current list of downstream dependencies that are tested is in |
84 | C<xt/author/test-my-dependents.t>. |
85 | |
86 | =head1 VERSION NUMBERS |
87 | |
64936d78 |
88 | Moose version numbers consist of three parts, in the form X.YYZZ. The X is the |
89 | "special magic number" that only gets changed for really big changes. Think of |
90 | this as being like the "5" in Perl 5.12.1. |
91 | |
92 | The YY portion is the major version number. Moose uses even numbers for stable |
93 | releases, and odd numbers for trial releases. The ZZ is the minor version, and |
94 | it simply increases monotonically. It starts at "00" each time a new major |
95 | version is released. |
96 | |
97 | Semantically, this means that any two releases which share a major version |
98 | should be API-compatible with each other. In other words, 2.0200, 2.0201, and |
99 | 2.0274 are all API-compatible. |
eda0fb99 |
100 | |
64936d78 |
101 | Prior to version 2.0, Moose version numbers were monotonically incrementing |
102 | two decimal values (0.01, 0.02, ... 1.11, 1.12, etc.). |
3d5e4dc0 |
103 | |
eda0fb99 |
104 | Moose was declared production ready at version 0.18 (via L<< |
105 | http://www.perlmonks.org/?node_id=608144 >>). |
106 | |
6abc21a5 |
107 | =head1 PERL VERSION COMPATIBILITY |
108 | |
64a1ebab |
109 | As of version 2.00, Moose officially supports being run on perl 5.8.3+. Our |
110 | current policy is to support the earliest version of Perl shipped in the latest |
111 | stable release of any major operating system (this tends to mean CentOS). We |
6abc21a5 |
112 | will provide at least six months notice (two major releases) when we decide to |
64a1ebab |
113 | increase the officially supported Perl version. The next time this will happen |
114 | is in January of 2012, when Moose 2.06 will increase the minimum officially |
115 | supported Perl version to 5.10.1. |
6abc21a5 |
116 | |
64a1ebab |
117 | "Officially supported" does not mean that these are the only versions of Perl |
6abc21a5 |
118 | that Moose will work with. Our declared perl dependency will remain at 5.8.3 as |
119 | long as our test suite continues to pass on 5.8.3. What this does mean is that |
120 | the core Moose dev team will not be spending any time fixing bugs on versions |
121 | that aren't officially supported, and new contributions will not be rejected |
122 | due to being incompatible with older versions of perl except in the most |
64a1ebab |
123 | trivial of cases. We will, however, still welcome patches to make Moose |
6abc21a5 |
124 | compatible with earlier versions, if other people are still interested in |
125 | maintaining compatibility. Note that although performance regressions are |
126 | acceptable in order to maintain backwards compatibility (as long as they only |
127 | affect the older versions), functionality changes and buggy behavior will not |
64a1ebab |
128 | be. If it becomes impossible to provide identical functionality between modern |
129 | Perl versions and unsupported Perl versions, we will increase our declared perl |
130 | dependency instead. |
6abc21a5 |
131 | |
eda0fb99 |
132 | =head1 CONTRIBUTING |
133 | |
134 | Moose has an open contribution policy. Anybody is welcome to submit a |
204f629c |
135 | patch. Please see L<Moose::Manual::Contributing> for more details. |
eda0fb99 |
136 | |
79dce67a |
137 | =cut |