Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Refactor/stateless redis #1491

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
devrabie wants to merge 12 commits into php-telegram-bot:develop
base: develop
Choose a base branch
Loading
from devrabie:refactor/stateless-redis
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
12 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
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
View file Open in desktop
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

AltStyle によって変換されたページ (->オリジナル) /