aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeLines
...
* Merge pull request #2685 from python-discord/bump-to-pydis-core-10Gravatar Amrou Bellalouna2023-08-26-271/+160
|\ | | | | Bump pydis_core to v10.1.0
| * apply white space around operatorsGravatar shtlrs2023-08-26-1/+1
| |
| * bump pydis_core version to 10.1.0Gravatar shtlrs2023-08-26-106/+113
| |
| * appease linterGravatar shtlrs2023-08-26-5/+6
| |
| * pass missing bot paramGravatar shtlrs2023-08-26-9/+9
| |
| * remove unused pin_no_system_message utilGravatar shtlrs2023-08-26-15/+0
| |
| * delete members utils moduleGravatar shtlrs2023-08-26-30/+0
| |
| * use get_or_fetch_member provided by bot-coreGravatar shtlrs2023-08-26-28/+10
| |
| * use get_or_fetch_channel provided by bot-coreGravatar shtlrs2023-08-26-20/+5
| |
| * use bot-core caching utilGravatar shtlrs2023-08-26-43/+1
| |
| * update all instances of send_to_paste_serviceGravatar shtlrs2023-08-26-20/+21
|/ | | | The change resides mainly in specifying the content & lexer in the `PasteFile` instance
* Remove call to the fixup reusable workflow (#2731)Gravatar Amrou Bellalouna2023-08-24-6/+0
|
* feat: move link for PEP to title in !pep command (#2723)Gravatar Mikołaj Kruczek2023-08-19-1/+1
|
* Bump ruff from 0.0.284 to 0.0.285 (#2725)Gravatar dependabot[bot]2023-08-19-20/+20
| | | | | | | | | | | | | | | | Bumps [ruff](https://github.com/astral-sh/ruff) from 0.0.284 to 0.0.285. - [Release notes](https://github.com/astral-sh/ruff/releases) - [Changelog](https://github.com/astral-sh/ruff/blob/main/BREAKING_CHANGES.md) - [Commits](https://github.com/astral-sh/ruff/compare/v0.0.284...v0.0.285) --- 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>
* Bump pydantic-settings from 2.0.2 to 2.0.3 (#2721)Gravatar dependabot[bot]2023-08-18-5/+5
| | | | Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* Bump emoji from 2.7.0 to 2.8.0 (#2724)Gravatar dependabot[bot]2023-08-17-4/+5
| | | | Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* Merge pull request #2718 from python-discord/run-fixup-blocker-on-pr-onlyGravatar jchristgit2023-08-16-3/+5
|\ | | | | Run fixup blocker only when the ref isn't main's HEAD
| * run fixup blocker when git ref isn't mainGravatar shtlrs2023-08-12-3/+5
| | | | | | | | This also makes the lint-test workflow a dependency since as we'd want to run linting on all fixup commits still
* | Bump coverage from 7.2.7 to 7.3.0 (#2720)Gravatar dependabot[bot]2023-08-14-64/+67
|/ | | | Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* Merge pull request #2717 from python-discord/reuse-fixup-blocker-workflowGravatar Amrou Bellalouna2023-08-12-0/+4
|\ | | | | Block fixup commits
| * Merge branch 'main' into reuse-fixup-blocker-workflowGravatar Amrou Bellalouna2023-08-12-61/+86
| |\ | |/ |/|
* | Merge pull request #2715 from python-discord/use-ruff-isortGravatar wookie1842023-08-12-61/+86
|\ \ | | | | | | Use ruff's isort implementation
| * | Update import style for ruff isort ruleGravatar Chris Lovering2023-08-11-16/+79
| | | | | | | | | | | | ruff's isort rule doesn't allow multiple imports on the same line if wrapping. This is arguably easier to read too.
| * | Use ruff's isort implementationGravatar Chris Lovering2023-08-11-45/+7
|/ /
| * use the organisation's fixup commit blocker workflowGravatar shtlrs2023-08-12-0/+4
|/
* Bump ruff from 0.0.283 to 0.0.284 (#2714)Gravatar dependabot[bot]2023-08-11-20/+31
| | | | | | | | | | | | | | | | Bumps [ruff](https://github.com/astral-sh/ruff) from 0.0.283 to 0.0.284. - [Release notes](https://github.com/astral-sh/ruff/releases) - [Changelog](https://github.com/astral-sh/ruff/blob/main/BREAKING_CHANGES.md) - [Commits](https://github.com/astral-sh/ruff/compare/v0.0.283...v0.0.284) --- 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>
* Merge pull request #2695 from python-discord/pydantic-v2Gravatar ChrisJL2023-08-11-411/+508
|\ | | | | Migrate to Pydantic v2
| * Don't use a BaseSettings instance for constants that don't need to be ↵Gravatar Chris Lovering2023-08-11-27/+16
| | | | | | | | overwritten
| * Use a custom type coercion function as pydantic removed their'sGravatar Chris Lovering2023-08-11-12/+43
| | | | | | | | | | https://docs.pydantic.dev/latest/migration/#changes-to-handling-of-standard-types > While union types will still attempt validation of each choice from left to right, they now preserve the type of the input whenever possible, even if the correct type is not the first choice for which the input would pass validation
| * Replace deprecated functions with new pydantic v2 functionsGravatar Chris Lovering2023-08-11-42/+53
| |
| * Use new Pydantic v2 logic for constant loadingGravatar Chris Lovering2023-08-11-275/+246
| |
| * Bump pydantic to v2 and install pydantic-settingsGravatar Chris Lovering2023-08-11-71/+166
|/
* Merge pull request #2710 from python-discord/dependabot/pip/ruff-0.0.283Gravatar Amrou Bellalouna2023-08-11-21/+21
|\ | | | | Bump ruff from 0.0.282 to 0.0.283
| * Bump ruff from 0.0.282 to 0.0.283Gravatar dependabot[bot]2023-08-10-21/+21
|/ | | | | | | | | | | | | | | | Bumps [ruff](https://github.com/astral-sh/ruff) from 0.0.282 to 0.0.283. - [Release notes](https://github.com/astral-sh/ruff/releases) - [Changelog](https://github.com/astral-sh/ruff/blob/main/BREAKING_CHANGES.md) - [Commits](https://github.com/astral-sh/ruff/compare/v0.0.282...v0.0.283) --- updated-dependencies: - dependency-name: ruff dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]>
* Bump regex from 2023.6.3 to 2023.8.8 (#2711)Gravatar dependabot[bot]2023-08-09-91/+91
| | | | | | | | | | | | | | | Bumps [regex](https://github.com/mrabarnett/mrab-regex) from 2023.6.3 to 2023.8.8. - [Changelog](https://github.com/mrabarnett/mrab-regex/blob/hg/changelog.txt) - [Commits](https://github.com/mrabarnett/mrab-regex/compare/2023.6.3...2023.8.8) --- updated-dependencies: - dependency-name: regex 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>
* Bump more-itertools from 10.0.0 to 10.1.0 (#2707)Gravatar dependabot[bot]2023-08-06-5/+5
| | | | | | | | | | | | | | | Bumps [more-itertools](https://github.com/more-itertools/more-itertools) from 10.0.0 to 10.1.0. - [Release notes](https://github.com/more-itertools/more-itertools/releases) - [Commits](https://github.com/more-itertools/more-itertools/commits) --- updated-dependencies: - dependency-name: more-itertools 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>
* Fix docs link markdown (#2708)Gravatar Numerlor2023-08-06-0/+2
|
* Change DM users get when warned (#2696)Gravatar Steele Farnsworth2023-08-05-13/+31
|
* Bump rapidfuzz from 3.1.2 to 3.2.0 (#2706)Gravatar dependabot[bot]2023-08-03-95/+95
| | | | | | | | | | | | | | | | Bumps [rapidfuzz](https://github.com/maxbachmann/RapidFuzz) from 3.1.2 to 3.2.0. - [Release notes](https://github.com/maxbachmann/RapidFuzz/releases) - [Changelog](https://github.com/maxbachmann/RapidFuzz/blob/main/CHANGELOG.rst) - [Commits](https://github.com/maxbachmann/RapidFuzz/compare/v3.1.2...v3.2.0) --- 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>
* Bump ruff from 0.0.280 to 0.0.282 (#2703)Gravatar dependabot[bot]2023-08-02-20/+20
| | | | | | | | | | | | | | | | Bumps [ruff](https://github.com/astral-sh/ruff) from 0.0.280 to 0.0.282. - [Release notes](https://github.com/astral-sh/ruff/releases) - [Changelog](https://github.com/astral-sh/ruff/blob/main/BREAKING_CHANGES.md) - [Commits](https://github.com/astral-sh/ruff/compare/v0.0.280...v0.0.282) --- 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>
* Bump sentry-sdk from 1.29.1 to 1.29.2 (#2704)Gravatar dependabot[bot]2023-08-02-5/+5
| | | | | | | | | | | | | | | | Bumps [sentry-sdk](https://github.com/getsentry/sentry-python) from 1.29.1 to 1.29.2. - [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.29.1...1.29.2) --- updated-dependencies: - dependency-name: sentry-sdk dependency-type: direct:production 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>
* Bump taskipy from 1.11.0 to 1.12.0 (#2699)Gravatar dependabot[bot]2023-08-02-5/+5
| | | | | | | | | | | | | | Bumps [taskipy](https://github.com/taskipy/taskipy) from 1.11.0 to 1.12.0. - [Commits](https://github.com/taskipy/taskipy/compare/1.11.0...1.12.0) --- updated-dependencies: - dependency-name: taskipy dependency-type: direct:development 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>
* Bump sentry-sdk from 1.28.1 to 1.29.1 (#2702)Gravatar dependabot[bot]2023-08-02-5/+5
| | | | | | | | | | | | | | | | Bumps [sentry-sdk](https://github.com/getsentry/sentry-python) from 1.28.1 to 1.29.1. - [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.28.1...1.29.1) --- 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>
* Bump emoji from 2.6.0 to 2.7.0 (#2693)Gravatar dependabot[bot]2023-07-25-4/+4
| | | | | | | | | | | | | | | | Bumps [emoji](https://github.com/carpedm20/emoji) from 2.6.0 to 2.7.0. - [Release notes](https://github.com/carpedm20/emoji/releases) - [Changelog](https://github.com/carpedm20/emoji/blob/master/CHANGES.md) - [Commits](https://github.com/carpedm20/emoji/compare/v2.6.0...v2.7.0) --- updated-dependencies: - dependency-name: emoji 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>
* Bump more-itertools from 9.1.0 to 10.0.0 (#2694)Gravatar dependabot[bot]2023-07-25-6/+17
| | | | | | | | | | | | | | | Bumps [more-itertools](https://github.com/more-itertools/more-itertools) from 9.1.0 to 10.0.0. - [Release notes](https://github.com/more-itertools/more-itertools/releases) - [Commits](https://github.com/more-itertools/more-itertools/compare/v9.1.0...v10.0.0) --- updated-dependencies: - dependency-name: more-itertools 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>
* Merge pull request #2680 from python-discord/dependabot/pip/ruff-0.0.278Gravatar ChrisJL2023-07-25-36/+25
|\ | | | | Bump ruff from 0.0.277 to 0.0.280
| * Remove unused noqa directiveGravatar Chris Lovering2023-07-24-1/+1
| |
| * Ignore RUF015 linting ruleGravatar Chris Lovering2023-07-24-1/+1
| | | | | | | | This rule is Prefer next(iter({iterable})) over list({iterable})[0] which we don't agree with
| * Bump ruff from 0.0.277 to 0.0.280Gravatar dependabot[bot]2023-07-24-34/+23
|/ | | | | | | | | | | | | | | | Bumps [ruff](https://github.com/astral-sh/ruff) from 0.0.277 to 0.0.280. - [Release notes](https://github.com/astral-sh/ruff/releases) - [Changelog](https://github.com/astral-sh/ruff/blob/main/BREAKING_CHANGES.md) - [Commits](https://github.com/astral-sh/ruff/compare/v0.0.277...v0.0.280) --- updated-dependencies: - dependency-name: ruff dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]>
* Bump deepdiff from 6.3.0 to 6.3.1 (#2673)Gravatar dependabot[bot]2023-07-24-5/+5
| | | | | | | | | | | | | | | | Bumps [deepdiff](https://github.com/seperman/deepdiff) from 6.3.0 to 6.3.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.3.0...6.3.1) --- updated-dependencies: - dependency-name: deepdiff dependency-type: direct:production 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>