Don't let the release notes script truncate!

This commit is contained in:
Dave Methvin 2012-08-09 20:16:06 -04:00
parent 81bf633596
commit e41553950d

View File

@ -9,9 +9,9 @@ var fs = require("fs"),
extract = /<a href="\/ticket\/(\d+)" title="View ticket">(.*?)<[^"]+"component">\s*(\S+)/g; extract = /<a href="\/ticket\/(\d+)" title="View ticket">(.*?)<[^"]+"component">\s*(\S+)/g;
var opts = { var opts = {
version: "1.7.2rc1", version: "1.8",
short_version: "1.7.2rc1", short_version: "1.8",
final_version: "1.7.2", final_version: "1.8",
categories: [] categories: []
}; };
@ -19,7 +19,7 @@ http.request({
host: "bugs.jquery.com", host: "bugs.jquery.com",
port: 80, port: 80,
method: "GET", method: "GET",
path: "/query?status=closed&resolution=fixed&component=!web&order=component&milestone=" + opts.final_version path: "/query?status=closed&resolution=fixed&max=400&component=!web&order=component&milestone=" + opts.final_version
}, function (res) { }, function (res) {
var data = []; var data = [];