-
Notifications
You must be signed in to change notification settings - Fork 0
Comparing changes
Open a pull request
base repository: CodePreserver/python-telegram
base: main
head repository: alexander-akhmetov/python-telegram
compare: main
- 9 commits
- 10 files changed
- 2 contributors
Commits on Jan 22, 2026
-
Bump actions/setup-python from 6.1.0 to 6.2.0
Bumps [actions/setup-python](https://github.com/actions/setup-python) from 6.1.0 to 6.2.0. - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@v6.1.0...v6.2.0) --- updated-dependencies: - dependency-name: actions/setup-python dependency-version: 6.2.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
Configuration menu - View commit details
-
Copy full SHA for e7bd159 - Browse repository at this point
Copy the full SHA e7bd159View commit details
Commits on Mar 6, 2026
-
Bump ruff from 0.14.10 to 0.15.5
Bumps [ruff](https://github.com/astral-sh/ruff) from 0.14.10 to 0.15.5. - [Release notes](https://github.com/astral-sh/ruff/releases) - [Changelog](https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md) - [Commits](astral-sh/ruff@0.14.10...0.15.5) --- updated-dependencies: - dependency-name: ruff dependency-version: 0.15.5 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
Configuration menu - View commit details
-
Copy full SHA for 26fe9a5 - Browse repository at this point
Copy the full SHA 26fe9a5View commit details
Commits on Mar 7, 2026
-
Merge pull request alexander-akhmetov#621 from alexander-akhmetov/dep…
…endabot/pip/ruff-0.15.5 Bump ruff from 0.14.10 to 0.15.5
Configuration menu - View commit details
-
Copy full SHA for 0900cfd - Browse repository at this point
Copy the full SHA 0900cfdView commit details -
Merge pull request alexander-akhmetov#614 from alexander-akhmetov/dep…
…endabot/github_actions/actions/setup-python-6.2.0 Bump actions/setup-python from 6.1.0 to 6.2.0
Configuration menu - View commit details
-
Copy full SHA for 7a9af73 - Browse repository at this point
Copy the full SHA 7a9af73View commit details
Commits on Apr 9, 2026
-
Bump ruff from 0.15.5 to 0.15.10
Bumps [ruff](https://github.com/astral-sh/ruff) from 0.15.5 to 0.15.10. - [Release notes](https://github.com/astral-sh/ruff/releases) - [Changelog](https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md) - [Commits](astral-sh/ruff@0.15.5...0.15.10) --- updated-dependencies: - dependency-name: ruff dependency-version: 0.15.10 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
Configuration menu - View commit details
-
Copy full SHA for 84c5f3f - Browse repository at this point
Copy the full SHA 84c5f3fView commit details
Commits on Apr 10, 2026
-
Merge pull request alexander-akhmetov#626 from alexander-akhmetov/dep…
…endabot/pip/ruff-0.15.10 Bump ruff from 0.15.5 to 0.15.10
Configuration menu - View commit details
-
Copy full SHA for 775f3b3 - Browse repository at this point
Copy the full SHA 775f3b3View commit details -
Configuration menu - View commit details
-
Copy full SHA for 7c20e75 - Browse repository at this point
Copy the full SHA 7c20e75View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3fb7752 - Browse repository at this point
Copy the full SHA 3fb7752View commit details -
Fix crash and silent-failure bugs in TDJson, listener, and worker
- TDJson.__del__ checked hasattr on the wrong object (CDLL instead of self), so the destructor never called stop(). Fix the hasattr target. - ctypes fatal error callback was a local variable eligible for GC while TDLib still held its pointer. Store it on self to prevent collection. - TDJson.stop() had no guard against double-destroy: null out the client handle after destroying and early-return if already None. - Worker thread had no try/except around handler calls — a single failing handler killed the daemon thread silently. - Listener thread had no exception handling at all — any error in receive/update/handlers killed it, hanging all pending AsyncResults. - queue.Full from _run_handlers propagated into the listener, creating a cascading failure when the worker died. - send_message with Element used assert for error checking, which is stripped under python -O. Use raise_exc=True and explicit RuntimeError.
Configuration menu - View commit details
-
Copy full SHA for 4ca565f - Browse repository at this point
Copy the full SHA 4ca565fView commit details
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff main...main