Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
51 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
20cd5ed
Merge branch 'master' into appinf
Lumabots Dec 2, 2025
ef0cb75
feat: add ApplicationEventWebhookStatus enum and update AppInfo to us…
Lumabots Dec 5, 2025
5f939dd
style(pre-commit): auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Dec 5, 2025
27b5b01
Merge branch 'master' into appinf
Lumabots Dec 8, 2025
ae03d85
Update discord/appinfo.py
Lumabots Dec 8, 2025
f2d461d
refactor: simplify icon and cover_image type annotations in AppInfo
Lumabots Dec 8, 2025
7afeed1
feat: implement FlagCommand for enhanced command argument parsing
Lumabots Dec 9, 2025
630bdcd
Merge branch 'master' into appinf
Lumabots Dec 9, 2025
03700ad
Update discord/appinfo.py
Paillat-dev Dec 9, 2025
9f6d9bc
Merge branch 'master' into appinf
Paillat-dev Dec 23, 2025
10cc2a6
Merge branch 'master' into appinf
Lumabots Dec 23, 2025
30e6fa0
style(pre-commit): auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Dec 23, 2025
fc63c77
docs: add versionadded directive for 2.7 in AppInfo and enums
Lumabots Dec 23, 2025
ab26c2a
docs: 📝 Add versionadded directive for ApplicationEventWebhookStatus …
Lumabots Dec 23, 2025
92a9616
docs: 📝 Update versionadded directive to 2.7.1 for AppInfo attributes…
Lumabots Dec 29, 2025
eae7a46
Merge branch 'master' into appinf
Lumabots Dec 29, 2025
94ea2c6
docs: 📝 Update attribute names for ApplicationEventWebhookStatus to l…
Lumabots Dec 30, 2025
4f7bbcc
Update discord/appinfo.py
Lumabots Jan 1, 2026
9afae37
Update discord/appinfo.py
Lumabots Jan 1, 2026
b499895
Update discord/appinfo.py
Lumabots Jan 1, 2026
97e9ab8
Update discord/appinfo.py
Lumabots Jan 1, 2026
d37080a
Update discord/appinfo.py
Lumabots Jan 1, 2026
ed843bb
Merge branch 'master' into appinf
Lumabots Jan 1, 2026
c98a56b
Update discord/appinfo.py
Lumabots Jan 4, 2026
fc3c746
Update discord/appinfo.py
Lumabots Jan 4, 2026
587921a
Update discord/appinfo.py
Lumabots Jan 4, 2026
a61568b
Merge branch 'master' into appinf
Lumabots Jan 4, 2026
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
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@ 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.

Suggested change
- Added `AppInfo.edit()` method and missing `AppInfo` fields.
- Added `AppInfo.edit()` method and missing `AppInfo` attributes.

([#2994](https://github.com/Pycord-Development/pycord/pull/2994))
- Added `Guild.fetch_roles_member_counts` method and `GuildRoleCounts` class.
([#3020](https://github.com/Pycord-Development/pycord/pull/3020))
- Implemented `with_response` for interaction callbacks, adding
Expand Down
Loading