| CODENOTIFIER | HelpYou are not signed inSign in |
Project: Quartz
Revision: 826
Author: jhouse
Date: 20 Aug 2008 01:00:56
Changes:updates to docs from wiki.
Files:| ... | ...@@ -39,6 +39,7 @@ | |
| 39 | 39 | <li><b>Apache Cocoon</b> - uses Quartz to provide scheduling features and to run application background processes.</li> |
| 40 | 40 | <li><b>JBoss</b> - uses Quartz for the implementation of a number of services within its infrastructure.</li> |
| 41 | 41 | <li><b>Adobe</b> - uses Quartz for scheduling database operations in their LiveCycle Enterprise Suite.</li> |
| 42 | <li><b>Icebergsofts</b> - uses Quartz for job scheduling in iceQA 2009.</li> | |
| 42 | 43 | </ul> |
| 43 | 44 | |
| 44 | 45 |
| ... | ...@@ -1,1018 +1,1095 @@ | |
| 1 | <html> | |
| 2 | <head> | |
| 3 | <title>Quartz 1 - | |
| 4 | Quartz 1.6.1 | |
| 5 | </title> | |
| 6 | <link rel="stylesheet" href="styles/site.css" type="text/css" /> | |
| 7 | <META http-equiv="Content-Type" content="text/html; charset=UTF-8"> | |
| 8 | </head> | |
| 9 | ||
| 10 | <body> | |
| 11 | <table class="pagecontent" border="0" cellpadding="0" cellspacing="0" width="100%" bgcolor="#ffffff"> | |
| 12 | <tr> | |
| 13 | <td valign="top" class="pagebody"> | |
| 14 | <h2><a name="Quartz1.6.1-Quartz1.6.2ReleaseNotes"></a>Quartz 1.6.2 Release Notes</h2> | |
| 15 | ||
| 16 | <p>This release contains some new features, many bug fixes and improvements to Quartz.</p> | |
| 17 | ||
| 18 | <p>See the changelog below for complete details of this release.</p> | |
| 19 | ||
| 20 | <h3><a name="Quartz1.6.1-MostSignificantofNewFeatures"></a>Most Significant of New Features</h3> | |
| 21 | ||
| 22 | <ul> | |
| 23 | <li><b><em>Trigger Priority</em></b>. New 'priority' scheduling support - controls selection of the next trigger to fire in cases where multiple triggers are waiting. See <a href="TutorialLesson4.html" title="TutorialLesson4">Quartz Tutorial Lesson 4 for a description</a>.</li> | |
| 24 | </ul> | |
| 25 | ||
| 26 | ||
| 27 | <ul> | |
| 28 | <li><b><em>JMS Integration</em></b>. Some JMS-related features (such as a send-message job) are now included with Quartz. This feature set will increase over the next few releases of Quartz.</li> | |
| 29 | </ul> | |
| 30 | ||
| 31 | ||
| 32 | <ul> | |
| 33 | <li>Utility classes <b><em>BroadcastSchedulerLister, FilterAndBroadcastJobListener, FilterAndBroadcastTriggerListener, and JobChainingJobListener</em></b></li> | |
| 34 | </ul> | |
| 35 | ||
| 36 | ||
| 37 | <h3><a name="Quartz1.6.1-OtherKeyChanges"></a>Other Key Changes</h3> | |
| 38 | ||
| 39 | <ul> | |
| 40 | <li>Improvements to efficiency in several areas of the codebase.</li> | |
| 41 | <li>A Trigger is now not "acquired" by the scheduler until there is a thread available (in the ThreadPool) to execute it. This will lead to improved load balancing within a clustered setup, as well as other benefits.</li> | |
| 42 | <li>Ability to specify a locking semaphore implementation when using JDBC JobStore.</li> | |
| 43 | <li>Convenience classes JobListenerSupport, SchedulerListenerSupport, TriggerListenerSupport.</li> | |
| 44 | <li>Many more!</li> | |
| 45 | </ul> | |
| 46 | ||
| 47 | ||
| 48 | <h3><a name="Quartz1.6.1-CoreAPIchanges"></a>Core API changes</h3> | |
| 49 | ||
| 50 | <ul> | |
| 51 | <li>Introduced Trigger.setPriority(int)</li> | |
| 52 | </ul> | |
| 53 | ||
| 54 | ||
| 55 | <h3><a name="Quartz1.6.1-MigrationNotes"></a>Migration Notes</h3> | |
| 56 | ||
| 57 | <p><b>Necessary Code Changes</b></p> | |
| 58 | <table class='confluenceTable'><tbody> | |
| 59 | <tr> | |
| 60 | <th class='confluenceTh'> Version </th> | |
| 61 | <th class='confluenceTh'> Description </th> | |
| 62 | <th class='confluenceTh'> Old Code </th> | |
| 63 | <th class='confluenceTh'> New Code </th> | |
| 64 | </tr> | |
| 65 | <tr> | |
| 66 | <td class='confluenceTd'> 1.6.0 </td> | |
| 67 | <td class='confluenceTd'> no changes necessary </td> | |
| 68 | <td class='confluenceTd'> </td> | |
| 69 | <td class='confluenceTd'> </td> | |
| 70 | </tr> | |
| 71 | </tbody></table> | |
| 72 | ||
| 73 | <p><b>Necessary Database Changes</b> (if using JDBC-JobStore)</p> | |
| 74 | <table class='confluenceTable'><tbody> | |
| 75 | <tr> | |
| 76 | <th class='confluenceTh'> Version </th> | |
| 77 | <th class='confluenceTh'> Description </th> | |
| 78 | <th class='confluenceTh'> update command(s) </th> | |
| 79 | </tr> | |
| 80 | <tr> | |
| 81 | <td class='confluenceTd'> 1.6.0 </td> | |
| 82 | <td class='confluenceTd'> no changes necessary </td> | |
| 83 | <td class='confluenceTd'> </td> | |
| 84 | </tr> | |
| 85 | </tbody></table> | |
| 86 | ||
| 87 | <h3><a name="Quartz1.6.1-Changelog"></a>Changelog</h3> | |
| 88 | <p><a name="jiraissues"> | |
| 89 | <table width="100%" cellspacing="0" class="grid"> | |
| 90 | <tr> | |
| 91 | <th colspan="3" style="text-align: left;"> | |
| 92 | <a href="/spaces/doexportspace.action?key=QRTZ1¯o.refresh=true#jiraissues"><img src="/images/icons/refresh_16.png" height="16" width="16" border="0" align="right" title="refresh"/></a> | |
| 93 | <a href="http://jira.opensymphony.com/secure/IssueNavigator.jspa?&pid=10060&fixfor=21680&sorter/field=issuekey&sorter/order=TYPE&tempMax=180&reset=true&">OpenSymphony JIRA</a> | |
| 94 | <span class="smalltext">(82 issues)</span> | |
| 95 | </th> | |
| 96 | </tr> | |
| 97 | <tr> | |
| 98 | <th style="text-align: left;"> | |
| 99 | T </th> | |
| 100 | <th style="text-align: left;"> | |
| 101 | Key </th> | |
| 102 | <th style="text-align: left;"> | |
| 103 | Summary </th> | |
| 104 | </tr> | |
| 105 | <tr class="rowNormal"> | |
| 106 | <td nowrap="true"> | |
| 107 | <a href="http://jira.opensymphony.com/browse/QUARTZ-35"><img src="http://jira.opensymphony.com/secure/IssueNavigator.jspa?reset=true&pid=10060&fixfor=21680&sorter/field=issuekey&sorter/order=TYPE/images/icons/bug.gif" alt="Bug" border="0" /></a> | |
| 108 | </td> | |
| 109 | <td nowrap="true"> | |
| 110 | <a href="http://jira.opensymphony.com/browse/QUARTZ-35">QUARTZ-35</a> | |
| 111 | </td> | |
| 112 | <td > | |
| 113 | <a href="http://jira.opensymphony.com/browse/QUARTZ-35">Noisy stack-trace during shutdown</a> | |
| 114 | </td> | |
| 115 | </tr> | |
| 116 | <tr class="rowAlternate"> | |
| 117 | <td nowrap="true"> | |
| 118 | <a href="http://jira.opensymphony.com/browse/QUARTZ-340"><img src="http://jira.opensymphony.com/secure/IssueNavigator.jspa?reset=true&pid=10060&fixfor=21680&sorter/field=issuekey&sorter/order=TYPE/images/icons/bug.gif" alt="Bug" border="0" /></a> | |
| 119 | </td> | |
| 120 | <td nowrap="true"> | |
| 121 | <a href="http://jira.opensymphony.com/browse/QUARTZ-340">QUARTZ-340</a> | |
| 122 | </td> | |
| 123 | <td > | |
| 124 | <a href="http://jira.opensymphony.com/browse/QUARTZ-340">In JobRunShell.run() notifyJobStoreJobComplete exception always returns</a> | |
| 125 | </td> | |
| 126 | </tr> | |
| 127 | <tr class="rowNormal"> | |
| 128 | <td nowrap="true"> | |
| 129 | <a href="http://jira.opensymphony.com/browse/QUARTZ-372"><img src="http://jira.opensymphony.com/secure/IssueNavigator.jspa?reset=true&pid=10060&fixfor=21680&sorter/field=issuekey&sorter/order=TYPE/images/icons/task.gif" alt="Task" border="0" /></a> | |
| 130 | </td> | |
| 131 | <td nowrap="true"> | |
| 132 | <a href="http://jira.opensymphony.com/browse/QUARTZ-372">QUARTZ-372</a> | |
| 133 | </td> | |
| 134 | <td > | |
| 135 | <a href="http://jira.opensymphony.com/browse/QUARTZ-372">Clarify Scheduler.getCurrentlyExecutingJobs()</a> | |
| 136 | </td> | |
| 137 | </tr> | |
| 138 | <tr class="rowAlternate"> | |
| 139 | <td nowrap="true"> | |
| 140 | <a href="http://jira.opensymphony.com/browse/QUARTZ-398"><img src="http://jira.opensymphony.com/secure/IssueNavigator.jspa?reset=true&pid=10060&fixfor=21680&sorter/field=issuekey&sorter/order=TYPE/images/icons/improvement.gif" alt="Improvement" border="0" /></a> | |
| 141 | </td> | |
| 142 | <td nowrap="true"> | |
| 143 | <a href="http://jira.opensymphony.com/browse/QUARTZ-398">QUARTZ-398</a> | |
| 144 | </td> | |
| 145 | <td > | |
| 146 | <a href="http://jira.opensymphony.com/browse/QUARTZ-398">Upgrade to Commons-Pool 1.3</a> | |
| 147 | </td> | |
| 148 | </tr> | |
| 149 | <tr class="rowNormal"> | |
| 150 | <td nowrap="true"> | |
| 151 | <a href="http://jira.opensymphony.com/browse/QUARTZ-419"><img src="http://jira.opensymphony.com/secure/IssueNavigator.jspa?reset=true&pid=10060&fixfor=21680&sorter/field=issuekey&sorter/order=TYPE/images/icons/bug.gif" alt="Bug" border="0" /></a> | |
| 152 | </td> | |
| 153 | <td nowrap="true"> | |
| 154 | <a href="http://jira.opensymphony.com/browse/QUARTZ-419">QUARTZ-419</a> | |
| 155 | </td> | |
| 156 | <td > | |
| 157 | <a href="http://jira.opensymphony.com/browse/QUARTZ-419">CRON_EXPRESSION database field size too small</a> | |
| 158 | </td> | |
| 159 | </tr> | |
| 160 | <tr class="rowAlternate"> | |
| 161 | <td nowrap="true"> | |
| 162 | <a href="http://jira.opensymphony.com/browse/QUARTZ-451"><img src="http://jira.opensymphony.com/secure/IssueNavigator.jspa?reset=true&pid=10060&fixfor=21680&sorter/field=issuekey&sorter/order=TYPE/images/icons/task.gif" alt="Task" border="0" /></a> | |
| 163 | </td> | |
| 164 | <td nowrap="true"> | |
| 165 | <a href="http://jira.opensymphony.com/browse/QUARTZ-451">QUARTZ-451</a> | |
| 166 | </td> | |
| 167 | <td > | |
| 168 | <a href="http://jira.opensymphony.com/browse/QUARTZ-451">Upgrade to new versions of dependencies</a> | |
| 169 | </td> | |
| 170 | </tr> | |
| 171 | <tr class="rowNormal"> | |
| 172 | <td nowrap="true"> | |
| 173 | <a href="http://jira.opensymphony.com/browse/QUARTZ-465"><img src="http://jira.opensymphony.com/secure/IssueNavigator.jspa?reset=true&pid=10060&fixfor=21680&sorter/field=issuekey&sorter/order=TYPE/images/icons/bug.gif" alt="Bug" border="0" /></a> | |
| 174 | </td> | |
| 175 | <td nowrap="true"> | |
| 176 | <a href="http://jira.opensymphony.com/browse/QUARTZ-465">QUARTZ-465</a> | |
| 177 | </td> | |
| 178 | <td > | |
| 179 | <a href="http://jira.opensymphony.com/browse/QUARTZ-465">A misfire that completes a Trigger does not notify SchedulerListener.triggerFinalized()</a> | |
| 180 | </td> | |
| 181 | </tr> | |
| 182 | <tr class="rowAlternate"> | |
| 183 | <td nowrap="true"> | |
| 184 | <a href="http://jira.opensymphony.com/browse/QUARTZ-482"><img src="http://jira.opensymphony.com/secure/IssueNavigator.jspa?reset=true&pid=10060&fixfor=21680&sorter/field=issuekey&sorter/order=TYPE/images/icons/bug.gif" alt="Bug" border="0" /></a> | |
| 185 | </td> | |
| 186 | <td nowrap="true"> | |
| 187 | <a href="http://jira.opensymphony.com/browse/QUARTZ-482">QUARTZ-482</a> | |
| 188 | </td> | |
| 189 | <td > | |
| 190 | <a href="http://jira.opensymphony.com/browse/QUARTZ-482">Missing Maven POMs</a> | |
| 191 | </td> | |
| 192 | </tr> | |
| 193 | <tr class="rowNormal"> | |
| 194 | <td nowrap="true"> | |
| 195 | <a href="http://jira.opensymphony.com/browse/QUARTZ-488"><img src="http://jira.opensymphony.com/secure/IssueNavigator.jspa?reset=true&pid=10060&fixfor=21680&sorter/field=issuekey&sorter/order=TYPE/images/icons/bug.gif" alt="Bug" border="0" /></a> | |
| 196 | </td> | |
| 197 | <td nowrap="true"> | |
| 198 | <a href="http://jira.opensymphony.com/browse/QUARTZ-488">QUARTZ-488</a> | |
| 199 | </td> | |
| 200 | <td > | |
| 201 | <a href="http://jira.opensymphony.com/browse/QUARTZ-488">JobStoreCMT isTxIsolationLevelReadCommitted property sets TRANSACTION_READ_UNCOMMITTED</a> | |
| 202 | </td> | |
| 203 | </tr> | |
| 204 | <tr class="rowAlternate"> | |
| 205 | <td nowrap="true"> | |
| 206 | <a href="http://jira.opensymphony.com/browse/QUARTZ-489"><img src="http://jira.opensymphony.com/secure/IssueNavigator.jspa?reset=true&pid=10060&fixfor=21680&sorter/field=issuekey&sorter/order=TYPE/images/icons/bug.gif" alt="Bug" border="0" /></a> | |
| 207 | </td> | |
| 208 | <td nowrap="true"> | |
| 209 | <a href="http://jira.opensymphony.com/browse/QUARTZ-489">QUARTZ-489</a> | |
| 210 | </td> | |
| 211 | <td > | |
| 212 | <a href="http://jira.opensymphony.com/browse/QUARTZ-489">HSQLDB booleans broken for version 1.7.2+</a> | |
| 213 | </td> | |
| 214 | </tr> | |
| 215 | <tr class="rowNormal"> | |
| 216 | <td nowrap="true"> | |
| 217 | <a href="http://jira.opensymphony.com/browse/QUARTZ-513"><img src="http://jira.opensymphony.com/secure/IssueNavigator.jspa?reset=true&pid=10060&fixfor=21680&sorter/field=issuekey&sorter/order=TYPE/images/icons/bug.gif" alt="Bug" border="0" /></a> | |
| 218 | </td> | |
| 219 | <td nowrap="true"> | |
| 220 | <a href="http://jira.opensymphony.com/browse/QUARTZ-513">QUARTZ-513</a> | |
| 221 | </td> | |
| 222 | <td > | |
| 223 | <a href="http://jira.opensymphony.com/browse/QUARTZ-513">EOFException being throw in StdJDBCDelegate.getObjectFromBlob for jobs with no jobdata</a> | |
| 224 | </td> | |
| 225 | </tr> | |
| 226 | <tr class="rowAlternate"> | |
| 227 | <td nowrap="true"> | |
| 228 | <a href="http://jira.opensymphony.com/browse/QUARTZ-516"><img src="http://jira.opensymphony.com/secure/IssueNavigator.jspa?reset=true&pid=10060&fixfor=21680&sorter/field=issuekey&sorter/order=TYPE/images/icons/bug.gif" alt="Bug" border="0" /></a> | |
| 229 | </td> | |
| 230 | <td nowrap="true"> | |
| 231 | <a href="http://jira.opensymphony.com/browse/QUARTZ-516">QUARTZ-516</a> | |
| 232 | </td> | |
| 233 | <td > | |
| 234 | <a href="http://jira.opensymphony.com/browse/QUARTZ-516">Errors in "tables-informix.sql" script file.</a> | |
| 235 | </td> | |
| 236 | </tr> | |
| 237 | <tr class="rowNormal"> | |
| 238 | <td nowrap="true"> | |
| 239 | <a href="http://jira.opensymphony.com/browse/QUARTZ-521"><img src="http://jira.opensymphony.com/secure/IssueNavigator.jspa?reset=true&pid=10060&fixfor=21680&sorter/field=issuekey&sorter/order=TYPE/images/icons/bug.gif" alt="Bug" border="0" /></a> | |
| 240 | </td> | |
| 241 | <td nowrap="true"> | |
| 242 | <a href="http://jira.opensymphony.com/browse/QUARTZ-521">QUARTZ-521</a> | |
| 243 | </td> | |
| 244 | <td > | |
| 245 | <a href="http://jira.opensymphony.com/browse/QUARTZ-521">(reopen) RAMJobStore Trigger deletion infinite loop in acquireNextTrigger </a> | |
| 246 | </td> | |
| 247 | </tr> | |
| 248 | <tr class="rowAlternate"> | |
| 249 | <td nowrap="true"> | |
| 250 | <a href="http://jira.opensymphony.com/browse/QUARTZ-522"><img src="http://jira.opensymphony.com/secure/IssueNavigator.jspa?reset=true&pid=10060&fixfor=21680&sorter/field=issuekey&sorter/order=TYPE/images/icons/bug.gif" alt="Bug" border="0" /></a> | |
| 251 | </td> | |
| 252 | <td nowrap="true"> | |
| 253 | <a href="http://jira.opensymphony.com/browse/QUARTZ-522">QUARTZ-522</a> | |
| 254 | </td> | |
| 255 | <td > | |
| 256 | <a href="http://jira.opensymphony.com/browse/QUARTZ-522">db_tables/tables_informix.sql has systax errors - see updated version in description</a> | |
| 257 | </td> | |
| 258 | </tr> | |
| 259 | <tr class="rowNormal"> | |
| 260 | <td nowrap="true"> | |
| 261 | <a href="http://jira.opensymphony.com/browse/QUARTZ-525"><img src="http://jira.opensymphony.com/secure/IssueNavigator.jspa?reset=true&pid=10060&fixfor=21680&sorter/field=issuekey&sorter/order=TYPE/images/icons/task.gif" alt="Task" border="0" /></a> | |
| 262 | </td> | |
| 263 | <td nowrap="true"> | |
| 264 | <a href="http://jira.opensymphony.com/browse/QUARTZ-525">QUARTZ-525</a> | |
| 265 | </td> | |
| 266 | <td > | |
| 267 | <a href="http://jira.opensymphony.com/browse/QUARTZ-525">More informations about potential Oracle DB lock</a> | |
| 268 | </td> | |
| 269 | </tr> | |
| 270 | <tr class="rowAlternate"> | |
| 271 | <td nowrap="true"> | |
| 272 | <a href="http://jira.opensymphony.com/browse/QUARTZ-533"><img src="http://jira.opensymphony.com/secure/IssueNavigator.jspa?reset=true&pid=10060&fixfor=21680&sorter/field=issuekey&sorter/order=TYPE/images/icons/bug.gif" alt="Bug" border="0" /></a> | |
| 273 | </td> | |
| 274 | <td nowrap="true"> | |
| 275 | <a href="http://jira.opensymphony.com/browse/QUARTZ-533">QUARTZ-533</a> | |
| 276 | </td> | |
| 277 | <td > | |
| 278 | <a href="http://jira.opensymphony.com/browse/QUARTZ-533">Bug when using '/' character in day-of-month expression in CronExpression/CronTrigger</a> | |
| 279 | </td> | |
| 280 | </tr> | |
| 281 | <tr class="rowNormal"> | |
| 282 | <td nowrap="true"> | |
| 283 | <a href="http://jira.opensymphony.com/browse/QUARTZ-536"><img src="http://jira.opensymphony.com/secure/IssueNavigator.jspa?reset=true&pid=10060&fixfor=21680&sorter/field=issuekey&sorter/order=TYPE/images/icons/bug.gif" alt="Bug" border="0" /></a> | |
| 284 | </td> | |
| 285 | <td nowrap="true"> | |
| 286 | <a href="http://jira.opensymphony.com/browse/QUARTZ-536">QUARTZ-536</a> | |
| 287 | </td> | |
| 288 | <td > | |
| 289 | <a href="http://jira.opensymphony.com/browse/QUARTZ-536">Initialization resource files are opened but never closed</a> | |
| 290 | </td> | |
| 291 | </tr> | |
| 292 | <tr class="rowAlternate"> | |
| 293 | <td nowrap="true"> | |
| 294 | <a href="http://jira.opensymphony.com/browse/QUARTZ-538"><img src="http://jira.opensymphony.com/secure/IssueNavigator.jspa?reset=true&pid=10060&fixfor=21680&sorter/field=issuekey&sorter/order=TYPE/images/icons/bug.gif" alt="Bug" border="0" /></a> | |
| 295 | </td> | |
| 296 | <td nowrap="true"> | |
| 297 | <a href="http://jira.opensymphony.com/browse/QUARTZ-538">QUARTZ-538</a> | |
| 298 | </td> | |
| 299 | <td > | |
| 300 | <a href="http://jira.opensymphony.com/browse/QUARTZ-538">WebLogicOracleDelegate throws java.lang.NoSuchMethodException: weblogic.jdbc.base.BaseBlob.putBytes(long, [B)</a> | |
| 301 | </td> | |
| 302 | </tr> | |
| 303 | <tr class="rowNormal"> | |
| 304 | <td nowrap="true"> | |
| 305 | <a href="http://jira.opensymphony.com/browse/QUARTZ-539"><img src="http://jira.opensymphony.com/secure/IssueNavigator.jspa?reset=true&pid=10060&fixfor=21680&sorter/field=issuekey&sorter/order=TYPE/images/icons/bug.gif" alt="Bug" border="0" /></a> | |
| 306 | </td> | |
| 307 | <td nowrap="true"> | |
| 308 | <a href="http://jira.opensymphony.com/browse/QUARTZ-539">QUARTZ-539</a> | |
| 309 | </td> | |
| 310 | <td > | |
| 311 | <a href="http://jira.opensymphony.com/browse/QUARTZ-539">Bugs in JMS SendQueueMessageJob</a> | |
| 312 | </td> | |
| 313 | </tr> | |
| 314 | <tr class="rowAlternate"> | |
| 315 | <td nowrap="true"> | |
| 316 | <a href="http://jira.opensymphony.com/browse/QUARTZ-543"><img src="http://jira.opensymphony.com/secure/IssueNavigator.jspa?reset=true&pid=10060&fixfor=21680&sorter/field=issuekey&sorter/order=TYPE/images/icons/bug.gif" alt="Bug" border="0" /></a> | |
| 317 | </td> | |
| 318 | <td nowrap="true"> | |
| 319 | <a href="http://jira.opensymphony.com/browse/QUARTZ-543">QUARTZ-543</a> | |
| 320 | </td> | |
| 321 | <td > | |
| 322 | <a href="http://jira.opensymphony.com/browse/QUARTZ-543">updateAfterMisfire() not invoked by StdScheduler</a> | |
| 323 | </td> | |
| 324 | </tr> | |
| 325 | <tr class="rowNormal"> | |
| 326 | <td nowrap="true"> | |
| 327 | <a href="http://jira.opensymphony.com/browse/QUARTZ-545"><img src="http://jira.opensymphony.com/secure/IssueNavigator.jspa?reset=true&pid=10060&fixfor=21680&sorter/field=issuekey&sorter/order=TYPE/images/icons/bug.gif" alt="Bug" border="0" /></a> | |
| 328 | </td> | |
| 329 | <td nowrap="true"> | |
| 330 | <a href="http://jira.opensymphony.com/browse/QUARTZ-545">QUARTZ-545</a> | |
| 331 | </td> | |
| 332 | <td > | |
| 333 | <a href="http://jira.opensymphony.com/browse/QUARTZ-545">org.quartz.ee.servlet.QuartzInitializerListener javadoc has misleading example</a> | |
| 334 | </td> | |
| 335 | </tr> | |
| 336 | <tr class="rowAlternate"> | |
| 337 | <td nowrap="true"> | |
| 338 | <a href="http://jira.opensymphony.com/browse/QUARTZ-547"><img src="http://jira.opensymphony.com/secure/IssueNavigator.jspa?reset=true&pid=10060&fixfor=21680&sorter/field=issuekey&sorter/order=TYPE/images/icons/bug.gif" alt="Bug" border="0" /></a> | |
| 339 | </td> | |
| 340 | <td nowrap="true"> | |
| 341 | <a href="http://jira.opensymphony.com/browse/QUARTZ-547">QUARTZ-547</a> | |
| 342 | </td> | |
| 343 | <td > | |
| 344 | <a href="http://jira.opensymphony.com/browse/QUARTZ-547">Daemon thread property specified in the documentation is incorrect.</a> | |
| 345 | </td> | |
| 346 | </tr> | |
| 347 | <tr class="rowNormal"> | |
| 348 | <td nowrap="true"> | |
| 349 | <a href="http://jira.opensymphony.com/browse/QUARTZ-549"><img src="http://jira.opensymphony.com/secure/IssueNavigator.jspa?reset=true&pid=10060&fixfor=21680&sorter/field=issuekey&sorter/order=TYPE/images/icons/bug.gif" alt="Bug" border="0" /></a> | |
| 350 | </td> | |
| 351 | <td nowrap="true"> | |
| 352 | <a href="http://jira.opensymphony.com/browse/QUARTZ-549">QUARTZ-549</a> | |
| 353 | </td> | |
| 354 | <td > | |
| 355 | <a href="http://jira.opensymphony.com/browse/QUARTZ-549">NthIncludedDayTriggerTest won't pass</a> | |
| 356 | </td> | |
| 357 | </tr> | |
| 358 | <tr class="rowAlternate"> | |
| 359 | <td nowrap="true"> | |
| 360 | <a href="http://jira.opensymphony.com/browse/QUARTZ-550"><img src="http://jira.opensymphony.com/secure/IssueNavigator.jspa?reset=true&pid=10060&fixfor=21680&sorter/field=issuekey&sorter/order=TYPE/images/icons/bug.gif" alt="Bug" border="0" /></a> | |
| 361 | </td> | |
| 362 | <td nowrap="true"> | |
| 363 | <a href="http://jira.opensymphony.com/browse/QUARTZ-550">QUARTZ-550</a> | |
| 364 | </td> | |
| 365 | <td > | |
| 366 | <a href="http://jira.opensymphony.com/browse/QUARTZ-550">readme.txt lists incorrect Ant version</a> | |
| 367 | </td> | |
| 368 | </tr> | |
| 369 | <tr class="rowNormal"> | |
| 370 | <td nowrap="true"> | |
| 371 | <a href="http://jira.opensymphony.com/browse/QUARTZ-551"><img src="http://jira.opensymphony.com/secure/IssueNavigator.jspa?reset=true&pid=10060&fixfor=21680&sorter/field=issuekey&sorter/order=TYPE/images/icons/bug.gif" alt="Bug" border="0" /></a> | |
| 372 | </td> | |
| 373 | <td nowrap="true"> | |
| 374 | <a href="http://jira.opensymphony.com/browse/QUARTZ-551">QUARTZ-551</a> | |
| 375 | </td> | |
| 376 | <td > | |
| 377 | <a href="http://jira.opensymphony.com/browse/QUARTZ-551">Build problems with trunk</a> | |
| 378 | </td> | |
| 379 | </tr> | |
| 380 | <tr class="rowAlternate"> | |
| 381 | <td nowrap="true"> | |
| 382 | <a href="http://jira.opensymphony.com/browse/QUARTZ-553"><img src="http://jira.opensymphony.com/secure/IssueNavigator.jspa?reset=true&pid=10060&fixfor=21680&sorter/field=issuekey&sorter/order=TYPE/images/icons/bug.gif" alt="Bug" border="0" /></a> | |
| 383 | </td> | |
| 384 | <td nowrap="true"> | |
| 385 | <a href="http://jira.opensymphony.com/browse/QUARTZ-553">QUARTZ-553</a> | |
| 386 | </td> | |
| 387 | <td > | |
| 388 | <a href="http://jira.opensymphony.com/browse/QUARTZ-553">JobDetail.clone() does not preserve the order of job listeners</a> | |
| 389 | </td> | |
| 390 | </tr> | |
| 391 | <tr class="rowNormal"> | |
| 392 | <td nowrap="true"> | |
| 393 | <a href="http://jira.opensymphony.com/browse/QUARTZ-554"><img src="http://jira.opensymphony.com/secure/IssueNavigator.jspa?reset=true&pid=10060&fixfor=21680&sorter/field=issuekey&sorter/order=TYPE/images/icons/bug.gif" alt="Bug" border="0" /></a> | |
| 394 | </td> | |
| 395 | <td nowrap="true"> | |
| 396 | <a href="http://jira.opensymphony.com/browse/QUARTZ-554">QUARTZ-554</a> | |
| 397 | </td> | |
| 398 | <td > | |
| 399 | <a href="http://jira.opensymphony.com/browse/QUARTZ-554">Trigger.getNextFireTime() returns date in the past</a> | |
| 400 | </td> | |
| 401 | </tr> | |
| 402 | <tr class="rowAlternate"> | |
| 403 | <td nowrap="true"> | |
| 404 | <a href="http://jira.opensymphony.com/browse/QUARTZ-555"><img src="http://jira.opensymphony.com/secure/IssueNavigator.jspa?reset=true&pid=10060&fixfor=21680&sorter/field=issuekey&sorter/order=TYPE/images/icons/bug.gif" alt="Bug" border="0" /></a> | |
| 405 | </td> | |
| 406 | <td nowrap="true"> | |
| 407 | <a href="http://jira.opensymphony.com/browse/QUARTZ-555">QUARTZ-555</a> | |
| 408 | </td> | |
| 409 | <td > | |
| 410 | <a href="http://jira.opensymphony.com/browse/QUARTZ-555">SimpleSemaphore.java contains concurrency bug that can cause </a> | |
| 411 | </td> | |
| 412 | </tr> | |
| 413 | <tr class="rowNormal"> | |
| 414 | <td nowrap="true"> | |
| 415 | <a href="http://jira.opensymphony.com/browse/QUARTZ-557"><img src="http://jira.opensymphony.com/secure/IssueNavigator.jspa?reset=true&pid=10060&fixfor=21680&sorter/field=issuekey&sorter/order=TYPE/images/icons/bug.gif" alt="Bug" border="0" /></a> | |
| 416 | </td> | |
| 417 | <td nowrap="true"> | |
| 418 | <a href="http://jira.opensymphony.com/browse/QUARTZ-557">QUARTZ-557</a> | |
| 419 | </td> | |
| 420 | <td > | |
| 421 | <a href="http://jira.opensymphony.com/browse/QUARTZ-557">Cron/Simple Trigger may return a firing time not included in the calender</a> | |
| 422 | </td> | |
| 423 | </tr> | |
| 424 | <tr class="rowAlternate"> | |
| 425 | <td nowrap="true"> | |
| 426 | <a href="http://jira.opensymphony.com/browse/QUARTZ-558"><img src="http://jira.opensymphony.com/secure/IssueNavigator.jspa?reset=true&pid=10060&fixfor=21680&sorter/field=issuekey&sorter/order=TYPE/images/icons/bug.gif" alt="Bug" border="0" /></a> | |
| 427 | </td> | |
| 428 | <td nowrap="true"> | |
| 429 | <a href="http://jira.opensymphony.com/browse/QUARTZ-558">QUARTZ-558</a> | |
| 430 | </td> | |
| 431 | <td > | |
| 432 | <a href="http://jira.opensymphony.com/browse/QUARTZ-558">NullPointerException cloning CronTrigger without cron expression</a> | |
| 433 | </td> | |
| 434 | </tr> | |
| 435 | <tr class="rowNormal"> | |
| 436 | <td nowrap="true"> | |
| 437 | <a href="http://jira.opensymphony.com/browse/QUARTZ-559"><img src="http://jira.opensymphony.com/secure/IssueNavigator.jspa?reset=true&pid=10060&fixfor=21680&sorter/field=issuekey&sorter/order=TYPE/images/icons/bug.gif" alt="Bug" border="0" /></a> | |
| 438 | </td> | |
| 439 | <td nowrap="true"> | |
| 440 | <a href="http://jira.opensymphony.com/browse/QUARTZ-559">QUARTZ-559</a> | |
| 441 | </td> | |
| 442 | <td > | |
| 443 | <a href="http://jira.opensymphony.com/browse/QUARTZ-559">Example6 BadJob1.java calls incorrect function</a> | |
| 444 | </td> | |
| 445 | </tr> | |
| 446 | <tr class="rowAlternate"> | |
| 447 | <td nowrap="true"> | |
| 448 | <a href="http://jira.opensymphony.com/browse/QUARTZ-560"><img src="http://jira.opensymphony.com/secure/IssueNavigator.jspa?reset=true&pid=10060&fixfor=21680&sorter/field=issuekey&sorter/order=TYPE/images/icons/bug.gif" alt="Bug" border="0" /></a> | |
| 449 | </td> | |
| 450 | <td nowrap="true"> | |
| 451 | <a href="http://jira.opensymphony.com/browse/QUARTZ-560">QUARTZ-560</a> | |
| 452 | </td> | |
| 453 | <td > | |
| 454 | <a href="http://jira.opensymphony.com/browse/QUARTZ-560">Trigger with empty JobDataMap can't be loaded in Derby and HSQLDB</a> | |
| 455 | </td> | |
| 456 | </tr> | |
| 457 | <tr class="rowNormal"> | |
| 458 | <td nowrap="true"> | |
| 459 | <a href="http://jira.opensymphony.com/browse/QUARTZ-562"><img src="http://jira.opensymphony.com/secure/IssueNavigator.jspa?reset=true&pid=10060&fixfor=21680&sorter/field=issuekey&sorter/order=TYPE/images/icons/bug.gif" alt="Bug" border="0" /></a> | |
| 460 | </td> | |
| 461 | <td nowrap="true"> | |
| 462 | <a href="http://jira.opensymphony.com/browse/QUARTZ-562">QUARTZ-562</a> | |
| 463 | </td> | |
| 464 | <td > | |
| 465 | <a href="http://jira.opensymphony.com/browse/QUARTZ-562">Remove dependency on jta.jar for non-J2EE environments</a> | |
| 466 | </td> | |
| 467 | </tr> | |
| 468 | <tr class="rowAlternate"> | |
| 469 | <td nowrap="true"> | |
| 470 | <a href="http://jira.opensymphony.com/browse/QUARTZ-563"><img src="http://jira.opensymphony.com/secure/IssueNavigator.jspa?reset=true&pid=10060&fixfor=21680&sorter/field=issuekey&sorter/order=TYPE/images/icons/bug.gif" alt="Bug" border="0" /></a> | |
| 471 | </td> | |
| 472 | <td nowrap="true"> | |
| 473 | <a href="http://jira.opensymphony.com/browse/QUARTZ-563">QUARTZ-563</a> | |
| 474 | </td> | |
| 475 | <td > | |
| 476 | <a href="http://jira.opensymphony.com/browse/QUARTZ-563">RAMJobStore.triggerFired() fails to return null in some cases</a> | |
| 477 | </td> | |
| 478 | </tr> | |
| 479 | <tr class="rowNormal"> | |
| 480 | <td nowrap="true"> | |
| 481 | <a href="http://jira.opensymphony.com/browse/QUARTZ-564"><img src="http://jira.opensymphony.com/secure/IssueNavigator.jspa?reset=true&pid=10060&fixfor=21680&sorter/field=issuekey&sorter/order=TYPE/images/icons/bug.gif" alt="Bug" border="0" /></a> | |
| 482 | </td> | |
| 483 | <td nowrap="true"> | |
| 484 | <a href="http://jira.opensymphony.com/browse/QUARTZ-564">QUARTZ-564</a> | |
| 485 | </td> | |
| 486 | <td > | |
| 487 | <a href="http://jira.opensymphony.com/browse/QUARTZ-564">misspelled class name</a> | |
| 488 | </td> | |
| 489 | </tr> | |
| 490 | <tr class="rowAlternate"> | |
| 491 | <td nowrap="true"> | |
| 492 | <a href="http://jira.opensymphony.com/browse/QUARTZ-565"><img src="http://jira.opensymphony.com/secure/IssueNavigator.jspa?reset=true&pid=10060&fixfor=21680&sorter/field=issuekey&sorter/order=TYPE/images/icons/bug.gif" alt="Bug" border="0" /></a> | |
| 493 | </td> | |
| 494 | <td nowrap="true"> | |
| 495 | <a href="http://jira.opensymphony.com/browse/QUARTZ-565">QUARTZ-565</a> | |
| 496 | </td> | |
| 497 | <td > | |
| 498 | <a href="http://jira.opensymphony.com/browse/QUARTZ-565">Example's job.xml has error in quartz 1.6.0</a> | |
| 499 | </td> | |
| 500 | </tr> | |
| 501 | <tr class="rowNormal"> | |
| 502 | <td nowrap="true"> | |
| 503 | <a href="http://jira.opensymphony.com/browse/QUARTZ-566"><img src="http://jira.opensymphony.com/secure/IssueNavigator.jspa?reset=true&pid=10060&fixfor=21680&sorter/field=issuekey&sorter/order=TYPE/images/icons/bug.gif" alt="Bug" border="0" /></a> | |
| 504 | </td> | |
| 505 | <td nowrap="true"> | |
| 506 | <a href="http://jira.opensymphony.com/browse/QUARTZ-566">QUARTZ-566</a> | |
| 507 | </td> | |
| 508 | <td > | |
| 509 | <a href="http://jira.opensymphony.com/browse/QUARTZ-566">MSSQLDelegate.getObjectFromBlob throws org.quartz.JobPersistenceException: Couldn't obtain triggers for job: null [See nested exception: java.io.EOFException] </a> | |
| 510 | </td> | |
| 511 | </tr> | |
| 512 | <tr class="rowAlternate"> | |
| 513 | <td nowrap="true"> | |
| 514 | <a href="http://jira.opensymphony.com/browse/QUARTZ-568"><img src="http://jira.opensymphony.com/secure/IssueNavigator.jspa?reset=true&pid=10060&fixfor=21680&sorter/field=issuekey&sorter/order=TYPE/images/icons/bug.gif" alt="Bug" border="0" /></a> | |
| 515 | </td> | |
| 516 | <td nowrap="true"> | |
| 517 | <a href="http://jira.opensymphony.com/browse/QUARTZ-568">QUARTZ-568</a> | |
| 518 | </td> | |
| 519 | <td > | |
| 520 | <a href="http://jira.opensymphony.com/browse/QUARTZ-568">jms.jar corrupt</a> | |
| 521 | </td> | |
| 522 | </tr> | |
| 523 | <tr class="rowNormal"> | |
| 524 | <td nowrap="true"> | |
| 525 | <a href="http://jira.opensymphony.com/browse/QUARTZ-571"><img src="http://jira.opensymphony.com/secure/IssueNavigator.jspa?reset=true&pid=10060&fixfor=21680&sorter/field=issuekey&sorter/order=TYPE/images/icons/bug.gif" alt="Bug" border="0" /></a> | |
| 526 | </td> | |
| 527 | <td nowrap="true"> | |
| 528 | <a href="http://jira.opensymphony.com/browse/QUARTZ-571">QUARTZ-571</a> | |
| 529 | </td> | |
| 530 | <td > | |
| 531 | <a href="http://jira.opensymphony.com/browse/QUARTZ-571">CronExpression is not building the expression correctly after being deserialized</a> | |
| 532 | </td> | |
| 533 | </tr> | |
| 534 | <tr class="rowAlternate"> | |
| 535 | <td nowrap="true"> | |
| 536 | <a href="http://jira.opensymphony.com/browse/QUARTZ-573"><img src="http://jira.opensymphony.com/secure/IssueNavigator.jspa?reset=true&pid=10060&fixfor=21680&sorter/field=issuekey&sorter/order=TYPE/images/icons/bug.gif" alt="Bug" border="0" /></a> | |
| 537 | </td> | |
| 538 | <td nowrap="true"> | |
| 539 | <a href="http://jira.opensymphony.com/browse/QUARTZ-573">QUARTZ-573</a> | |
| 540 | </td> | |
| 541 | <td > | |
| 542 | <a href="http://jira.opensymphony.com/browse/QUARTZ-573">Misleading Javadoc for org.quartz.Trigger getPreviousFireTime function.</a> | |
| 543 | </td> | |
| 544 | </tr> | |
| 545 | <tr class="rowNormal"> | |
| 546 | <td nowrap="true"> | |
| 547 | <a href="http://jira.opensymphony.com/browse/QUARTZ-574"><img src="http://jira.opensymphony.com/secure/IssueNavigator.jspa?reset=true&pid=10060&fixfor=21680&sorter/field=issuekey&sorter/order=TYPE/images/icons/bug.gif" alt="Bug" border="0" /></a> | |
| 548 | </td> | |
| 549 | <td nowrap="true"> | |
| 550 | <a href="http://jira.opensymphony.com/browse/QUARTZ-574">QUARTZ-574</a> | |
| 551 | </td> | |
| 552 | <td > | |
| 553 | <a href="http://jira.opensymphony.com/browse/QUARTZ-574">CronExpression.storeExpressionVals miscalculates month number for invalid month names</a> | |
| 554 | </td> | |
| 555 | </tr> | |
| 556 | <tr class="rowAlternate"> | |
| 557 | <td nowrap="true"> | |
| 558 | <a href="http://jira.opensymphony.com/browse/QUARTZ-577"><img src="http://jira.opensymphony.com/secure/IssueNavigator.jspa?reset=true&pid=10060&fixfor=21680&sorter/field=issuekey&sorter/order=TYPE/images/icons/bug.gif" alt="Bug" border="0" /></a> | |
| 559 | </td> | |
| 560 | <td nowrap="true"> | |
| 561 | <a href="http://jira.opensymphony.com/browse/QUARTZ-577">QUARTZ-577</a> | |
| 562 | </td> | |
| 563 | <td > | |
| 564 | <a href="http://jira.opensymphony.com/browse/QUARTZ-577">JobInitializationPlugin can't find quartz-jobs.xml within a JAR file</a> | |
| 565 | </td> | |
| 566 | </tr> | |
| 567 | <tr class="rowNormal"> | |
| 568 | <td nowrap="true"> | |
| 569 | <a href="http://jira.opensymphony.com/browse/QUARTZ-579"><img src="http://jira.opensymphony.com/secure/IssueNavigator.jspa?reset=true&pid=10060&fixfor=21680&sorter/field=issuekey&sorter/order=TYPE/images/icons/bug.gif" alt="Bug" border="0" /></a> | |
| 570 | </td> | |
| 571 | <td nowrap="true"> | |
| 572 | <a href="http://jira.opensymphony.com/browse/QUARTZ-579">QUARTZ-579</a> | |
| 573 | </td> | |
| 574 | <td > | |
| 575 | <a href="http://jira.opensymphony.com/browse/QUARTZ-579">regression on timezone support of crontrigger</a> | |
| 576 | </td> | |
| 577 | </tr> | |
| 578 | <tr class="rowAlternate"> | |
| 579 | <td nowrap="true"> | |
| 580 | <a href="http://jira.opensymphony.com/browse/QUARTZ-580"><img src="http://jira.opensymphony.com/secure/IssueNavigator.jspa?reset=true&pid=10060&fixfor=21680&sorter/field=issuekey&sorter/order=TYPE/images/icons/bug.gif" alt="Bug" border="0" /></a> | |
| 581 | </td> | |
| 582 | <td nowrap="true"> | |
| 583 | <a href="http://jira.opensymphony.com/browse/QUARTZ-580">QUARTZ-580</a> | |
| 584 | </td> | |
| 585 | <td > | |
| 586 | <a href="http://jira.opensymphony.com/browse/QUARTZ-580">NthIncludedDayTrigger.getFireAtTime() method result does not match the result that is documented in Javadoc.</a> | |
| 587 | </td> | |
| 588 | </tr> | |
| 589 | <tr class="rowNormal"> | |
| 590 | <td nowrap="true"> | |
| 591 | <a href="http://jira.opensymphony.com/browse/QUARTZ-581"><img src="http://jira.opensymphony.com/secure/IssueNavigator.jspa?reset=true&pid=10060&fixfor=21680&sorter/field=issuekey&sorter/order=TYPE/images/icons/bug.gif" alt="Bug" border="0" /></a> | |
| 592 | </td> | |
| 593 | <td nowrap="true"> | |
| 594 | <a href="http://jira.opensymphony.com/browse/QUARTZ-581">QUARTZ-581</a> | |
| 595 | </td> | |
| 596 | <td > | |
| 597 | <a href="http://jira.opensymphony.com/browse/QUARTZ-581">NullPointerException in RAMJobStore.applyMisfire</a> | |
| 598 | </td> | |
| 599 | </tr> | |
| 600 | <tr class="rowAlternate"> | |
| 601 | <td nowrap="true"> | |
| 602 | <a href="http://jira.opensymphony.com/browse/QUARTZ-582"><img src="http://jira.opensymphony.com/secure/IssueNavigator.jspa?reset=true&pid=10060&fixfor=21680&sorter/field=issuekey&sorter/order=TYPE/images/icons/bug.gif" alt="Bug" border="0" /></a> | |
| 603 | </td> | |
| 604 | <td nowrap="true"> | |
| 605 | <a href="http://jira.opensymphony.com/browse/QUARTZ-582">QUARTZ-582</a> |