Skip to content

Releases: macbre/nodemw

v0.4.2

25 Feb 22:17
Compare
Choose a tag to compare

This minor release brings the following fix (by @maxkueng ):

#45 - Cannot read property 'info' of undefined api.js:206

v0.4.1

24 Jan 14:34
Compare
Choose a tag to compare

Bug fixes

  • #44 - Cannot read property 'result' of undefined

v0.4.0

11 Jan 14:52
Compare
Choose a tag to compare

This release of nodemw brings node.js style of callback (err object will always be passed as the first argument). Promises are no longer supported and can be added via 3rd party libraries.

Please note that this version of nodemw is not backward compatible due to the change of callback arguments.

  • #38 - Use node-style callbacks throughout

v0.3.16

16 Oct 20:19
Compare
Choose a tag to compare

Bug fixes

  • #37 - Don't print any debug information unless debug option is true
  • and a fix for "Cookie has domain set to a public suffix" errors from requests library - request/request#792

v0.3.15

01 Jul 17:12
Compare
Choose a tag to compare

This minor release brings a improvement to getArticle method that will from now on always return the latest version (9d9037d)

v0.3.14

06 Apr 11:25
Compare
Choose a tag to compare

This release of nodemw introduces bot.getLog function (#35) and specialLog2csv.js example script that can export entries from Special:Log to csv file.

v0.3.13

15 Dec 19:31
Compare
Choose a tag to compare

Bug fixes

  • #32 - Exception thrown when ECONNRESET is not caught

v0.3.12

30 Oct 22:13
Compare
Choose a tag to compare

These minor release allows API requests to be performed in parallel (thanks to async module as suggested by @kcivey)

Improvements

  • #25 - Make API requests in parallel

v0.3.11

20 Oct 16:51
Compare
Choose a tag to compare

These minor release brings a possibility to pass custom bot's user agent.

Improvements

  • #28 - Customize user agent

v0.3.10

28 Sep 11:52
Compare
Choose a tag to compare

These minor release brings an improvement to how nodemw handles errors internally. Instead of throwing an error, promise is rejected.

Improvements

  • #26 - Reject a promise instead of throwing an error