A Python robot that edits Wikipedia and interacts with people over IRC https://en.wikipedia.org/wiki/User:EarwigBot
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

59 lines
2.5 KiB

  1. v0.4 (unreleased):
  2. - Copyvio detector: improved parsing of excluded URL lists.
  3. - Wiki: fixed not sending Content-Type header in POST requests.
  4. v0.3 (released March 24, 2019):
  5. - Added various new features to the WikiProjectTagger task.
  6. - Copyvio detector: improved sentence splitting algorithm; many performance
  7. improvements.
  8. - Improved config file command/task exclusion logic.
  9. - Wiki: Added logging for warnings.
  10. - Wiki: Added OAuth support.
  11. - Wiki: Switched to requests from urllib2.
  12. - Wiki: Updated some deprecated API calls.
  13. - Wiki: Fixed Page.toggle_talk() behavior on mainspace titles with colons.
  14. - IRC > !cidr: Added; new command for calculating range blocks.
  15. - IRC > !notes: Improved help and added aliases.
  16. - IRC > !remind: Added !remind all. Fixed multithreading efficiency issues.
  17. Improved time detection and argument parsing. Newly expired reminders are now
  18. triggered on bot startup.
  19. - IRC > !stalk: Allow regular expressions as page titles or usernames.
  20. - IRC: Added a per-channel quiet config setting.
  21. - IRC: Try not to join channels before NickServ auth has completed.
  22. - IRC: Improved detection of maximum IRC message length.
  23. - IRC: Improved some help commands.
  24. v0.2 (released November 8, 2015):
  25. - Added a new command syntax allowing the caller to redirect replies to another
  26. user. Example: "!dictionary >Fred earwig"
  27. - Added unload() hooks to commands and tasks, called when they are killed
  28. during a reload.
  29. - Added 'rc' hook type to allow IRC commands to respond to RC watcher events.
  30. - Added 'part' hook type as a counterpart to 'join'.
  31. - Added !stalk/!watch.
  32. - Added !watchers.
  33. - Added !epoch as a subcommand of !time.
  34. - Added !version as a subcommand of !help.
  35. - Expanded and improved !remind.
  36. - Improved general behavior of !access and !threads.
  37. - Fixed API behavior when blocked, when using AssertEdit, and under other
  38. circumstances.
  39. - Added copyvio detector functionality: specifying a max time for checks;
  40. improved exclusion support. URL loading and parsing is parallelized to speed
  41. up check times, with a multi-threaded worker model that avoids concurrent
  42. requests to the same domain. Improvements to the comparison algorithm. Fixed
  43. assorted bugs.
  44. - Added support for Wikimedia Labs when creating a config file.
  45. - Added and improved lazy importing for various dependencies.
  46. - Fixed a bug in job scheduling.
  47. - Improved client-side SQL buffering; made Category objects iterable.
  48. - Default to using HTTPS for new sites.
  49. - Updated documentation.
  50. v0.1 (released August 31, 2012):
  51. - Initial release.