RELEASING_RAILS.md 7.3 KB
Newer Older
1
# Releasing Rails
2

3 4 5
In this document, we'll cover the steps necessary to release Rails. Each
section contains steps to take during that time before the release. The times
suggested in each header are just that: suggestions. However, they should
6 7
really be considered as minimums.

8
## 10 Days before release
9

10
Today is mostly coordination tasks. Here are the things you must do today:
11

12
### Is the CI green? If not, make it green. (See "Fixing the CI")
13

14
Do not release with a Red CI. You can find the CI status here:
15

16
```
17
https://travis-ci.org/rails/rails
18
```
19

20
### Is Sam Ruby happy? If not, make him happy.
21

22
Sam Ruby keeps a [test suite](https://github.com/rubys/awdwr) that makes
R
Rajat Bansal 已提交
23
sure the code samples in his book
24
([Agile Web Development with Rails](https://pragprog.com/book/rails51/agile-web-development-with-rails-51))
25 26
all work. These are valuable system tests
for Rails. You can check the status of these tests here:
27

28
[http://intertwingly.net/projects/dashboard.html](http://intertwingly.net/projects/dashboard.html)
29 30 31

Do not release with Red AWDwR tests.

32
### Do we have any Git dependencies? If so, contact those authors.
33

34 35
Having Git dependencies indicates that we depend on unreleased code.
Obviously Rails cannot be released when it depends on unreleased code.
36
Contact the authors of those particular gems and work out a release date that
37
suits them.
38

J
Jon Moss 已提交
39
### Contact the security team (either tenderlove or rafaelfranca)
40

41
Let them know of your plans to release. There may be security issues to be
42 43
addressed, and that can impact your release date.

44
### Notify implementors.
45

46
Ruby implementors have high stakes in making sure Rails works. Be kind and
47 48
give them a heads up that Rails will be released soonish.

49
This is only required for major and minor releases, bugfix releases aren't a
R
Rajat Bansal 已提交
50
big enough deal, and are supposed to be backward compatible.
51

52 53 54 55 56 57 58 59 60
Send an email just giving a heads up about the upcoming release to these
lists:

* team@jruby.org
* community@rubini.us
* rubyonrails-core@googlegroups.com

Implementors will love you and help you.

J
Jon Moss 已提交
61
## 3 Days before release
62

63
This is when you should release the release candidate. Here are your tasks
64 65
for today:

66
### Is the CI green? If not, make it green.
67

68
### Is Sam Ruby happy? If not, make him happy.
69

70
### Contact the security team. CVE emails must be sent on this day.
71

72
### Create a release branch.
73

74
From the stable branch, create a release branch. For example, if you're
75 76
releasing Rails 3.0.10, do this:

77 78 79 80 81
```
[aaron@higgins rails (3-0-stable)]$ git checkout -b 3-0-10
Switched to a new branch '3-0-10'
[aaron@higgins rails (3-0-10)]$
```
82

83
### Update each CHANGELOG.
84

85
Many times commits are made without the CHANGELOG being updated. You should
86 87 88 89 90
review the commits since the last release, and fill in any missing information
for each CHANGELOG.

You can review the commits for the 3.0.10 release like this:

91 92 93
```
[aaron@higgins rails (3-0-10)]$ git log v3.0.9..
```
94

J
Jon Leighton 已提交
95 96 97 98
If you're doing a stable branch release, you should also ensure that all of
the CHANGELOG entries in the stable branch are also synced to the master
branch.

99
### Put the new version in the RAILS_VERSION file.
100

101
Include an RC number if appropriate, e.g. `6.0.0.rc1`.
102

103
### Build and test the gem.
104

105 106 107
Run `rake verify` to generate the gems and install them locally. `verify` also
generates a Rails app with a migration and boots it to smoke test with in your
browser.
108

H
Hendy Tanata 已提交
109
This will stop you from looking silly when you push an RC to rubygems.org and
110
then realize it is broken.
111

112 113
### Release to RubyGems and NPM.

J
Jon Moss 已提交
114 115 116 117 118
IMPORTANT: The Action Cable client and Action View's UJS adapter are released
as NPM packages, so you must have Node.js installed, have an NPM account
(npmjs.com), and be a package owner for `actioncable` and `rails-ujs` (you can
check this via `npm owner ls actioncable` and `npm owner ls rails-ujs`) in
order to do a full release. Do not release until you're set up with NPM!
119

120 121 122 123 124 125 126
The release task will sign the release tag. If you haven't got commit signing
set up, use https://git-scm.com/book/tr/v2/Git-Tools-Signing-Your-Work as a
guide. You can generate keys with the GPG suite from here: https://gpgtools.org.

Run `rake changelog:header` to put a header with the new version in every
CHANGELOG. Don't commit this, the release task handles it.

127 128 129
Run `rake release`. This will populate the gemspecs and NPM package.json with
the current RAILS_VERSION, commit the changes, tag it, and push the gems to
rubygems.org.
130

131
### Send Rails release announcements
132 133

Write a release announcement that includes the version, changes, and links to
134
GitHub where people can find the specific commit list. Here are the mailing
135 136 137 138 139 140
lists where you should announce:

* rubyonrails-core@googlegroups.com
* rubyonrails-talk@googlegroups.com
* ruby-talk@ruby-lang.org

141
Use Markdown format for your announcement. Remember to ask people to report
142 143
issues with the release candidate to the rails-core mailing list.

R
Rafael França 已提交
144
NOTE: For patch releases, there's a `rake announce` task to generate the release
145 146 147 148 149 150
post. It supports multiple patch releases too:

```
VERSIONS="5.0.5.rc1,5.1.3.rc1" rake announce
```

151
IMPORTANT: If any users experience regressions when using the release
152
candidate, you *must* postpone the release. Bugfix releases *should not*
153 154
break existing applications.

155
### Post the announcement to the Rails blog.
156

R
Rajat Bansal 已提交
157
If you used Markdown format for your email, you can just paste it into the
158 159
blog.

Y
Yoshiyuki Hirano 已提交
160
* https://weblog.rubyonrails.org
161

162
### Post the announcement to the Rails Twitter account.
163

164
## Time between release candidate and actual release
165

166
Check the rails-core mailing list and the GitHub issue list for regressions in
167 168 169
the RC.

If any regressions are found, fix the regressions and repeat the release
170 171
candidate process. We will not release the final until 72 hours after the
last release candidate has been pushed. This means that if users find
172 173
regressions, the scheduled release date must be postponed.

174 175
When you fix the regressions, do not create a new branch. Fix them on the
stable branch, then cherry pick the commit to your release branch. No other
176 177
commits should be added to the release branch besides regression fixing commits.

178
## Day of release
179 180

Many of these steps are the same as for the release candidate, so if you need
B
Benjamin Winkler 已提交
181
more explanation on a particular step, see the RC steps.
182

183 184 185
Today, do this stuff in this order:

* Apply security patches to the release branch
K
Kirill Zhuravlov 已提交
186
* Update CHANGELOG with security fixes
187
* Update RAILS_VERSION to remove the rc
188
* Build and test the gem
189
* Release the gems
190 191 192
* If releasing a new stable version:
  - Trigger stable docs generation (see below)
  - Update the version in the home page
193 194
* Email security lists
* Email general announcement lists
195

196
### Emailing the Rails security announce list
197

198
Email the security announce list once for each vulnerability fixed.
199 200 201

You can do this, or ask the security team to do it.

202
Email the security reports to:
203

204
* rubyonrails-security@googlegroups.com
A
Aaron Patterson 已提交
205
* oss-security@lists.openwall.com
206 207

Be sure to note the security fixes in your announcement along with CVE numbers
208
and links to each patch. Some people may not be able to upgrade right away,
209 210 211 212
so we need to give them the security fixes in patch form.

* Blog announcements
* Twitter announcements
K
Kirill Zhuravlov 已提交
213
* Merge the release branch to the stable branch
214 215
* Drink beer (or other cocktail)

216
## Misc
217

218
### Fixing the CI
219 220 221 222 223 224

There are two simple steps for fixing the CI:

1. Identify the problem
2. Fix it

225
Repeat these steps until the CI is green.