Skip to content
Closed
Show file tree
Hide file tree
Changes from 30 commits
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
6cabb6f
Add support for editing application info and new fields
Lumabots Nov 7, 2025
2f54fe7
style(pre-commit): auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Nov 7, 2025
fab1478
Add AppInfo.edit() and missing fields support
Lumabots Nov 7, 2025
bfa2940
style(pre-commit): auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Nov 7, 2025
9893239
Update discord/appinfo.py
Lumabots Nov 7, 2025
884cd6c
Update discord/appinfo.py
Lumabots Nov 7, 2025
41f12a2
Update discord/appinfo.py
Lumabots Nov 7, 2025
714c68a
Update discord/appinfo.py
Lumabots Nov 7, 2025
734b5ce
Update discord/appinfo.py
Lumabots Nov 7, 2025
49c90b9
Update discord/appinfo.py
Lumabots Nov 7, 2025
76eb883
Restrict icon and cover_image types to bytes or None
Lumabots Nov 7, 2025
bd91789
style(pre-commit): auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Nov 7, 2025
7e5ff54
feat(emoji): add mention property to BaseEmoji for easier emoji refer…
Lumabots Nov 7, 2025
6fc48da
Merge branch 'appinf' of https://github.com/Lumabots/pycord into appinf
Lumabots Nov 7, 2025
bde7ec3
Merge branch 'master' into appinf
Lumabots Nov 11, 2025
89d3011
refactor(AppInfo): improve integration_types_config handling and simp…
Lumabots Nov 11, 2025
dfb7907
style(pre-commit): auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Nov 11, 2025
9eecbfa
refactor(AppInfo): remove deprecated flags attribute from AppInfo class
Lumabots Nov 14, 2025
ab000ac
Merge branch 'master' into appinf
Paillat-dev Nov 16, 2025
8c0dcd7
Merge branch 'master' into appinf
Paillat-dev Nov 23, 2025
03a46e8
refactor(AppInfo): rename event_webhooks_status to _event_webhooks_st…
Lumabots Nov 25, 2025
0b603f5
refactor(AppInfo): remove setter for event_webhooks_enabled and assoc…
Lumabots Nov 25, 2025
3c398cc
Update CHANGELOG.md
Lumabots Nov 29, 2025
1b0017c
refactor: update method names and types in AppInfo and HTTPClient
Lumabots Dec 2, 2025
0181f8d
refactor: improve stupid error impossible to handle
Lumabots Dec 4, 2025
a465352
style(pre-commit): auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Dec 4, 2025
d8a0aa2
docs: update CHANGELOG.md to reflect changes in BaseView.on_timeout b…
Lumabots Dec 4, 2025
fc7214c
Merge branch 'timeout' of https://github.com/Lumabots/pycord into tim…
Lumabots Dec 4, 2025
6fa9248
Update changelog for Paginator.on_timeout behavior
Lumabots Dec 4, 2025
4dbc13c
style(pre-commit): auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Dec 4, 2025
a442507
Update CHANGELOG.md
Lumabots May 2, 2025
b8bf650
sync with pycord
Lumabots May 21, 2025
2f194c7
chore(deps): upgrade dependency msgspec to ~=0.20.0 (#3009)
renovate[bot] Nov 24, 2025
15e4017
docs: :memo: Fix versionadded for bypass slowmode permission to 2.7 (…
Paillat-dev Nov 26, 2025
1e914ae
chore(deps): upgrade actions/checkout action to v6 (#3007)
renovate[bot] Nov 27, 2025
6f4b4a0
chore(deps): upgrade dependency pre-commit to v4.5.0 (#3008)
renovate[bot] Nov 27, 2025
9e2b4a9
chore(deps): upgrade dependency bandit to v1.9.2 (#3005)
renovate[bot] Nov 27, 2025
00676fa
chore(deps): upgrade dependency pytest to v9 (#2995)
renovate[bot] Nov 27, 2025
c8da1d0
Update CHANGELOG.md
Lumabots May 2, 2025
fa6dc19
sync with pycord
Lumabots May 21, 2025
d77f0b3
style(pre-commit): auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Dec 5, 2025
60d45d1
Merge branch 'master' into timeout
Lumabots Dec 5, 2025
13eaf0c
sync with pycord
Lumabots May 21, 2025
5d17008
Update CHANGELOG.md
Lumabots May 2, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,15 @@ These changes are available on the `master` branch, but have not yet been releas
- Added `Attachment.read_chunked` and added optional `chunksize` argument to
`Attachment.save` for retrieving attachments in chunks.
([#2956](https://github.com/Pycord-Development/pycord/pull/2956))
- Added `AppInfo.edit()` method and missing `AppInfo` fields.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think this is a mistake

([#2994](https://github.com/Pycord-Development/pycord/pull/2994))

### Changed

- Changed `BaseView.on_timeout` and `Paginator.on_timeout` behavior: views no longer
raise errors on timeout.
([#3018](https://github.com/Pycord-Development/pycord/pull/3018))

### Fixed

- Fixed breaking change in `ui.Select` Generic typing by adding default values to
Expand Down
Loading
Loading