| Commit message (Collapse) | Author | Lines | ||
|---|---|---|---|---|
| 2022-12-23 | update version and carve it in changelog | -1/+5 | ||
| 2022-12-23 | save newly created tasks in a set | -3/+3 | ||
| 2022-12-13 | Return None upon receiving a bad request from Discord in get_or_fetch_member ↵v9.3.0 | -7/+12 | ||
| (#169) Co-authored-by: Amrou Bellalouna <[email protected]> | ||||
| 2022-12-12 | save strong references of newly created tasks in the `TASKS` set | -0/+5 | ||
| 2022-12-11 | Matrix test both 3.10 and 3.11 in CI | -22/+30 | ||
| 2022-12-11 | Add a dry run step to lint & test CI | -1/+5 | ||
| 2022-12-11 | Update dockerignore to include dev dir | -4/+2 | ||
| This is so that CI can build an image that includes the dev folder, which has the exmaple bot. This also removes the test and docs folders, as they od not need to be in a built image. | ||||
| 2022-12-11 | Simplify docker-compose volumes | -3/+2 | ||
| This is fine to do now, since we set POETRY_VIRTUALENVS_IN_PROJECT=false in python-poetry-base | ||||
| 2022-12-11 | Add changelog for 3.11 and new decorator | -1/+5 | ||
| 2022-12-11 | Mark project as requiring poetry-core>=1.2.0 | -1/+1 | ||
| This is required due to the use of dependancy groups | ||||
| 2022-12-11 | Support 3.11 and bump CI to use 3.11 | -8/+9 | ||
| 2022-12-11 | Support 3.11 & bump all deps | -439/+384 | ||
| 2022-11-14 | Handle not being able to delete the interaction message on button press. | -8/+27 | ||
| 2022-11-13 | Bump d.py to 2.1.0 | -116/+99 | ||
| This also bumps some dev-deps to latest | ||||
| 2022-11-10 | Clean Up Formatting Of Project Name In Docs | -4/+8 | ||
| Signed-off-by: Hassan Abouelela <[email protected]> | ||||
| 2022-11-10 | Add Support For Attributes In Docstrings | -134/+169 | ||
| This allows class attributes to be defined in docstrings without causing an exception while linking the source code. Due to the non-static nature of attributes, it's not trivial to link their actual definition, so the chosen lines will actually be all the lines of the parent class. Signed-off-by: Hassan Abouelela <[email protected]> | ||||
| 2022-11-05 | Add six as a dev dep | -1/+14 | ||
| 2022-11-05 | Relock poetry | -406/+397 | ||
| 2022-11-05 | Rename package due to naming conflict | -61/+66 | ||
| 2022-11-05 | Update pyproject.toml module meta data | -2/+9 | ||
| 2022-10-26 | Use New Static Build Site API (#122) | -15/+14 | ||
| Updates the build the script to use the new API provided by the site to fetch and download artifacts. Additionally, metadata files are deleted in CI. They are only required for speeding up subsequent builds, which is not applicable in CI, and only increases the build size. | ||||
| 2022-09-27 | bump sphinx and sphinx-autodoc-typehints | -68/+317 | ||
| 2022-09-27 | make function and message positional only to free up names for kwargs | -0/+1 | ||
| 2022-09-19 | allow user specified function to manipulate cooldown args | -3/+9 | ||
| 2022-09-19 | use more consistent styling | -2/+4 | ||
| 2022-09-19 | type return with tuple | -1/+1 | ||
| while only iterable is strictly needed, any reader would expect the function to return a tuple | ||||
| 2022-09-19 | use ctx.channel directly | -2/+1 | ||
| 2022-09-19 | get rid of unnecessary check | -4/+1 | ||
| 2022-09-19 | use a clearer name | -3/+3 | ||
| 2022-09-18 | use paramspec from typing | -8/+4 | ||
| the package now requires python 3.10 | ||||
| 2022-09-18 | Bump dev deps | -40/+28 | ||
| 2022-09-18 | Bump d.py to 2.0.1 | -147/+1075 | ||
| 2022-09-18 | Remove Unused Steps In CI | -11/+2 | ||
| Signed-off-by: Hassan Abouelela <[email protected]> | ||||
| 2022-09-18 | Use Poetry Base In Docker Image | -20/+2 | ||
| Use chrislovering/python-poetry-base as the base image for the Dockerfile. It manages everthing required to install and configure poetry. Signed-off-by: Hassan Abouelela <[email protected]> | ||||
| 2022-09-11 | Use BOT_TOKEN in example project | -2/+2 | ||
| This is so that we use the same env var as metricity, remove the need for duplicate env vars. | ||||
| 2022-09-11 | Don't mount project root in docker-compose | -2/+3 | ||
| Now that we are using in-project venvs, mounting the entire project root would cause the host's venv to overwrite the image's if present. | ||||
| 2022-09-11 | Update poetry to use 1.2.0 | -10/+20 | ||
| This change requires the use of venvs, rather than pip user installs | ||||
| 2022-09-10 | Add metricity to docker-compose so web doesn't crash loop | -0/+18 | ||
| 2022-08-18 | Bump Discord.py to the stable 2.0 release.v8.2.0 | -54/+59 | ||
| This also bumps some other deps, rather than individually merging the dependabot releases. | ||||
| 2022-08-16 | Update docs/changelog.rst | -1/+1 | ||
| Co-authored-by: ChrisJL <[email protected]> | ||||
| 2022-08-16 | Added comments for regex addition | -1/+1 | ||
| 2022-08-16 | Version bump and changelog | -1/+4 | ||
| 2022-08-16 | Removed redundant capture group | -1/+1 | ||
| 2022-08-16 | Unified usage of flags kwarg | -2/+2 | ||
| 2022-08-16 | Corrected docstrings | -2/+2 | ||
| 2022-08-16 | Removed a redundant regex character class | -1/+1 | ||
| 2022-08-16 | Expanded regex testing for discord invites | -27/+42 | ||
| - Added tests for both match and search, previously the fact that `re.match` did not work with http/https links was not made apparent by the tests as only `re.search` is tested. | ||||
| 2022-08-16 | Added regex for leading https or www | -0/+1 | ||
| 2022-07-27 | Bump sphinx to 5.1.1 | -617/+63 | ||
| 2022-07-27 | Bump version to 8.0.0 | -2/+3 | ||