mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-22 12:02:05 +01:00
Smack 4.4.4
-----BEGIN PGP SIGNATURE----- iQGTBAABCgB9FiEEl3UFnzoh3OFr5PuuIjmn6PWFIFIFAmGAG6lfFIAAAAAALgAo aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldDk3 NzUwNTlGM0EyMURDRTE2QkU0RkJBRTIyMzlBN0U4RjU4NTIwNTIACgkQIjmn6PWF IFJdGwf+NmDZF8OtpvEI/TRSpDfyQxDVPbXi8Y8Z7E0CbNLHVkn7CQl/HcYsJkjL IGLRqUCNztejNbSvaNl9Zds4u2StBeTgEXbPwbT8UdJU8Ji+jqflJYW53QyNc1Kt AToAKHW1m2xamMpqgqnHQsQxUOHXp5VIEv7/dRVQLyIL0F8TaMlMPRpI65seOS3v VQj66eskVuuwib5q1n8DBwKVhB417UsTEIAMxZ5Zxdcs8YwB+YML4KuxsSZchTyt b6tuZnLEMxFPUUAIMlBNoslPBuj6GoP+LNFotnS1kDfK6yMOaeGSlLVaxRRSzqVx VVnHSiSZeEuzfw55ymTEewr42tD47A== =LrgC -----END PGP SIGNATURE----- Merge tag '4.4.4' Smack 4.4.4
This commit is contained in:
commit
2628dc328c
3 changed files with 59 additions and 7 deletions
38
resources/generate-notice-file
Executable file
38
resources/generate-notice-file
Executable file
|
@ -0,0 +1,38 @@
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
set -euo pipefail
|
||||||
|
|
||||||
|
SCRIPT_DIR="$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )"
|
||||||
|
SMACK_DIR=$(realpath "${SCRIPT_DIR}/..")
|
||||||
|
|
||||||
|
cd "${SMACK_DIR}"
|
||||||
|
|
||||||
|
TEMPFILE=$(mktemp)
|
||||||
|
|
||||||
|
cleanup() {
|
||||||
|
rm "${TEMPFILE}"
|
||||||
|
}
|
||||||
|
trap cleanup EXIT
|
||||||
|
|
||||||
|
git shortlog -s |\
|
||||||
|
cut -f2- |\
|
||||||
|
grep -v '(no author)' |\
|
||||||
|
grep '\w \w.*' |\
|
||||||
|
sort \
|
||||||
|
> "${TEMPFILE}"
|
||||||
|
|
||||||
|
readonly NOTICE_FILE="${SMACK_DIR}/NOTICE"
|
||||||
|
|
||||||
|
cat <<EOF > "${NOTICE_FILE}"
|
||||||
|
Smack
|
||||||
|
|
||||||
|
An open-source XMPP library
|
||||||
|
maintained by Florian Schmaus
|
||||||
|
|
||||||
|
https://igniterealtime.org/projects/smack
|
||||||
|
|
||||||
|
|
||||||
|
Authors:
|
||||||
|
|
||||||
|
EOF
|
||||||
|
|
||||||
|
cat "${TEMPFILE}" >> "${NOTICE_FILE}"
|
|
@ -1,7 +0,0 @@
|
||||||
#!/usr/bin/env bash
|
|
||||||
|
|
||||||
git shortlog -s |\
|
|
||||||
cut -f2- |\
|
|
||||||
grep -v '(no author)' |\
|
|
||||||
grep '\w \w.*' |\
|
|
||||||
sort
|
|
|
@ -141,6 +141,27 @@ hr {
|
||||||
|
|
||||||
<div id="pageBody">
|
<div id="pageBody">
|
||||||
|
|
||||||
|
<h2>4.4.4 -- <span style="font-weight: normal;">2021-11-01</span></h2>
|
||||||
|
|
||||||
|
<h2> Bug
|
||||||
|
</h2>
|
||||||
|
<ul>
|
||||||
|
<li>[<a href='https://igniterealtime.atlassian.net/browse/SMACK-916'>SMACK-916</a>] - XMPPErrorException.stanza is missing a getter method
|
||||||
|
</li>
|
||||||
|
<li>[<a href='https://igniterealtgime.atlassian.net/browse/SMACK-915'>SMACK-915</a>] - Smack does not process MUC destroy message if they contain 'status'
|
||||||
|
</li>
|
||||||
|
<li>[<a href='https://igniterealtime.atlassian.net/browse/SMACK-914'>SMACK-914</a>] - MultiUserChat may be become unjoinable due to a race condition
|
||||||
|
</li>
|
||||||
|
<li>[<a href='https://igniterealtime.atlassian.net/browse/SMACK-913'>SMACK-913</a>] - MultiUserChat.serviceSupportsStableIds\(\) may throws a NullPointerException
|
||||||
|
</li>
|
||||||
|
<li>[<a href='https://igniterealtime.atlassian.net/browse/SMACK-912'>SMACK-912</a>] - Smack does not start the local SOCKS5 proxy automatically
|
||||||
|
</li>
|
||||||
|
<li>[<a href='https://igniterealtime.atlassian.net/browse/SMACK-910'>SMACK-910</a>] - FormNode and FormNodeProvide should handle non-existent DataForm
|
||||||
|
</li>
|
||||||
|
<li>[<a href='https://igniterealtime.atlassian.net/browse/SMACK-909'>SMACK-909</a>] - Must use the raw character data of a form field in entity caps hash calculation
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
<h2>4.4.3 -- <span style="font-weight: normal;">2021-07-06</span></h2>
|
<h2>4.4.3 -- <span style="font-weight: normal;">2021-07-06</span></h2>
|
||||||
|
|
||||||
<h2> Bug
|
<h2> Bug
|
||||||
|
|
Loading…
Reference in a new issue