summary refs log tree commit diff
path: root/pkgs/servers/mautrix-telegram
Commit message (Collapse)AuthorAge
* mautrix-telegram: add postgresql database driverpacien2020-08-01
| | | | PostgreSQL is listed as an officially supported database backend.
* mautrix-telegram: 0.8.1 -> 0.8.2Maximilian Bosch2020-07-28
| | | | https://github.com/tulir/mautrix-telegram/releases/tag/v0.8.2
* mautrix-telegram: 0.8.0 -> 0.8.1Maximilian Bosch2020-06-10
| | | | https://github.com/tulir/mautrix-telegram/releases/tag/v0.8.1
* mautrix-telegram: 0.7.2 -> 0.8.0Maximilian Bosch2020-06-03
| | | | https://github.com/tulir/mautrix-telegram/releases/tag/v0.8.0
* treewide: Per RFC45, remove all unquoted URLsMichael Reilly2020-04-10
|
* mautrix-telegram: 0.7.1 -> 0.7.2Maximilian Bosch2020-04-04
| | | | https://github.com/tulir/mautrix-telegram/releases/tag/v0.7.2
* mautrix-telegram: 0.7.0 -> 0.7.1Maximilian Bosch2020-02-04
| | | | https://github.com/tulir/mautrix-telegram/releases/tag/v0.7.1
* mautrix-telegram: mark as broken on darwinMaximilian Bosch2019-12-29
| | | | | | | | | | | | | | | | Tests currently fail like this: ``` /nix/store/yslk7x7iw3hka6d33kmnba9sxaia4492-python3.7-mautrix-0.4.0/lib/python3.7/site-packages/mautrix/util/manhole.py:9: in <module> from socket import SOL_SOCKET, SO_PEERCRED E ImportError: cannot import name 'SO_PEERCRED' from 'socket' (/nix/store/81qani7sdir46gjwf3a3jr2cv1aggkz1-python3-3.7.5/lib/python3.7/socket.py) !!!!!!!!!!!!!!!!!!! Interrupted: 1 errors during collection !!!!!!!!!!!!!!!!!!!! =============================== 1 error in 1.73s =============================== ``` Those values don't seem to be available on the MacOS-version of that module. As there's no workaround implemented in the source, I assume that upstream doesn't intend to support darwin-alike platforms atm.
* mautrix-telegram: 0.6.1 -> 0.7.0Maximilian Bosch2019-12-29
| | | | | | | | https://github.com/tulir/mautrix-telegram/releases/tag/v0.7.0 https://github.com/tulir/mautrix-telegram/releases/tag/v0.7.0-rc4 https://github.com/tulir/mautrix-telegram/releases/tag/v0.7.0-rc3 https://github.com/tulir/mautrix-telegram/releases/tag/v0.7.0-rc2 https://github.com/tulir/mautrix-telegram/releases/tag/v0.7.0-rc1
* mautrix-telegram: fix buildJonathan Ringer2019-12-24
|
* mautrix-telegram: fix buildMaximilian Bosch2019-10-26
| | | | | | | | | | | | | | | | | | With updating `pluggy` to `0.13.0`[1] the way how python modules are imported during pytest changed which broke all modules that had a `coding: future_fstrings` annotation at the top which used to be needed for python <=3.5. This only affected the tests, deploying a `mautrix-telegram` from master with `doCheck = false;` works fine. I applied a patch for `mautrix-telegram` which drops python 3.5 compat (this package is intended to be used as application with python 3.7, so this should be fine on master/unstable) and modified `mautrix-appservice` accordingly as a lot of things on master changed since their last release, so applying a patch didn't work there. Resolves #71996 [1] faf8cfba4ecd86186bb2d965f6d6386a08aba6a6
* mautrix-telegram: 0.6.0 -> 0.6.1Maximilian Bosch2019-09-20
| | | | https://github.com/tulir/mautrix-telegram/releases/tag/v0.6.1
* mautrix-telegram: fix startupMaximilian Bosch2019-09-12
| | | | `setuptools` isn't propagated automatically anymore, see also #68314.
* mautrix-telegram: 0.5.2 -> 0.6.0nyanloutre2019-07-09
|
* mautrix-telegram: 0.5.1 -> 0.5.2nyanloutre2019-06-01
|
* mautrix-telegram: patch away alembic dependencyMaximilian Bosch2019-05-24
| | | | | | | | | | | | | | | | | | | | `alembic`[1] is a database migration tool which is invoked from the CLI when installing the telegram bridge, but never needed during the runtime. The reason why `alembic` is required here is to ensure that it exists in the Python environment when deploying the bridge. However `alembic` requires `mautrix-telegram` in its environment to create a database schema from the Python models. Such a dependency relation may be possible with tools like virtualenv, however it'll result in an infinite recursion at evaluation time in Nix. With this patch, `mautrix-telegram` doesn't depend on `alembic` anymore and provides a patched alembic (`pkgs.mautrix-telegram.alembic`) which has `mautrix-telegram` in its path. [1] https://alembic.sqlalchemy.org/en/latest/
* mautrix-telegram: 0.5.0 -> 0.5.1nyanloutre2019-03-21
|
* mautrix-telegram: 0.4.0.post1 -> 0.5.0nyanloutre2019-03-20
|
* mautrix-telegram: init at 0.4.0.post1nyanloutre2019-01-31