| Commit message (Collapse) | Author | Age | Lines |
| ... | |
| | | | |
|
| | | | |
|
| | | | |
|
| | | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Bumps [deepdiff](https://github.com/seperman/deepdiff) from 6.7.1 to 7.0.1.
- [Release notes](https://github.com/seperman/deepdiff/releases)
- [Changelog](https://github.com/seperman/deepdiff/blob/master/docs/changelog.rst)
- [Commits](https://github.com/seperman/deepdiff/compare/6.7.1...7.0.1)
---
updated-dependencies:
- dependency-name: deepdiff
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
|
| | | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Bumps [sentry-sdk](https://github.com/getsentry/sentry-python) from 1.44.1 to 1.45.0.
- [Release notes](https://github.com/getsentry/sentry-python/releases)
- [Changelog](https://github.com/getsentry/sentry-python/blob/master/CHANGELOG.md)
- [Commits](https://github.com/getsentry/sentry-python/compare/1.44.1...1.45.0)
---
updated-dependencies:
- dependency-name: sentry-sdk
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
|
| | | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Bumps [ruff](https://github.com/astral-sh/ruff) from 0.3.5 to 0.3.7.
- [Release notes](https://github.com/astral-sh/ruff/releases)
- [Changelog](https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md)
- [Commits](https://github.com/astral-sh/ruff/compare/v0.3.5...v0.3.7)
---
updated-dependencies:
- dependency-name: ruff
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
|
| | | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Bumps [rapidfuzz](https://github.com/rapidfuzz/RapidFuzz) from 3.7.0 to 3.8.1.
- [Release notes](https://github.com/rapidfuzz/RapidFuzz/releases)
- [Changelog](https://github.com/rapidfuzz/RapidFuzz/blob/main/CHANGELOG.rst)
- [Commits](https://github.com/rapidfuzz/RapidFuzz/compare/v3.7.0...v3.8.1)
---
updated-dependencies:
- dependency-name: rapidfuzz
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
|
| |\ \ \
| | | |
| | | | |
fixed typos in tags embed.
|
| |/ / / |
|
| |\ \ \
| | | |
| | | | |
Bump idna from 3.6 to 3.7
|
| |/ / /
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Bumps [idna](https://github.com/kjd/idna) from 3.6 to 3.7.
- [Release notes](https://github.com/kjd/idna/releases)
- [Changelog](https://github.com/kjd/idna/blob/master/HISTORY.rst)
- [Commits](https://github.com/kjd/idna/compare/v3.6...v3.7)
---
updated-dependencies:
- dependency-name: idna
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <[email protected]>
|
| |\ \ \
| | | |
| | | | |
Test that infraction reason sent to database is not truncated
|
| | | | | |
|
| |\ \ \ \
| | | | |
| | | | | |
Reference the `/tag` slash-command instead of the old `!tags` in the footer of tags listings
|
| | |\| | | |
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
| | | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
difference
Updated the domain regex to account for trailing ")" characters.
Also, normalized triggered URLs to lowercase before executing the set difference performed to figure out unknown URLs in a message.
|
| | | | | | |
|
| | |_|_|/
|/| | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Previously the source command checks for the source object's class after
getting it from the SourceType converter. When the tags cog is reloaded,
TagIdentifier is redefined. We were checking whether the old
TagIdentifier class (the `type()` of an instance of the old
TagIdentifier) equals the newly defined TagIdentifier class. This
returns false because the TagIdentifier class is redefined when the tags
cog is reloaded, which caused tags, correctly identified by Source
converter, to be unable to be identified in the source cog.
The fix takes advantage of the fact that the source converter could
correctly identify tags objects even after the tags cog reloads, and use
enum comparisons rather than `isinstance`/`type()` to obtain the source
type of whatever the source converter returns.
Since we're no longer using the source converter as an actual converter,
the function is moved to the source cog instead, and it still works
fine.
|
| | | | |
| | | |
| | | |
| | | | |
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
|
| | | | |
| | | |
| | | |
| | | | |
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
|
| | | | | |
|
| | | | |
| | | |
| | | |
| | | | |
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
|
| | |/ /
|/| |
| | |
| | | |
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
|
| |\ \ \
| | | |
| | | |
| | | |
| | | | |
python-discord/wookie184-show-warnings-in-actions-tests
Show warnings when running tests in GH Actions
|
| |/ / / |
|
| |\ \ \
| | | |
| | | | |
Fix warning in tests
|
| | |\ \ \
| |/ / /
|/| | | |
|
| |\ \ \ \
| | | | |
| | | | | |
Use a d.py task for checking for necro help posts
|
| |/ / / / |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | |
| | | |
| | | |
| | | | |
This will give other cogs a chance to start up
|
| | | | |
| | | |
| | | | |
We want to be able to expand the list of channels ignored by duckpond, without having to add the entire list of default channels first.
|
| |/ / / |
|
| |\ \ \
| | | |
| | | | |
Log to #voice-log for passed and failed attempts at voice verification
|
| | | | | |
|
| |/ / / |
|
| |\ \ \
| | | |
| | | | |
Bump bot core & Python version
|
| | | | | |
|
| |/ / /
| | |
| | |
| | | |
A pydantic version bump is also required due to latest requirements from bot-core
|
| |\ \ \
| | | |
| | | | |
Support editing of timeout durations.
|
| | | | | |
|
| | | | |
| | | |
| | | |
| | | | |
If timeout was edited to a longer duration, members could evade being timeout upon rejoining, so we reapply them if that's the case
|
| | | | | |
|
| | | | |
| | | |
| | | |
| | | | |
if a user isn't a member of the server, trying to edit their timeout will result in an error
|