diff --git a/bin/test-crawl b/bin/test-crawl index 598003e2b..1e917cab4 100755 --- a/bin/test-crawl +++ b/bin/test-crawl @@ -322,15 +322,14 @@ if __name__ == "__main__": for i in range(len(error_list)): if error_list[i].id in settings.SILENCED_SYSTEM_CHECKS: silenced.append(i) - silenced.sort(reverse=True) - for i in silenced: - del error_list[i] + silenced.sort(reverse=True) + for i in silenced: + del error_list[i] if error_list: print("") for entry in error_list: print(entry) - sys.exit(1) - + while urls: if args.random: # popitem() is documented to be random, but really isn't diff --git a/changelog b/changelog index a97f3b800..e44124ac0 100644 --- a/changelog +++ b/changelog @@ -1,3 +1,30 @@ +ietfdb (6.68.2) ietf; urgency=medium + + This is a bugfix release, with minor fixes as follows: + + * Added a patch for django issue #28772, a checks action to apply the + patch, and a setting that lists patches to be applied. + + * With a validator in place for document names (introduced some time ago) + we will not get any new documents with invalid name strings, so we can go + back to a simpler regexp for document name urls. + + * Removed code that has been marked unreachable for more than 5 months. + + * Added user notification about ballots closed automatically when + creating a new ballot. + + * Merged in [14467] from housley@vigilsec.com: + Close any previous ballots when a charter goes to Internal Review or + Extrernal Review. Fixes #2421. + + * Merged in [14466] from rjsparks@nostrum.com: + Include information about previous team reviews in assignement emails. + Fixes #2392. + + -- Henrik Levkowetz 29 Dec 2017 16:40:28 -0800 + + ietfdb (6.68.1) ietf; urgency=medium This is a bugfix release, with a number of minor fixes, as follows: