pkgsrc/chat
gdt 3d14b2495a chat/matrix-synapse: Update to 1.61.0
Upstream NEWS, less bugfixes and minor improvements:

Synapse 1.61.0 (2022-06-14)
===========================

This release removes support for the non-standard feature known both as 'groups' and as 'communities', which have been superseded by *Spaces*.

Synapse 1.61.0rc1 (2022-06-07)
==============================

Features
--------

- Add new `media_retention` options to the homeserver config for routinely cleaning up non-recently accessed media. ([\#12732](https://github.com/matrix-org/synapse/issues/12732), [\#12972](https://github.com/matrix-org/synapse/issues/12972), [\#12977](https://github.com/matrix-org/synapse/issues/12977))
- Experimental support for [MSC3772](https://github.com/matrix-org/matrix-spec-proposals/pull/3772): Push rule for mutually related events. ([\#12740](https://github.com/matrix-org/synapse/issues/12740), [\#12859](https://github.com/matrix-org/synapse/issues/12859))
- Update to the `check_event_for_spam` module callback: Deprecate the current callback signature, replace it with a new signature that is both less ambiguous (replacing booleans with explicit allow/block) and more powerful (ability to return explicit error codes). ([\#12808](https://github.com/matrix-org/synapse/issues/12808))
- Add storage and module API methods to get monthly active users (and their corresponding appservices) within an optionally specified time range. ([\#12838](https://github.com/matrix-org/synapse/issues/12838), [\#12917](https://github.com/matrix-org/synapse/issues/12917))
- Support the new error code `ORG.MATRIX.MSC3823.USER_ACCOUNT_SUSPENDED` from [MSC3823](https://github.com/matrix-org/matrix-spec-proposals/pull/3823). ([\#12845](https://github.com/matrix-org/synapse/issues/12845), [\#12923](https://github.com/matrix-org/synapse/issues/12923))
- Add a configurable background job to delete stale devices. ([\#12855](https://github.com/matrix-org/synapse/issues/12855))
- Allow updating a user's password using the admin API without logging out their devices. Contributed by @jcgruenhage. ([\#12952](https://github.com/matrix-org/synapse/issues/12952))


Deprecations and Removals
-------------------------

- Remove support for the non-standard groups/communities feature from Synapse. ([\#12553](https://github.com/matrix-org/synapse/issues/12553), [\#12558](https://github.com/matrix-org/synapse/issues/12558), [\#12563](https://github.com/matrix-org/synapse/issues/12563), [\#12895](https://github.com/matrix-org/synapse/issues/12895), [\#12897](https://github.com/matrix-org/synapse/issues/12897), [\#12899](https://github.com/matrix-org/synapse/issues/12899), [\#12900](https://github.com/matrix-org/synapse/issues/12900), [\#12936](https://github.com/matrix-org/synapse/issues/12936), [\#12966](https://github.com/matrix-org/synapse/issues/12966))
- Remove contributed `kick_users.py` script. This is broken under Python 3, and is not added to the environment when `pip install`ing Synapse. ([\#12908](https://github.com/matrix-org/synapse/issues/12908))



Synapse 1.60.0 (2022-05-31)
===========================

This release of Synapse adds a unique index to the `state_group_edges` table, in
order to prevent accidentally introducing duplicate information (for example,
because a database backup was restored multiple times). If your Synapse database
already has duplicate rows in this table, this could fail with an error and
require manual remediation.

Additionally, the signature of the `check_event_for_spam` module callback has changed.
The previous signature has been deprecated and remains working for now. Module authors
should update their modules to use the new signature where possible.


Synapse 1.60.0rc2 (2022-05-27)
==============================

Features
--------

- Add an option allowing users to use their password to reauthenticate for privileged actions even though password login is disabled. ([\#12883](https://github.com/matrix-org/synapse/issues/12883))


Synapse 1.60.0rc1 (2022-05-24)
==============================

Features
--------

- Measure the time taken in spam-checking callbacks and expose those measurements as metrics. ([\#12513](https://github.com/matrix-org/synapse/issues/12513))
- Add a `default_power_level_content_override` config option to set default room power levels per room preset. ([\#12618](https://github.com/matrix-org/synapse/issues/12618))
- Add support for [MSC3787: Allowing knocks to restricted rooms](https://github.com/matrix-org/matrix-spec-proposals/pull/3787). ([\#12623](https://github.com/matrix-org/synapse/issues/12623))
- Send `USER_IP` commands on a different Redis channel, in order to reduce traffic to workers that do not process these commands. ([\#12672](https://github.com/matrix-org/synapse/issues/12672), [\#12809](https://github.com/matrix-org/synapse/issues/12809))
- Synapse will now reload [cache config](https://matrix-org.github.io/synapse/latest/usage/configuration/config_documentation.html#caching) when it receives a [SIGHUP](https://en.wikipedia.org/wiki/SIGHUP) signal. ([\#12673](https://github.com/matrix-org/synapse/issues/12673))
- Add a config options to allow for auto-tuning of caches. ([\#12701](https://github.com/matrix-org/synapse/issues/12701))
- Update [MSC2716](https://github.com/matrix-org/matrix-spec-proposals/pull/2716) implementation to process marker events from the current state to avoid markers being lost in timeline gaps for federated servers which would cause the imported history to be undiscovered. ([\#12718](https://github.com/matrix-org/synapse/issues/12718))
- Add a `drop_federated_event` callback to `SpamChecker` to disregard inbound federated events before they take up much processing power, in an emergency. ([\#12744](https://github.com/matrix-org/synapse/issues/12744))
- Implement [MSC3818: Copy room type on upgrade](https://github.com/matrix-org/matrix-spec-proposals/pull/3818). ([\#12786](https://github.com/matrix-org/synapse/issues/12786), [\#12792](https://github.com/matrix-org/synapse/issues/12792))
- Update to the `check_event_for_spam` module callback. Deprecate the current callback signature, replace it with a new signature that is both less ambiguous (replacing booleans with explicit allow/block) and more powerful (ability to return explicit error codes). ([\#12808](https://github.com/matrix-org/synapse/issues/12808))


Deprecations and Removals
-------------------------

- Require a body in POST requests to `/rooms/{roomId}/receipt/{receiptType}/{eventId}`, as required by the [Matrix specification](https://spec.matrix.org/v1.2/client-server-api/#post_matrixclientv3roomsroomidreceiptreceipttypeeventid). This breaks compatibility with Element Android 1.2.0 and earlier: users of those clients will be unable to send read receipts. ([\#12709](https://github.com/matrix-org/synapse/issues/12709))



Synapse 1.59.1 (2022-05-18)
===========================

This release fixes a long-standing issue which could prevent Synapse's user directory for updating properly.


Synapse 1.59.0 (2022-05-17)
===========================

Synapse 1.59 makes several changes that server administrators should be aware of:

- Device name lookup over federation is now disabled by default. ([\#12616](https://github.com/matrix-org/synapse/issues/12616))
- The `synapse.app.appservice` and `synapse.app.user_dir` worker application types are now deprecated. ([\#12452](https://github.com/matrix-org/synapse/issues/12452), [\#12654](https://github.com/matrix-org/synapse/issues/12654))

Additionally, this release removes the non-standard `m.login.jwt` login type from Synapse. It can be replaced with `org.matrix.login.jwt` for identical behaviour. This is only used if `jwt_config.enabled` is set to `true` in the configuration. ([\#12597](https://github.com/matrix-org/synapse/issues/12597))


Synapse 1.59.0rc2 (2022-05-16)
==============================


Synapse 1.59.0rc1 (2022-05-10)
==============================

Features
--------

- Support [MSC3266](https://github.com/matrix-org/matrix-doc/pull/3266) room summaries over federation. ([\#11507](https://github.com/matrix-org/synapse/issues/11507))
- Implement [changes](4a77139249) to [MSC2285 (hidden read receipts)](https://github.com/matrix-org/matrix-spec-proposals/pull/2285). Contributed by @SimonBrandner. ([\#12168](https://github.com/matrix-org/synapse/issues/12168), [\#12635](https://github.com/matrix-org/synapse/issues/12635), [\#12636](https://github.com/matrix-org/synapse/issues/12636), [\#12670](https://github.com/matrix-org/synapse/issues/12670))
- Extend the [module API](https://github.com/matrix-org/synapse/blob/release-v1.59/synapse/module_api/__init__.py) to allow modules to change actions for existing push rules of local users. ([\#12406](https://github.com/matrix-org/synapse/issues/12406))
- Add the `notify_appservices_from_worker` configuration option (superseding `notify_appservices`) to allow a generic worker to be designated as the worker to send traffic to Application Services. ([\#12452](https://github.com/matrix-org/synapse/issues/12452))
- Add the `update_user_directory_from_worker` configuration option (superseding `update_user_directory`) to allow a generic worker to be designated as the worker to update the user directory. ([\#12654](https://github.com/matrix-org/synapse/issues/12654))
- Add new `enable_registration_token_3pid_bypass` configuration option to allow registrations via token as an alternative to verifying a 3pid. ([\#12526](https://github.com/matrix-org/synapse/issues/12526))
- Implement [MSC3786](https://github.com/matrix-org/matrix-spec-proposals/pull/3786): Add a default push rule to ignore `m.room.server_acl` events. ([\#12601](https://github.com/matrix-org/synapse/issues/12601))
- Add new `mau_appservice_trial_days` configuration option to specify a different trial period for users registered via an appservice. ([\#12619](https://github.com/matrix-org/synapse/issues/12619))


Deprecations and Removals
-------------------------

- Remove unstable identifiers from [MSC3069](https://github.com/matrix-org/matrix-doc/pull/3069). ([\#12596](https://github.com/matrix-org/synapse/issues/12596))
- Remove the unspecified `m.login.jwt` login type and the unstable `uk.half-shot.msc2778.login.application_service` from
  [MSC2778](https://github.com/matrix-org/matrix-doc/pull/2778). ([\#12597](https://github.com/matrix-org/synapse/issues/12597))
- Synapse now requires at least Python 3.7.1 (up from 3.7.0), for compatibility with the latest Twisted trunk. ([\#12613](https://github.com/matrix-org/synapse/issues/12613))
2022-06-16 12:06:25 +00:00
..
anope revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
atheme atheme: update to 7.2.12 2022-03-04 07:59:38 +00:00
bitchbot chat: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:05:10 +00:00
bitchx chat: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:05:10 +00:00
bitlbee revbump for icu and libffi 2021-12-08 16:01:42 +00:00
bitlbee-discord revbump for icu and libffi 2021-12-08 16:01:42 +00:00
bitlbee-facebook revbump for icu and libffi 2021-12-08 16:01:42 +00:00
bitlbee-mastodon revbump for icu and libffi 2021-12-08 16:01:42 +00:00
bitlbee-steam revbump for icu and libffi 2021-12-08 16:01:42 +00:00
bnc chat: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:05:10 +00:00
carbons-purple revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
catgirl add chat/catgirl 2022-03-04 10:09:14 +00:00
centerim chat/centerim: patch out bogus code 2021-12-19 02:44:20 +00:00
centerim5 revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
cgiirc chat: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:05:10 +00:00
coyim Revbump all Go packages after go118 update 2022-06-02 18:51:56 +00:00
ctrlproxy revbump for icu and libffi 2021-12-08 16:01:42 +00:00
dccserver chat: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:05:10 +00:00
dino revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
eggdrop eggdrop: update to 1.9.2 2022-03-07 07:28:45 +00:00
ejabberd chat: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:05:10 +00:00
ekg revbump for devel/protobuf 2022-04-03 18:50:16 +00:00
element-web Update chat/element-web to 1.10.10 2022-04-18 11:13:01 +00:00
emacs-jabber Bump all elisp packages for the CONFLICTS change. 2022-05-14 22:25:32 +00:00
emech chat: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:05:10 +00:00
epic4 chat: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:05:10 +00:00
epic4-doc chat: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:05:10 +00:00
farstream revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
finch revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
fisg chat: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:05:10 +00:00
gajim *: Replace per-package msgfmt hacks with msgfmt-desktop.mk 2022-03-12 08:01:48 +00:00
gajim-plugin-omemo chat: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:05:10 +00:00
gloox revbump for icu and libffi 2021-12-08 16:01:42 +00:00
gomuks Revbump all Go packages after go118 update 2022-06-02 18:51:56 +00:00
goofey chat: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:05:10 +00:00
hexchat hexchat: adapt libpci option for pciutils 3.8.0 2022-05-13 15:35:17 +00:00
i2cb chat: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:05:10 +00:00
i2cbd chat: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:05:10 +00:00
icb chat: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:05:10 +00:00
icbirc chat: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:05:10 +00:00
ii chat: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:05:10 +00:00
ircd-hybrid revbump for icu and libffi 2021-12-08 16:01:42 +00:00
irchat-pj Bump all elisp packages for the CONFLICTS change. 2022-05-14 22:25:32 +00:00
ircII chat: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:05:10 +00:00
ircu chat: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:05:10 +00:00
iroffer chat: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:05:10 +00:00
irssi irssi: fix building on Solaris 10 2022-01-19 22:15:43 +00:00
irssi-icb revbump for icu and libffi 2021-12-08 16:01:42 +00:00
irssi-xmpp revbump for icu and libffi 2021-12-08 16:01:42 +00:00
jabberd2 revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
kgb-bot chat: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:05:10 +00:00
konversation revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
ktp-accounts-kcm revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
ktp-approver revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
ktp-auth-handler revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
ktp-common-internals revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
ktp-contact-list revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
ktp-contact-runner revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
ktp-desktop-applets revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
ktp-filetransfer-handler revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
ktp-kded-integration-module revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
ktp-send-file revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
ktp-text-ui revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
libfolks revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
libgadu revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
libmesode libmesode: remove patch that is not (active) in distinfo 2022-03-10 06:56:41 +00:00
libmsn chat: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:05:10 +00:00
libotr chat: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:05:10 +00:00
libpurple revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
libsignal-protocol-c chat: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:05:10 +00:00
libstrophe libstrophe: add PLIST (fix build) 2022-05-22 21:06:40 +00:00
libtelepathy revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
libtlen chat: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:05:10 +00:00
loudmouth revbump for icu and libffi 2021-12-08 16:01:42 +00:00
lurch-purple revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
matrix-synapse chat/matrix-synapse: Update to 1.61.0 2022-06-16 12:06:25 +00:00
matterircd Revbump all Go packages after go118 update 2022-06-02 18:51:56 +00:00
mautrix-telegram Update chat/mautrix-telegram to 0.11.3 2022-04-23 13:49:50 +00:00
mcabber revbump for icu and libffi 2021-12-08 16:01:42 +00:00
meanwhile revbump for icu and libffi 2021-12-08 16:01:42 +00:00
miniircd chat: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:05:10 +00:00
mumble revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
ninja chat: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:05:10 +00:00
p5-IRC-Utils chat: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:05:10 +00:00
p5-Net-Goofey chat: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:05:10 +00:00
p5-Net-Jabber chat: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:05:10 +00:00
p5-POE-Component-IRC chat: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:05:10 +00:00
p5-POE-Filter-IRCD chat: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:05:10 +00:00
phone chat: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:05:10 +00:00
pidgin revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
pidgin-facebookchat revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
pidgin-icb revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
pidgin-latex revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
pidgin-libnotify revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
pidgin-otr revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
pidgin-sametime revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
pidgin-silc revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
pircbot chat: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:05:10 +00:00
profanity profanity: update to 0.11.1 2022-05-15 20:01:14 +00:00
prosody prosody: update to 0.12.0 2022-05-08 21:24:12 +00:00
psi revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
psybnc chat: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:05:10 +00:00
py-axolotl *: bump PKGREVISION for egg.mk users 2022-01-04 20:52:30 +00:00
py-axolotl-curve25519 *: bump PKGREVISION for egg.mk users 2022-01-04 20:52:30 +00:00
py-hangups python: egg.mk: add USE_PKG_RESOURCES flag 2022-01-05 15:40:56 +00:00
py-mastodon *: bump PKGREVISION for egg.mk users 2022-01-04 20:52:30 +00:00
py-matrix-common Update chat/py-matrix-common to 1.1.0 2022-02-25 16:36:35 +00:00
py-matrix-nio py-matrix-nio: fix dependency pattern 2022-01-25 18:30:25 +00:00
py-mautrix chat/py-mautrix: Fix PKGNAME 2022-04-23 13:43:29 +00:00
py-nbxmpp py-nbxmpp: update to 2.04, gajim: update to 1.3.3 2022-03-04 09:34:29 +00:00
py-telethon Update chat/py-telethon to 1.24.0 2022-01-15 20:01:37 +00:00
py-tulir-telethon Update chat/py-tulir-telethon to 1.25.0a7 2022-04-23 12:45:09 +00:00
py-xmpppy chat/py-xmpppy: Update to 0.7.1 2022-04-10 18:49:25 +00:00
quassel revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
quirc chat: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:05:10 +00:00
riece Bump all elisp packages for the CONFLICTS change. 2022-05-14 22:25:32 +00:00
roxirc chat: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:05:10 +00:00
ruby-net-irc chat: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:05:10 +00:00
scrollz revbump for icu and libffi 2021-12-08 16:01:42 +00:00
silc-client chat: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:05:10 +00:00
silc-client-icb chat: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:05:10 +00:00
silc-server chat: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:05:10 +00:00
sirc chat: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:05:10 +00:00
skypeweb-purple revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
spectrum revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
srain revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
swift swift: use COMPILER_RPATH_FLAG 2022-05-03 20:21:48 +00:00
swirc swirc: update to 3.3.4. 2022-05-05 07:02:46 +00:00
telegram-purple revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
telepathy-farstream revbump for icu and libffi 2021-12-08 16:01:42 +00:00
telepathy-gabble revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
telepathy-glib revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
telepathy-haze revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
telepathy-idle revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
telepathy-logger revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
telepathy-mission-control5 revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
telepathy-qt revbump for icu and libffi 2021-12-08 16:01:42 +00:00
telepathy-qt5 revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
tik chat: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:05:10 +00:00
tirc chat: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:05:10 +00:00
tkabber chat: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:05:10 +00:00
tkirc chat: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:05:10 +00:00
tkirc2 chat: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:05:10 +00:00
tootstream python: egg.mk: add USE_PKG_RESOURCES flag 2022-01-05 15:40:56 +00:00
toxcore chat: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:05:10 +00:00
unrealircd unrealircd: update to 5.2.4 2022-03-04 08:50:46 +00:00
unrealircd6 unrealircd6: update to 6.0.3 2022-04-24 13:46:58 +00:00
weechat weechat: Update to 3.5 2022-03-29 16:42:17 +00:00
xaric chat: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:05:10 +00:00
ysm chat: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:05:10 +00:00
zenicb Bump all elisp packages for the CONFLICTS change. 2022-05-14 22:25:32 +00:00
zenirc Bump all elisp packages for the CONFLICTS change. 2022-05-14 22:25:32 +00:00
zircon chat: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 10:05:10 +00:00
znc revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
Makefile chat: add libstrophe 2022-05-15 19:12:11 +00:00