passenger 4.0.5 → 4.0.6

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of passenger might be problematic. Click here for more details.

Files changed (162) hide show
  1. data.tar.gz.asc +7 -7
  2. data/.travis.yml +1 -2
  3. data/CONTRIBUTING.md +20 -5
  4. data/CONTRIBUTORS +67 -0
  5. data/LICENSE +1 -1
  6. data/NEWS +48 -0
  7. data/Rakefile +2 -2
  8. data/bin/passenger-config +18 -0
  9. data/bin/passenger-install-apache2-module +2 -0
  10. data/bin/passenger-install-nginx-module +11 -12
  11. data/bin/passenger-memory-stats +2 -0
  12. data/bin/passenger-status +152 -69
  13. data/build/agents.rb +1 -5
  14. data/build/basics.rb +26 -13
  15. data/build/cplusplus_support.rb +9 -0
  16. data/build/debian.rb +129 -0
  17. data/build/documentation.rb +6 -2
  18. data/build/integration_tests.rb +13 -2
  19. data/build/misc.rb +16 -0
  20. data/build/packaging.rb +67 -51
  21. data/build/preprocessor.rb +314 -0
  22. data/build/test_basics.rb +1 -0
  23. data/{debian → debian.template}/README.Debian +0 -0
  24. data/{debian → debian.template}/changelog +131 -0
  25. data/debian.template/compat +1 -0
  26. data/debian.template/control +71 -0
  27. data/debian.template/copyright +385 -0
  28. data/debian.template/libapache2-mod-passenger.install +3 -0
  29. data/{debian → debian.template}/libapache2-mod-passenger.postinst +0 -0
  30. data/{debian → debian.template}/libapache2-mod-passenger.prerm +0 -0
  31. data/debian.template/locations.ini +12 -0
  32. data/debian.template/passenger.conf +4 -0
  33. data/{debian → debian.template}/passenger.load +0 -0
  34. data/debian.template/patches/series +0 -0
  35. data/debian.template/repack.sh +42 -0
  36. data/debian.template/ruby-passenger-dev.install +3 -0
  37. data/debian.template/ruby-passenger-doc.install +2 -0
  38. data/debian.template/ruby-passenger.docs +4 -0
  39. data/debian.template/ruby-passenger.install +11 -0
  40. data/debian.template/ruby-passenger.manpages +4 -0
  41. data/debian.template/rules.template +35 -0
  42. data/debian.template/source/format +1 -0
  43. data/debian.template/watch +3 -0
  44. data/dev/run_travis.sh +46 -46
  45. data/doc/Architectural overview.html +2 -2
  46. data/doc/Packaging.html +27 -18
  47. data/doc/Packaging.txt.md +27 -18
  48. data/doc/Security of user switching support.html +2 -2
  49. data/doc/Users guide Apache.html +881 -95
  50. data/doc/Users guide Apache.idmap.txt +48 -6
  51. data/doc/Users guide Apache.txt +13 -1
  52. data/doc/Users guide Nginx.html +1063 -190
  53. data/doc/Users guide Nginx.idmap.txt +89 -45
  54. data/doc/Users guide Nginx.txt +45 -0
  55. data/doc/Users guide Standalone.html +7 -7
  56. data/doc/users_guide_snippets/alternative_for_flying_passenger.txt +1 -0
  57. data/doc/users_guide_snippets/environment_variables.txt +221 -0
  58. data/doc/users_guide_snippets/installation.txt +66 -17
  59. data/doc/users_guide_snippets/support_information.txt +3 -3
  60. data/doc/users_guide_snippets/tips.txt +352 -40
  61. data/ext/common/Account.h +4 -3
  62. data/ext/common/AccountsDatabase.h +6 -6
  63. data/ext/common/AgentsStarter.h +1 -13
  64. data/ext/common/ApplicationPool2/DirectSpawner.h +4 -4
  65. data/ext/common/ApplicationPool2/DummySpawner.h +1 -1
  66. data/ext/common/ApplicationPool2/Group.h +9 -4
  67. data/ext/common/ApplicationPool2/Implementation.cpp +6 -1
  68. data/ext/common/ApplicationPool2/Options.h +65 -37
  69. data/ext/common/ApplicationPool2/Pool.h +91 -41
  70. data/ext/common/ApplicationPool2/Process.h +6 -6
  71. data/ext/common/ApplicationPool2/SmartSpawner.h +14 -14
  72. data/ext/common/ApplicationPool2/Socket.h +1 -1
  73. data/ext/common/ApplicationPool2/Spawner.h +24 -16
  74. data/ext/common/ApplicationPool2/SpawnerFactory.h +9 -1
  75. data/ext/common/ApplicationPool2/SuperGroup.h +1 -1
  76. data/ext/common/Constants.h +1 -1
  77. data/ext/common/Logging.cpp +12 -7
  78. data/ext/common/MessageServer.h +7 -12
  79. data/ext/common/MultiLibeio.cpp +5 -5
  80. data/ext/common/ResourceLocator.h +2 -6
  81. data/ext/common/ServerInstanceDir.h +37 -10
  82. data/ext/common/UnionStation.h +10 -10
  83. data/ext/common/Utils.cpp +30 -4
  84. data/ext/common/Utils.h +7 -0
  85. data/ext/common/Utils/BlockingQueue.h +2 -2
  86. data/ext/common/Utils/Lock.h +2 -2
  87. data/ext/common/Utils/MessagePassing.h +2 -2
  88. data/ext/common/Utils/Timer.h +4 -4
  89. data/ext/common/agents/HelperAgent/AgentOptions.h +2 -0
  90. data/ext/common/agents/HelperAgent/Main.cpp +57 -16
  91. data/ext/common/agents/HelperAgent/RequestHandler.h +4 -1
  92. data/ext/common/agents/LoggingAgent/AdminController.h +91 -0
  93. data/ext/common/agents/LoggingAgent/LoggingServer.h +46 -29
  94. data/ext/common/agents/LoggingAgent/Main.cpp +43 -16
  95. data/ext/common/agents/LoggingAgent/RemoteSender.h +7 -7
  96. data/ext/common/agents/Watchdog/AgentWatcher.cpp +11 -11
  97. data/ext/common/agents/Watchdog/LoggingAgentWatcher.cpp +3 -1
  98. data/ext/common/agents/Watchdog/Main.cpp +62 -0
  99. data/ext/libeio/config.guess +206 -167
  100. data/ext/libeio/config.sub +142 -68
  101. data/ext/libev/config.guess +304 -290
  102. data/ext/libev/config.sub +198 -77
  103. data/ext/nginx/config +4 -0
  104. data/ext/nginx/ngx_http_passenger_module.c +1 -0
  105. data/ext/oxt/implementation.cpp +4 -4
  106. data/lib/phusion_passenger.rb +14 -5
  107. data/lib/phusion_passenger/abstract_installer.rb +41 -0
  108. data/lib/phusion_passenger/admin_tools/server_instance.rb +48 -39
  109. data/lib/phusion_passenger/message_client.rb +31 -7
  110. data/lib/phusion_passenger/native_support.rb +35 -12
  111. data/lib/phusion_passenger/packaging.rb +16 -2
  112. data/lib/phusion_passenger/platform_info/binary_compatibility.rb +6 -31
  113. data/lib/phusion_passenger/platform_info/operating_system.rb +1 -1
  114. data/lib/phusion_passenger/preloader_shared_helpers.rb +3 -1
  115. data/lib/phusion_passenger/request_handler.rb +1 -1
  116. data/lib/phusion_passenger/standalone/command.rb +6 -6
  117. data/lib/phusion_passenger/standalone/main.rb +23 -8
  118. data/lib/phusion_passenger/standalone/package_runtime_command.rb +9 -5
  119. data/lib/phusion_passenger/standalone/runtime_installer.rb +9 -10
  120. data/lib/phusion_passenger/standalone/start_command.rb +20 -4
  121. data/resources/templates/installer_common/freebsd9_broken_cxx_runtime.txt.erb +19 -0
  122. data/resources/templates/installer_common/low_amount_of_memory_warning.txt.erb +22 -0
  123. data/resources/templates/standalone/config.erb +3 -2
  124. data/test/cxx/ApplicationPool2/DirectSpawnerTest.cpp +4 -4
  125. data/test/cxx/ApplicationPool2/PoolTest.cpp +1 -1
  126. data/test/cxx/ApplicationPool2/SmartSpawnerTest.cpp +7 -7
  127. data/test/cxx/ApplicationPool2/SpawnerTestCases.cpp +9 -9
  128. data/test/cxx/EventedBufferedInputTest.cpp +17 -17
  129. data/test/cxx/RequestHandlerTest.cpp +5 -5
  130. data/test/cxx/ServerInstanceDirTest.cpp +3 -1
  131. data/test/cxx/TestSupport.h +4 -4
  132. data/test/cxx/UnionStationTest.cpp +3 -1
  133. data/test/cxx/UtilsTest.cpp +2 -0
  134. data/test/integration_tests/apache2_tests.rb +2 -2
  135. data/test/integration_tests/native_packaging_spec.rb +170 -0
  136. data/test/ruby/spec_helper.rb +0 -1
  137. data/test/stub/apache2/httpd.conf.erb +1 -1
  138. data/test/stub/nginx/nginx.conf.erb +1 -0
  139. data/test/support/apache2_controller.rb +1 -1
  140. data/test/support/placebo-preloader.rb +1 -1
  141. data/test/support/test_helper.rb +5 -2
  142. metadata +32 -26
  143. metadata.gz.asc +7 -7
  144. data/debian/compat +0 -1
  145. data/debian/control +0 -49
  146. data/debian/copyright +0 -20
  147. data/debian/libapache2-mod-passenger.install +0 -1
  148. data/debian/passenger-common.install +0 -4
  149. data/debian/passenger.conf +0 -4
  150. data/debian/prerm +0 -2
  151. data/debian/rules +0 -37
  152. data/debian/watch +0 -3
  153. data/dev/googlecode_upload.py +0 -265
  154. data/ext/common/agents/HelperAgent/BacktracesServer.h +0 -60
  155. data/resources/templates/nginx/not_available_when_natively_packaged.txt.erb +0 -8
  156. data/test/stub/rails3.1/app/assets/javascripts/application.js +0 -9
  157. data/test/stub/rails3.2/app/assets/javascripts/application.js +0 -15
  158. data/test/stub/rails_apps/2.3/mycook/public/javascripts/application.js +0 -2
  159. data/test/stub/rails_apps/2.3/mycook/public/javascripts/controls.js +0 -963
  160. data/test/stub/rails_apps/2.3/mycook/public/javascripts/dragdrop.js +0 -973
  161. data/test/stub/rails_apps/2.3/mycook/public/javascripts/effects.js +0 -1128
  162. data/test/stub/rails_apps/2.3/mycook/public/javascripts/prototype.js +0 -4320
@@ -0,0 +1,314 @@
1
+ # encoding: utf-8
2
+ # Phusion Passenger - https://www.phusionpassenger.com/
3
+ # Copyright (c) 2013 Phusion
4
+ #
5
+ # "Phusion Passenger" is a trademark of Hongli Lai & Ninh Bui.
6
+ #
7
+ # Permission is hereby granted, free of charge, to any person obtaining a copy
8
+ # of this software and associated documentation files (the "Software"), to deal
9
+ # in the Software without restriction, including without limitation the rights
10
+ # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11
+ # copies of the Software, and to permit persons to whom the Software is
12
+ # furnished to do so, subject to the following conditions:
13
+ #
14
+ # The above copyright notice and this permission notice shall be included in
15
+ # all copies or substantial portions of the Software.
16
+ #
17
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18
+ # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19
+ # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20
+ # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21
+ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22
+ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
23
+ # THE SOFTWARE.
24
+
25
+ # Implements a simple preprocessor language:
26
+ #
27
+ # Today
28
+ # #if @today == :fine
29
+ # is a fine day.
30
+ # #elif @today == :good
31
+ # is a good day.
32
+ # #else
33
+ # is a sad day.
34
+ # #endif
35
+ # Let's go walking.
36
+ #
37
+ # When run with...
38
+ #
39
+ # Preprocessor.new.start('input.txt', 'output.txt', :today => :fine)
40
+ #
41
+ # ...will produce:
42
+ #
43
+ # Today
44
+ # is a fine day.
45
+ # Let's go walking.
46
+ #
47
+ # Highlights:
48
+ #
49
+ # * #if blocks can be nested.
50
+ # * Expressions are Ruby expressions, evaluated within the binding of a
51
+ # Preprocessor::Evaluator object.
52
+ # * Text inside #if/#elif/#else are automatically unindented.
53
+ class Preprocessor
54
+ def initialize
55
+ @indentation_size = 4
56
+ @debug = boolean_option('DEBUG')
57
+ end
58
+
59
+ def start(filename, output_filename, variables = {})
60
+ if output_filename
61
+ temp_output_filename = "#{output_filename}._new"
62
+ output = File.open(temp_output_filename, 'w')
63
+ else
64
+ output = STDOUT
65
+ end
66
+ the_binding = create_binding(variables)
67
+ context = []
68
+ @lineno = 1
69
+ @indentation = 0
70
+
71
+ each_line(filename) do |line|
72
+ debug("context=#{context.inspect}, line=#{line.inspect}")
73
+
74
+ name, args_string, cmd_indentation = recognize_command(line)
75
+ case name
76
+ when "if"
77
+ case context.last
78
+ when nil, :if_true, :else_true
79
+ check_indentation(cmd_indentation)
80
+ result = the_binding.eval(args_string, filename, @lineno)
81
+ context.push(result ? :if_true : :if_false)
82
+ inc_indentation
83
+ when :if_false, :else_false, :if_ignore
84
+ check_indentation(cmd_indentation)
85
+ inc_indentation
86
+ context.push(:if_ignore)
87
+ else
88
+ terminate "#if is not allowed in this context"
89
+ end
90
+ when "elif"
91
+ case context.last
92
+ when :if_true
93
+ dec_indentation
94
+ check_indentation(cmd_indentation)
95
+ inc_indentation
96
+ context[-1] = :if_false
97
+ when :if_false
98
+ dec_indentation
99
+ check_indentation(cmd_indentation)
100
+ inc_indentation
101
+ result = the_binding.eval(args_string, filename, @lineno)
102
+ context[-1] = result ? :if_true : :if_false
103
+ when :else_true, :else_false
104
+ terminate "#elif is not allowed after #else"
105
+ when :if_ignore
106
+ dec_indentation
107
+ check_indentation(cmd_indentation)
108
+ inc_indentation
109
+ else
110
+ terminate "#elif is not allowed outside #if block"
111
+ end
112
+ when "else"
113
+ case context.last
114
+ when :if_true
115
+ dec_indentation
116
+ check_indentation(cmd_indentation)
117
+ inc_indentation
118
+ context[-1] = :else_false
119
+ when :if_false
120
+ dec_indentation
121
+ check_indentation(cmd_indentation)
122
+ inc_indentation
123
+ context[-1] = :else_true
124
+ when :else_true, :else_false
125
+ terminate "it is not allowed to have multiple #else clauses in one #if block"
126
+ when :if_ignore
127
+ dec_indentation
128
+ check_indentation(cmd_indentation)
129
+ inc_indentation
130
+ else
131
+ terminate "#else is not allowed outside #if block"
132
+ end
133
+ when "endif"
134
+ case context.last
135
+ when :if_true, :if_false, :else_true, :else_false, :if_ignore
136
+ dec_indentation
137
+ check_indentation(cmd_indentation)
138
+ context.pop
139
+ else
140
+ terminate "#endif is not allowed outside #if block"
141
+ end
142
+ when "", nil
143
+ # Either a comment or not a preprocessor command.
144
+ case context.last
145
+ when nil, :if_true, :else_true
146
+ output.puts(unindent(line))
147
+ else
148
+ # Check indentation but do not output.
149
+ unindent(line)
150
+ end
151
+ else
152
+ terminate "Unrecognized preprocessor command ##{name.inspect}"
153
+ end
154
+
155
+ @lineno += 1
156
+ end
157
+ ensure
158
+ if output_filename && output
159
+ output.close
160
+ stat = File.stat(filename)
161
+ File.chmod(stat.mode, temp_output_filename)
162
+ File.chown(stat.uid, stat.gid, temp_output_filename) rescue nil
163
+ File.rename(temp_output_filename, output_filename)
164
+ end
165
+ end
166
+
167
+ private
168
+ UBUNTU_DISTRIBUTIONS = {
169
+ "lucid" => "10.04",
170
+ "maverick" => "10.10",
171
+ "natty" => "11.04",
172
+ "oneiric" => "11.10",
173
+ "precise" => "12.04",
174
+ "quantal" => "12.10",
175
+ "raring" => "13.04",
176
+ "saucy" => "13.10"
177
+ }
178
+
179
+ # Provides the DSL that's accessible within.
180
+ class Evaluator
181
+ def _infer_distro_table(name)
182
+ if UBUNTU_DISTRIBUTIONS.has_key?(name)
183
+ return UBUNTU_DISTRIBUTIONS
184
+ end
185
+ end
186
+
187
+ def is_distribution?(expr)
188
+ if @distribution.nil?
189
+ raise "The :distribution variable must be set"
190
+ else
191
+ if expr =~ /^(>=|>|<=|<|==|\!=)[\s]*(.+)/
192
+ comparator = $1
193
+ name = $2
194
+ else
195
+ raise "Invalid expression #{expr.inspect}"
196
+ end
197
+
198
+ table1 = _infer_distro_table(@distribution)
199
+ table2 = _infer_distro_table(name)
200
+ raise "Distribution name #{@distribution.inspect} not recognized" if !table1
201
+ raise "Distribution name #{name.inspect} not recognized" if !table2
202
+ v1 = table1[@distribution]
203
+ v2 = table2[name]
204
+
205
+ case comparator
206
+ when ">"
207
+ return v1 > v2
208
+ when ">="
209
+ return v1 >= v2
210
+ when "<"
211
+ return v1 < v2
212
+ when "<="
213
+ return v1 <= v2
214
+ when "=="
215
+ return v1 == v2
216
+ when "!="
217
+ return v1 != v2
218
+ else
219
+ raise "BUG"
220
+ end
221
+ end
222
+ end
223
+ end
224
+
225
+ def each_line(filename)
226
+ File.open(filename, 'r') do |f|
227
+ while true
228
+ begin
229
+ line = f.readline.chomp
230
+ rescue EOFError
231
+ break
232
+ end
233
+ yield line
234
+ end
235
+ end
236
+ end
237
+
238
+ def recognize_command(line)
239
+ if line =~ /^([\s\t]*)#(.+)/
240
+ indentation_str = $1
241
+ command = $2
242
+
243
+ # Declare tabs as equivalent to 4 spaces. This is necessary for
244
+ # Makefiles in which the use of tabs is required.
245
+ indentation_str.gsub!("\t", " ")
246
+
247
+ name = command.scan(/^\w+/).first
248
+ # Ignore shebangs and comments.
249
+ return if name.nil?
250
+
251
+ args_string = command.sub(/^#{Regexp.escape(name)}[\s\t]*/, '')
252
+ return [name, args_string, indentation_str.to_s.size]
253
+ else
254
+ return nil
255
+ end
256
+ end
257
+
258
+ def create_binding(variables)
259
+ object = Evaluator.new
260
+ variables.each_pair do |key, val|
261
+ object.send(:instance_variable_set, "@#{key}", val)
262
+ end
263
+ return object.instance_eval do
264
+ binding
265
+ end
266
+ end
267
+
268
+ def inc_indentation
269
+ @indentation += @indentation_size
270
+ end
271
+
272
+ def dec_indentation
273
+ @indentation -= @indentation_size
274
+ end
275
+
276
+ def check_indentation(expected)
277
+ if expected != @indentation
278
+ terminate "wrong indentation: found #{expected} characters, should be #{@indentation}"
279
+ end
280
+ end
281
+
282
+ def unindent(line)
283
+ line =~ /^([\s\t]*)/
284
+ # Declare tabs as equivalent to 4 spaces. This is necessary for
285
+ # Makefiles in which the use of tabs is required.
286
+ found = $1.to_s.gsub("\t", " ").size
287
+
288
+ if found >= @indentation
289
+ # Tab-friendly way to remove indentation.
290
+ remaining = @indentation
291
+ line = line.dup
292
+ while remaining > 0
293
+ if line[0..0] == " "
294
+ remaining -= 1
295
+ else
296
+ # This is a tab.
297
+ remaining -= 4
298
+ end
299
+ line.slice!(0, 1)
300
+ end
301
+ return line
302
+ else
303
+ terminate "wrong indentation: found #{found} characters, should be at least #{@indentation}"
304
+ end
305
+ end
306
+
307
+ def debug(message)
308
+ puts "DEBUG:#{@lineno}: #{message}" if @debug
309
+ end
310
+
311
+ def terminate(message)
312
+ abort "*** ERROR: line #{@lineno}: #{message}"
313
+ end
314
+ end
@@ -49,6 +49,7 @@ task 'test:install_deps' do
49
49
  gem_install = "#{PlatformInfo.ruby_sudo_command} #{gem_install}" if boolean_option('SUDO')
50
50
  sh "#{gem_install} rails -v 2.3.15"
51
51
  sh "#{gem_install} bundler rspec mime-types daemon_controller json rack"
52
+ sh "#{gem_install} mizuho bluecloth" if boolean_option('DOCTOOLS', true)
52
53
  if boolean_option('RAILS_BUNDLES', true)
53
54
  sh "cd test/stub/rails3.0 && bundle install"
54
55
  sh "cd test/stub/rails3.1 && bundle install"
@@ -1,3 +1,134 @@
1
+ ruby-passenger (1:4.0.5-1bbox1~precise1) precise; urgency=high
2
+
3
+ * New upstream release, 4.0.5. Fixes CVE-2013-2119
4
+
5
+ -- John Leach <john@brightbox.co.uk> Wed, 29 May 2013 16:02:35 +0100
6
+
7
+ ruby-passenger (1:4.0.4-1bbox1~precise1) precise; urgency=low
8
+
9
+ * New upstream release, 4.0.4
10
+
11
+ -- John Leach <john@brightbox.co.uk> Tue, 28 May 2013 12:02:36 +0100
12
+
13
+ ruby-passenger (1:4.0.3-bbox1~lucid1) lucid; urgency=low
14
+
15
+ * New upstream release, 4.0.3
16
+ * Remove packaging fix patches now applied upstream
17
+ * Set Breaks field to remove old passenger packages
18
+
19
+ -- John Leach <john@brightbox.co.uk> Sat, 25 May 2013 11:50:16 +0100
20
+
21
+ ruby-passenger (1:4.0.2-bbox2~lucid1) lucid; urgency=low
22
+
23
+ * New upstream release, 4.0.2
24
+
25
+ -- John Leach <john@brightbox.co.uk> Wed, 22 May 2013 14:04:01 +0000
26
+
27
+ passenger (1:3.0.14-1bbox1+ng) precise; urgency=low
28
+
29
+ * New upstream release, 3.0.14
30
+ * Bumped epoch to 1 to always prefer over the non-ruby-ng packages
31
+
32
+ -- John Leach <john@brightbox.co.uk> Wed, 25 Jul 2012 18:21:17 +0100
33
+
34
+ passenger (3.0.13-1bbox2+ng) precise; urgency=low
35
+
36
+ * Removed 01_disable_html5_documentation.patch
37
+
38
+ -- John Leach <john@brightbox.co.uk> Fri, 15 Jun 2012 16:10:50 +0100
39
+
40
+ passenger (3.0.13-1bbox1+ng) precise; urgency=low
41
+
42
+ * New upstream release, 3.0.13
43
+
44
+ -- John Leach <john@brightbox.co.uk> Fri, 15 Jun 2012 12:16:50 +0100
45
+
46
+ passenger (3.0.12-1bbox1+ng) lucid; urgency=low
47
+
48
+ * New upstream release, 3.0.12
49
+
50
+ -- John Leach <john@brightbox.co.uk> Fri, 13 Apr 2012 17:19:42 +0100
51
+
52
+ passenger (3.0.11-2bbox5) lucid; urgency=low
53
+
54
+ * Fix dependencies to avoid conflicts when upgrading from old
55
+ passenger-common packages
56
+
57
+ -- John Leach <john@brightbox.co.uk> Thu, 05 Apr 2012 12:51:50 +0100
58
+
59
+ passenger (3.0.11-2bbox4) lucid; urgency=low
60
+
61
+ * Added libgoogle-perftools-dev build dependency, for building with Ruby
62
+ Enterprise Edition
63
+
64
+ -- John Leach <john@brightbox.co.uk> Thu, 23 Feb 2012 20:19:41 +0000
65
+
66
+ passenger (3.0.11-2bbox3) lucid; urgency=low
67
+
68
+ * Added ruby1.9.1-dev build dependency
69
+
70
+ -- John Leach <john@brightbox.co.uk> Wed, 22 Feb 2012 23:34:40 +0000
71
+
72
+ passenger (3.0.11-2bbox2) lucid; urgency=low
73
+
74
+ * Support for ruby 1.9.x (adds passenger-common1.8 and
75
+ passenger-common1.9.1)
76
+
77
+ -- John Leach <john@brightbox.co.uk> Wed, 22 Feb 2012 17:43:02 +0000
78
+
79
+ passenger (3.0.11-1bbox1) lucid; urgency=low
80
+
81
+ * New upstream release, 3.0.11
82
+
83
+ -- John Leach <john@brightbox.co.uk> Mon, 28 Nov 2011 12:32:08 +0000
84
+
85
+ passenger (3.0.9-1bbox1) lucid; urgency=low
86
+
87
+ * New upstream release, 3.0.9
88
+
89
+ -- John Leach <john@brightbox.co.uk> Mon, 05 Sep 2011 22:21:03 +0100
90
+
91
+ passenger (3.0.8-1bbox1) lucid; urgency=low
92
+
93
+ * New upstream release, 3.0.8
94
+ * Added 01_disable_html5_documentation.patch to fix documentation build with
95
+ older versions of asciidoc
96
+
97
+ -- John Leach <john@brightbox.co.uk> Thu, 04 Aug 2011 22:28:58 +0100
98
+
99
+ passenger (3.0.7-1bbox2) lucid; urgency=low
100
+
101
+ * Made passenger-dev suitable for building nginx-passenger
102
+
103
+ -- John Leach <john@brightbox.co.uk> Fri, 15 Apr 2011 11:36:04 +0100
104
+
105
+ passenger (3.0.7-1bbox1) lucid; urgency=low
106
+
107
+ * New upstream version, 3.0.7
108
+
109
+ -- John Leach <john@brightbox.co.uk> Thu, 14 Apr 2011 21:54:24 +0100
110
+
111
+ passenger (3.0.4-1bbox1) lucid; urgency=low
112
+
113
+ * New upstream version
114
+ * Removed 01_add_missing_packaging_constants.patch as it's now upstream
115
+ * Initial passenger-dev package
116
+
117
+ -- John Leach <john@brightbox.co.uk> Thu, 03 Mar 2011 11:56:57 +0000
118
+
119
+ passenger (3.0.1-1bbox2) hardy; urgency=low
120
+
121
+ * Fixed packaging bug with vendored libev
122
+
123
+ -- John Leach <john@brightbox.co.uk> Sun, 12 Dec 2010 16:57:41 +0000
124
+
125
+ passenger (3.0.1-1bbox1) hardy; urgency=low
126
+
127
+ * New Upstream Version, 3.0.1
128
+ * Added 01_add_missing_packaging_constants.patch to fix issue #592
129
+
130
+ -- John Leach <john@brightbox.co.uk> Sun, 12 Dec 2010 14:20:31 +0000
131
+
1
132
  passenger (3.0.0-1bbox3) hardy; urgency=low
2
133
 
3
134
  * Fixed clean of vendored libev