resque 1.9.0 → 1.9.1

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

Potentially problematic release.


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

Files changed (3) hide show
  1. data/HISTORY.md +167 -0
  2. data/lib/resque/version.rb +1 -1
  3. metadata +6 -5
@@ -0,0 +1,167 @@
1
+ ## 1.9.1 (2010-06-04)
2
+
3
+ * Less strict JSON dependency
4
+ * Included HISTORY.md in gem
5
+
6
+ ## 1.9.0 (2010-06-04)
7
+
8
+ * Redis 2 support
9
+ * Depend on redis-namespace 0.5.0
10
+ * Added Resque::VERSION constant (alias of Resque::Version)
11
+ * Bugfix: Specify JSON dependency
12
+ * Bugfix: Hoptoad plugin now works on 1.9
13
+
14
+ ## 1.8.5 (2010-05-18)
15
+
16
+ * Bugfix: Be more liberal in which Redis clients we accept.
17
+
18
+ ## 1.8.4 (2010-05-18)
19
+
20
+ * Try to resolve redis-namespace dependency issue
21
+
22
+ ## 1.8.3 (2010-05-17)
23
+
24
+ * Depend on redis-rb ~> 1.0.7
25
+
26
+ ## 1.8.2 (2010-05-03)
27
+
28
+ * Bugfix: Include "tasks/" dir in RubyGem
29
+
30
+ ## 1.8.1 (2010-04-29)
31
+
32
+ * Bugfix: Multiple failure backend did not support requeue-ing failed jobs
33
+ * Bugfix: Fix /failed when error has no backtrace
34
+ * Bugfix: Add `Redis::DistRedis` as a valid client
35
+
36
+ ## 1.8.0 (2010-04-07)
37
+
38
+ * Jobs that never complete due to killed worker are now failed.
39
+ * Worker "working" state is now maintained by the parent, not the child.
40
+ * Stopped using deprecated redis.rb methods
41
+ * `Worker.working` race condition fixed
42
+ * `Worker#process` has been deprecated.
43
+ * Monit example fixed
44
+ * Redis::Client and Redis::Namespace can be passed to `Resque.redis=`
45
+
46
+ ## 1.7.1 (2010-04-02)
47
+
48
+ * Bugfix: Make job hook execution order consistent
49
+ * Bugfix: stdout buffering in child process
50
+
51
+ ## 1.7.0 (2010-03-31)
52
+
53
+ * Job hooks API. See docs/HOOKS.md.
54
+ * web: Hovering over dates shows a timestamp
55
+ * web: AJAXify retry action for failed jobs
56
+ * web bugfix: Fix pagination bug
57
+
58
+ ## 1.6.1 (2010-03-25)
59
+
60
+ * Bugfix: Workers may not be clearing their state correctly on
61
+ shutdown
62
+ * Added example monit config.
63
+ * Exception class is now recorded when an error is raised in a
64
+ worker.
65
+ * web: Unit tests
66
+ * web: Show namespace in header and footer
67
+ * web: Remove a queue
68
+ * web: Retry failed jobs
69
+
70
+ ## 1.6.0 (2010-03-09)
71
+
72
+ * Added `before_first_fork`, `before_fork`, and `after_fork` hooks.
73
+ * Hoptoad: Added server_environment config setting
74
+ * Hoptoad bugfix: Don't depend on RAILS_ROOT
75
+ * 1.8.6 compat fixes
76
+
77
+ ## 1.5.2 (2010-03-03)
78
+
79
+ * Bugfix: JSON check was crazy.
80
+
81
+ ## 1.5.1 (2010-03-03)
82
+
83
+ * `Job.destroy` and `Resque.dequeue` return the # of destroyed jobs.
84
+ * Hoptoad notifier improvements
85
+ * Specify the namespace with `resque-web` by passing `-N namespace`
86
+ * Bugfix: Don't crash when trying to parse invalid JSON.
87
+ * Bugfix: Non-standard namespace support
88
+ * Web: Red backgound for queue "failed" only shown if there are failed jobs.
89
+ * Web bugfix: Tabs highlight properly now
90
+ * Web bugfix: ZSET partial support in stats
91
+ * Web bugfix: Deleting failed jobs works again
92
+ * Web bugfix: Sets (or zsets, lists, etc) now paginate.
93
+
94
+ ## 1.5.0 (2010-02-17)
95
+
96
+ * Version now included in procline, e.g. `resque-1.5.0: Message`
97
+ * Web bugfix: Ignore idle works in the "working" page
98
+ * Added `Resque::Job.destroy(queue, klass, *args)`
99
+ * Added `Resque.dequeue(klass, *args)`
100
+
101
+ ## 1.4.0 (2010-02-11)
102
+
103
+ * Fallback when unable to bind QUIT and USR1 for Windows and JRuby.
104
+ * Fallback when no `Kernel.fork` is provided (for IronRuby).
105
+ * Web: Rounded corners in Firefox
106
+ * Cut down system calls in `Worker#prune_dead_workers`
107
+ * Enable switching DB in a Redis server from config
108
+ * Support USR2 and CONT to stop and start job processing.
109
+ * Web: Add example failing job
110
+ * Bugfix: `Worker#unregister_worker` shouldn't call `done_working`
111
+ * Bugfix: Example god config now restarts Resque properly.
112
+ * Multiple failure backends now permitted.
113
+ * Hoptoad failure backend updated to new API
114
+
115
+ ## 1.3.1 (2010-01-11)
116
+
117
+ * Vegas bugfix: Don't error without a config
118
+
119
+ ## 1.3.0 (2010-01-11)
120
+
121
+ * Use Vegas for resque-web
122
+ * Web Bugfix: Show proper date/time value for failed_at on Failures
123
+ * Web Bugfix: Make the / route more flexible
124
+ * Add Resque::Server.tabs array (so plugins can add their own tabs)
125
+ * Start using [Semantic Versioning](http://semver.org/)
126
+
127
+ ## 1.2.4 (2009-12-15)
128
+
129
+ * Web Bugfix: fix key links on stat page
130
+
131
+ ## 1.2.3 (2009-12-15)
132
+
133
+ * Bugfix: Fixed `rand` seeding in child processes.
134
+ * Bugfix: Better JSON encoding/decoding without Yajl.
135
+ * Bugfix: Avoid `ps` flag error on Linux
136
+ * Add `PREFIX` observance to `rake` install tasks.
137
+
138
+ ## 1.2.2 (2009-12-08)
139
+
140
+ * Bugfix: Job equality was not properly implemented.
141
+
142
+ ## 1.2.1 (2009-12-07)
143
+
144
+ * Added `rake resque:workers` task for starting multiple workers.
145
+ * 1.9.x compatibility
146
+ * Bugfix: Yajl decoder doesn't care about valid UTF-8
147
+ * config.ru loads RESQUECONFIG if the ENV variable is set.
148
+ * `resque-web` now sets RESQUECONFIG
149
+ * Job objects know if they are equal.
150
+ * Jobs can be re-queued using `Job#recreate`
151
+
152
+ ## 1.2.0 (2009-11-25)
153
+
154
+ * If USR1 is sent and no child is found, shutdown.
155
+ * Raise when a job class does not respond to `perform`.
156
+ * Added `Resque.remove_queue` for deleting a queue
157
+
158
+ ## 1.1.0 (2009-11-04)
159
+
160
+ * Bugfix: Broken ERB tag in failure UI
161
+ * Bugfix: Save the worker's ID, not the worker itself, in the failure module
162
+ * Redesigned the sinatra web interface
163
+ * Added option to clear failed jobs
164
+
165
+ ## 1.0.0 (2009-11-03)
166
+
167
+ * First release.
@@ -1,3 +1,3 @@
1
1
  module Resque
2
- Version = VERSION = '1.9.0'
2
+ Version = VERSION = '1.9.1'
3
3
  end
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 1
7
7
  - 9
8
- - 0
9
- version: 1.9.0
8
+ - 1
9
+ version: 1.9.1
10
10
  platform: ruby
11
11
  authors:
12
12
  - Chris Wanstrath
@@ -64,13 +64,13 @@ dependencies:
64
64
  prerelease: false
65
65
  requirement: &id004 !ruby/object:Gem::Requirement
66
66
  requirements:
67
- - - ~>
67
+ - - ">="
68
68
  - !ruby/object:Gem::Version
69
69
  segments:
70
70
  - 1
71
71
  - 1
72
- - 3
73
- version: 1.1.3
72
+ - 0
73
+ version: 1.1.0
74
74
  type: :runtime
75
75
  version_requirements: *id004
76
76
  description: " Resque is a Redis-backed Ruby library for creating background jobs,\n placing those jobs on multiple queues, and processing them later.\n\n Background jobs can be any Ruby class or module that responds to\n perform. Your existing classes can easily be converted to background\n jobs or you can create new classes specifically to do work. Or, you\n can do both.\n\n Resque is heavily inspired by DelayedJob (which rocks) and is\n comprised of three parts:\n\n * A Ruby library for creating, querying, and processing jobs\n * A Rake task for starting a worker which processes jobs\n * A Sinatra app for monitoring queues, jobs, and workers.\n"
@@ -87,6 +87,7 @@ files:
87
87
  - README.markdown
88
88
  - Rakefile
89
89
  - LICENSE
90
+ - HISTORY.md
90
91
  - lib/resque/errors.rb
91
92
  - lib/resque/failure/base.rb
92
93
  - lib/resque/failure/hoptoad.rb