go-sendxmpp/CHANGELOG.md

108 lines
3.2 KiB
Markdown
Raw Normal View History

2021-09-11 10:48:23 +00:00
# Changelog
2022-11-11 17:26:22 +00:00
## Unreleased
2023-02-18 14:42:04 +00:00
### Added
- Add support for sending Out of Band Data (OOB).
2022-11-11 17:26:22 +00:00
2023-02-18 17:56:07 +00:00
### Changed
- Print `--help` output to stdout instead of stderr.
2023-03-02 15:42:12 +00:00
- Print sent stanzas when `--debug` is used (via go-xmpp commit 9129a110df1b).
2023-03-02 19:28:51 +00:00
- Allow JIDs without localpart.
- Fix SRV lookup when the domain has a CNAME (via xmppsrv v0.2.5).
2023-02-18 17:56:07 +00:00
2022-11-11 17:24:49 +00:00
## [v0.5.6] 2022-11-11
2022-11-11 16:54:00 +00:00
### Added
- Add short option `-h` for http-upload.
2022-11-06 13:30:22 +00:00
### Changed
- Fix Ox key generation.
2022-10-16 10:00:02 +00:00
2022-10-16 09:58:37 +00:00
## [v0.5.5] 2022-10-16
2022-10-16 10:19:46 +00:00
### Changed
2022-10-16 08:57:35 +00:00
- Improve interactive mode.
2022-09-30 05:27:55 +00:00
2022-09-30 05:26:03 +00:00
## [v0.5.4] 2022-09-30
2022-09-30 05:25:11 +00:00
### Changed
- Fix http-upload.
2022-09-29 13:39:24 +00:00
2022-09-29 13:37:40 +00:00
## [v0.5.3] 2022-09-29
### Changed
- Don't check for empty message when `--listen` is used.
2022-09-29 12:46:46 +00:00
2022-09-29 12:44:30 +00:00
## [v0.5.2] 2022-09-29
2022-07-26 20:28:04 +00:00
### Added
- Reply to `disco#info` queries.
- Send `service-unavailable` errors for all other IQs of type `get` and `set`.
- New config option and command line flag `alias` to uncouple MUC nickname/alias from resource.
2022-07-26 20:28:04 +00:00
### Changed
2022-07-10 11:45:29 +00:00
- Ox: Improve error messages for failed key requests.
- Ox: Do not encrypt empty messages.
- Check for empty messages.
- Always look up CNAME before doing SRV lookups (via xmppsrv v0.2.3).
2022-08-05 10:46:04 +00:00
- Detect CNAME loops (max. 5 CNAMEs) (via xmppsrv >= v0.2.4).
- Deprecate resource config option and command line flag.
2022-09-01 20:13:13 +00:00
- Improve error handling in XML parsing.
- Don't connect to the XMPP server if the message is empty.
2022-05-22 10:37:35 +00:00
2022-05-22 10:34:25 +00:00
## [v0.5.1] 2022-05-22
2022-05-05 18:01:35 +00:00
### Changed
2022-07-10 11:45:29 +00:00
- Improve listening mode for groupchats.
- Fix nickname in MUCs if not manually set.
2022-05-05 16:23:18 +00:00
2022-05-05 16:20:53 +00:00
## [v0.5.0] 2022-05-05
2022-05-04 09:18:24 +00:00
### Added
2022-07-10 11:45:29 +00:00
- Add possibility to delete existing OpenPGP for XMPP nodes.
2022-05-04 09:18:24 +00:00
2022-05-02 13:07:58 +00:00
### Changed
2022-07-10 11:45:29 +00:00
- Ox: Improve rpad generation.
- Rework receiving of stanzas.
- Ox: Improve private key import.
2022-04-30 11:52:07 +00:00
2022-04-30 11:48:39 +00:00
## [v0.4.0] 2022-04-30
### Added
- Experimental support for Ox (OpenPGP for XMPP) encryption.
2022-03-21 01:17:28 +00:00
### Changed
2022-05-07 08:29:54 +00:00
- Shorter random ID for resource.
- Changed to the more flexible "github.com/beevik/etree" instead of encoding/xml for creating and interpreting stanzas.
- Changed to use message stamp, if provided, for printing the time stamp of received messages.
2022-03-21 01:12:40 +00:00
## [v0.3.0] 2022-03-21
2022-02-22 12:51:46 +00:00
### Added
- Added support for joining password protected MUCs.
2022-02-12 11:32:18 +00:00
### Changed
- Removed invalid code points from input.
- Fixed crash when reading a config with wrong syntax.
- Fixed crash when a non-existing or non-readable config was supplied by `-f`.
2022-02-22 18:57:03 +00:00
- Changed config file location from `~/.config/go-sendxmpp/sendxmpprc` to `~/.config/go-sendxmpp/config`.
2022-03-19 14:28:58 +00:00
- Fixed blocking of go-sendxmpp if an IQ reply of type "error" is received (via go-xmpp v0.0.0-20220319135856-e773596ea0b0).
2022-02-24 02:41:33 +00:00
## [v0.2.0] 2022-02-12
2022-02-07 15:22:53 +00:00
### Added
- Added listening function.
2022-02-12 08:18:02 +00:00
- Added flag to configure connection timeout.
- Added flag to configure minimum TLS version.
2022-02-12 10:16:45 +00:00
- Added flag to show version.
2022-01-29 13:37:51 +00:00
2022-02-07 15:57:31 +00:00
### Removed
- Removed deprecated option `-x`.
2022-02-24 02:41:33 +00:00
## [v0.1.3] 2022-01-29
### Changed
- Rename files to use a limited character set (alpha numerical and some extra characters) file name before uploading. Workaround for https://github.com/mattn/go-xmpp/issues/132
2021-11-18 13:23:29 +00:00
2022-02-24 02:41:33 +00:00
## [v0.1.2] 2021-11-18
2021-09-29 16:17:54 +00:00
### Changed
2021-09-29 16:18:58 +00:00
- Use xml.Marshal to safely build HTTP Upload request.
- Use salsa.debian.org/mdosch/xmppsrv for SRV lookups.
2021-09-12 08:11:03 +00:00
2022-02-24 02:41:33 +00:00
## [v0.1.1] 2021-09-12
2021-09-12 08:08:46 +00:00
### Changed
- Xml-escape file name in http-upload.
- Xml-escape mimetype in http-upload.
2021-09-11 10:49:05 +00:00
2022-02-24 02:41:33 +00:00
## [v0.1.0] 2021-09-11
2021-09-11 10:48:23 +00:00
### Added
- Initial release