Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
3ef80ed
المهام المنجزة:
google-labs-jules[bot] Jul 3, 2025
24b5af9
Merge pull request #1 from devrabie/remove-database-feature
devrabie Jul 3, 2025
4eaa598
تحديث معلومات المشروع في composer.json و README.md
google-labs-jules[bot] Jul 4, 2025
6472a6c
Merge pull request #2 from devrabie/remove-database-feature
devrabie Jul 4, 2025
676e452
feat: Implement Telegram Bot API 7.2 features
google-labs-jules[bot] Jul 4, 2025
145cf16
Merge pull request #3 from devrabie/telegram-api-7.2-update
devrabie Jul 4, 2025
d187d89
docs: Update version to 1.0.2 and add changelog entry for API 7.2
google-labs-jules[bot] Jul 4, 2025
6d51208
Merge pull request #4 from devrabie/telegram-api-7.2-update
devrabie Jul 4, 2025
370e196
Add support for Telegram Bot API 7.3
google-labs-jules[bot] Jul 4, 2025
fc28e3e
Merge pull request #5 from devrabie/feature/telegram-api-7.3-support
devrabie Jul 5, 2025
5aa3c6f
Refactor: Remove internal persistence and add Redis helper
google-labs-jules[bot] Jul 6, 2025
ecb9376
Refactor: Remove internal persistence, add Redis helper, and update R…
google-labs-jules[bot] Jul 6, 2025
bf149ac
Merge pull request #6 from devrabie/refactor/stateless-redis
devrabie Jul 6, 2025
324fac9
Add support for Telegram Bot API 7.4
google-labs-jules[bot] Jul 6, 2025
8d1960c
Merge pull request #7 from devrabie/feature/telegram-api-7.4-support
devrabie Jul 6, 2025
2f8bd03
feat: Replace Predis with native Redis and implement auto DI
google-labs-jules[bot] Jul 16, 2025
e54b460
I've made the following changes:
google-labs-jules[bot] Jul 16, 2025
fe86636
Merge pull request #8 from devrabie/feature/redis-di
devrabie Jul 16, 2025
c16cf33
I will update the PHPDocs for the bot name and description methods.
google-labs-jules[bot] Aug 5, 2025
07b6496
Merge pull request #9 from devrabie/feature/update-bot-settings-docs
devrabie Aug 14, 2025
5370734
Update Telegram.php
devrabie Aug 14, 2025
f036f7f
feat: Add password authentication for Redis connection
google-labs-jules[bot] Sep 22, 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
52 changes: 51 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,54 @@ Exclamation symbols (:exclamation:) note something of importance e.g. breaking c
### Fixed
### Security

## [1.0.3] - 2024-05-07
### Notes
- [:ledger: View file changes][1.0.3]
- Support for Telegram Bot API 7.3.
### Added
- **Poll Enhancements:**
- New entity `InputPollOption` (`src/Entities/Poll/InputPollOption.php`) with properties `text` and optional `text_entities`.
- Added optional property `question_entities` (array of `MessageEntity`) to `src/Entities/Poll.php`.
- Added optional property `text_entities` (array of `MessageEntity`) to `src/Entities/PollOption.php`.
- Updated `sendPoll` method in `src/Request.php`:
- Changed `options` parameter to be an array of `InputPollOption`.
- Added optional parameters `question_parse_mode` (string) and `question_entities` (array of `MessageEntity`).
- **Chat and getChat Method Refactoring:**
- New entity `ChatFullInfo` (`src/Entities/ChatFullInfo.php`) containing all properties from `Chat` entity plus properties from `getChat` (e.g., `description`, `invite_link`, `pinned_message`, `bio`) and new optional property `max_reaction_count` (integer).
- Updated `getChat` method in `src/Request.php` docblock to return a `ServerResponse` with a `ChatFullInfo` object.
- **Miscellaneous Updates:**
- New Chat Background entities:
- `src/Entities/ChatBackground.php`
- `src/Entities/Background/BackgroundType.php`
- `src/Entities/Background/BackgroundFill.php`
- Added optional property `chat_background_set` (`ChatBackground`) to `src/Entities/Message.php`.
- Added optional property `via_join_request` (boolean) to `src/Entities/ChatMemberUpdated.php`.
- Added optional parameter `live_period` (integer) to `editMessageLiveLocation` method in `src/Request.php`.
### Changed
- Version bumped to 1.0.3.
### Deprecated
### Removed
### Fixed
### Security

## [1.0.2] - 2025-07-04
### Notes
- [:ledger: View file changes][1.0.2]
- Support for Telegram Bot API 7.2.
### Added
- Bot API 7.2 support. This includes:
- Business Account Integration (New entities: `BusinessConnection`, `BusinessMessagesDeleted`; Updated `Update.php`, `Request.php`, `Message.php`)
- Business Information Entities (New entities: `BusinessIntro`, `BusinessLocation`, `BusinessOpeningHours`, `BusinessOpeningHoursInterval`; Updated `Chat.php`)
- Sticker Pack Modifications (Updated `StickerSet.php`, `InputSticker.php`, `Request.php`)
- Request & Shared Object Improvements (New entity: `SharedUser`; Updated `KeyboardButtonRequestUsers.php`, `KeyboardButtonRequestChat.php`, `UsersShared.php`, `ChatShared.php`)
- Miscellaneous Changes (New entity: `Birthdate`; Updated `Chat.php`, `Message.php`, `User.php`)
### Changed
- Version bumped to 1.0.2.
### Deprecated
### Removed
### Fixed
### Security

## [0.83.0] - 2024-05-25
### Notes
- [:ledger: View file changes][0.83.0] ∙ [:page_with_curl: DB migration script][0.83.0-sql-migration]
Expand Down Expand Up @@ -694,7 +742,9 @@ Exclamation symbols (:exclamation:) note something of importance e.g. breaking c
[PSR-3]: https://www.php-fig.org/psr/psr-3
[Tidelift]: https://tidelift.com/subscription/pkg/packagist-longman-telegram-bot?utm_source=packagist-longman-telegram-bot&utm_medium=referral&utm_campaign=changelog

[Unreleased]: https://github.com/php-telegram-bot/core/compare/master...develop
[Unreleased]: https://github.com/php-telegram-bot/core/compare/1.0.3...develop
[1.0.3]: https://github.com/php-telegram-bot/core/compare/1.0.2...1.0.3
[1.0.2]: https://github.com/php-telegram-bot/core/compare/0.83.0...1.0.2
[0.83.0]: https://github.com/php-telegram-bot/core/compare/0.82.0...0.83.0
[0.82.0]: https://github.com/php-telegram-bot/core/compare/0.81.0...0.82.0
[0.81.0]: https://github.com/php-telegram-bot/core/compare/0.80.0...0.81.0
Expand Down
Loading