summaryrefslogtreecommitdiffstats
path: root/CHANGELOG.md
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2021-11-20 06:01:42 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2021-11-20 06:19:39 +0000
commit56eec1de7018759c0ec251dba4455c18f73c3bbd (patch)
tree3aeb2d10356530bc2cc3f24e74f41048a13885b4 /CHANGELOG.md
parentInitial commit. (diff)
downloadzmodemjs-56eec1de7018759c0ec251dba4455c18f73c3bbd.tar.xz
zmodemjs-56eec1de7018759c0ec251dba4455c18f73c3bbd.zip
Adding upstream version 0.1.10+dfsg.upstream/0.1.10+dfsgupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r--CHANGELOG.md44
1 files changed, 44 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
new file mode 100644
index 0000000..1cc5bbf
--- /dev/null
+++ b/CHANGELOG.md
@@ -0,0 +1,44 @@
+# 0.1.10
+
+Make unrecognized-header detection more resilient.
+
+Ignore extra ZRPOS if received while sending a file. (See comments
+for the rationale.)
+
+Expose Zmodem.DEBUG for runtime adjustment.
+
+Add a proof-of-concept CLI “sz” implementation to the distribution.
+
+Change quality designation from ALPHA to BETA.
+
+Documentation updates, including addition of a TROUBLESHOOTING section.
+
+---
+
+# 0.1.9
+
+No production changes; this just disables a flapping test.
+
+---
+
+# 0.1.8
+
+This version introduces some minor, mostly-under-the-hood changes:
+
+1. `accept()` callbacks now fire after receipt of the ZEOF.
+Previously they didn’t fire until the sender indicated either the next
+file (ZFILE) or the end of the batch (ZFIN). This actually brings the
+behavior more in line with the documentation.
+
+2. In the same vein, the `file_end` event now fires before ZRINIT is sent.
+
+3. `skip()` is now a no-op if called outside of a transfer. Previously
+it always sent a ZSKIP, which confused `sz` into sending an extra ZFIN if
+it happened outside of a file transfer, which tripped up protocol errors
+in zmodem.js.
+
+4. A misnamed variable is now fixed.
+
+Additionally, a bug in the tests that caused the test runner to skip
+some test files is fixed. Every test now runs, and new tests are added that
+verify the “happy-path” in receive sessions.