author int64 658 755k | date stringdate 2012-06-12 08:34:29 2024-07-22 14:51:21 | timezone int64 -46,800 43.2k | hash stringlengths 40 40 | message stringlengths 5 490 | mods listlengths 1 16 | language stringclasses 20
values | license stringclasses 3
values | repo stringlengths 5 68 | original_message stringlengths 12 491 |
|---|---|---|---|---|---|---|---|---|---|
718,844 | 31.01.2022 00:45:32 | -10,800 | 0649dc4fe8658a2a09e8f215e395f1f261e13003 | Just some fixes in tests and response validator | [
{
"change_type": "MODIFY",
"old_path": "vkbottle/api/abc.py",
"new_path": "vkbottle/api/abc.py",
"diff": "from abc import ABC, abstractmethod\n-from typing import TYPE_CHECKING, Any, List\n+from typing import TYPE_CHECKING, Any, List, Callable, Awaitable\nfrom vkbottle_types.categories import APICat... | Python | MIT License | vkbottle/vkbottle | Just some fixes in tests and response validator |
718,844 | 07.02.2022 01:18:59 | -10,800 | 7c6e44f4e7d051b5289c09074156c967a4be7ebb | Change Message.answer return type | [
{
"change_type": "MODIFY",
"old_path": "vkbottle/tools/dev/mini_types/base/message.py",
"new_path": "vkbottle/tools/dev/mini_types/base/message.py",
"diff": "@@ -19,6 +19,8 @@ from vkbottle.dispatch.dispenser.base import StatePeer\nfrom vkbottle.modules import logger\nif TYPE_CHECKING:\n+ from vkbot... | Python | MIT License | vkbottle/vkbottle | Change Message.answer return type |
718,865 | 27.03.2022 04:37:37 | 18,000 | 466528de4a52c8d94136d219be639dc3bfdda4d8 | Changed typing for event parameter
Since user events accept integers as the title, argument "event" should accept either integers or UserEventType not string | [
{
"change_type": "MODIFY",
"old_path": "vkbottle/framework/labeler/user.py",
"new_path": "vkbottle/framework/labeler/user.py",
"diff": "@@ -65,7 +65,7 @@ class UserLabeler(BaseLabeler):\ndef raw_event(\nself,\n- event: Union[str, List[str]],\n+ event: Union[int, List[int], UserEventType, List[UserEv... | Python | MIT License | vkbottle/vkbottle | Changed typing for event parameter (#487)
Since user events accept integers as the title, argument "event" should accept either integers or UserEventType not string |
718,844 | 27.03.2022 12:55:32 | -10,800 | 0030e3f9c3e1877febe26ee8696d10dfa23e23d6 | Fix singleton http client init | [
{
"change_type": "MODIFY",
"old_path": "pyproject.toml",
"new_path": "pyproject.toml",
"diff": "[tool.poetry]\nname = \"vkbottle\"\n-version = \"4.2.1\"\n+version = \"4.2.2\"\ndescription = \"Homogenic! Customizable asynchronous VK API framework implementing comfort and speed\"\nauthors = [\"timoniq... | Python | MIT License | vkbottle/vkbottle | Fix singleton http client init |
718,844 | 27.03.2022 13:20:59 | -10,800 | 9c029f449f0ffa41da1ec6e72b7a42fedea3813d | Fix server disconnect error | [
{
"change_type": "MODIFY",
"old_path": "vkbottle/polling/bot_polling.py",
"new_path": "vkbottle/polling/bot_polling.py",
"diff": "from typing import TYPE_CHECKING, AsyncGenerator, Optional\n+from aiohttp.client_exceptions import ServerConnectionError\n+\nfrom vkbottle.exception_factory import ErrorH... | Python | MIT License | vkbottle/vkbottle | Fix server disconnect error (#486) |
718,844 | 07.04.2022 20:51:05 | -10,800 | 7b808a80eba2e8ca35a6275263009dfa0f897b4c | Added get_attachments and get_full_message shortcuts for Message object | [
{
"change_type": "MODIFY",
"old_path": "vkbottle/tools/dev/mini_types/bot/message.py",
"new_path": "vkbottle/tools/dev/mini_types/bot/message.py",
"diff": "@@ -4,6 +4,7 @@ from vkbottle_types.events.bot_events import MessageNew\nfrom vkbottle_types.objects import ClientInfoForBots, MessagesForward\n... | Python | MIT License | vkbottle/vkbottle | Added get_attachments and get_full_message shortcuts for Message object |
718,844 | 07.04.2022 21:15:20 | -10,800 | 382fb989ad46c34c097984f05c072a158722bdd1 | Added `raw_event_auto_rules` and some warnings | [
{
"change_type": "MODIFY",
"old_path": "vkbottle/framework/labeler/abc.py",
"new_path": "vkbottle/framework/labeler/abc.py",
"diff": "@@ -16,6 +16,7 @@ class ABCLabeler(ABC):\nraw_event_view: \"ABCRawEventView\"\ncustom_rules: Dict[str, Type[\"ABCRule\"]]\nauto_rules: List[\"ABCRule\"]\n+ raw_event_... | Python | MIT License | vkbottle/vkbottle | Added `raw_event_auto_rules` and some warnings |
718,844 | 07.04.2022 21:22:47 | -10,800 | 22ce8afda1568608a5b7e5f8cc826e06f5b99b10 | Quite a few changes in the logic of PayloadMapRule | [
{
"change_type": "MODIFY",
"old_path": "vkbottle/dispatch/rules/base.py",
"new_path": "vkbottle/dispatch/rules/base.py",
"diff": "@@ -344,11 +344,13 @@ class PayloadMapRule(ABCRule[BaseMessageMin]):\nreturn False\nreturn True\n- async def check(self, event: BaseMessageMin) -> bool:\n+ async def chec... | Python | MIT License | vkbottle/vkbottle | Quite a few changes in the logic of PayloadMapRule |
718,844 | 08.04.2022 22:46:30 | -10,800 | e559524593af90a3acfdcc1991226426acddd552 | Added ForeignMessageMin for replies and forwarded messages. | [
{
"change_type": "MODIFY",
"old_path": "vkbottle/dispatch/views/abc/message.py",
"new_path": "vkbottle/dispatch/views/abc/message.py",
"diff": "@@ -22,6 +22,7 @@ class ABCMessageView(ABCDispenseView[T_contra, F_contra], ABC, Generic[T_contra,\nhandlers: List[\"ABCHandler\"]\nstate_source_key: str\nd... | Python | MIT License | vkbottle/vkbottle | Added ForeignMessageMin for replies and forwarded messages. |
718,844 | 09.04.2022 14:16:29 | -10,800 | ad9d11c6773ecef7f8b489c7f339cea7f187b4e4 | Rename get_attachments to get_attachment_strings | [
{
"change_type": "MODIFY",
"old_path": "vkbottle/tools/dev/mini_types/base/foreign_message.py",
"new_path": "vkbottle/tools/dev/mini_types/base/foreign_message.py",
"diff": "@@ -59,7 +59,7 @@ class BaseForeignMessageMin(MessagesForeignMessage, ABC):\ndef message_id(self) -> Optional[int]:\nreturn se... | Python | MIT License | vkbottle/vkbottle | Rename get_attachments to get_attachment_strings |
718,840 | 10.04.2022 04:16:20 | -10,800 | a935f1744ed40bb0d48976e729aa0d32ce249749 | Fix undefined ABCRule | [
{
"change_type": "MODIFY",
"old_path": "vkbottle/framework/labeler/base.py",
"new_path": "vkbottle/framework/labeler/base.py",
"diff": "@@ -4,13 +4,12 @@ from typing import TYPE_CHECKING, Any, Dict, List, Optional, Type\nimport vbml\nfrom vkbottle.dispatch.handlers import FromFuncHandler\n-from vkbo... | Python | MIT License | vkbottle/vkbottle | Fix undefined ABCRule |
718,844 | 26.04.2022 22:45:49 | -10,800 | 1552ffaabb5ad4d4c7b1dca1889c60a045634570 | Some warnings and fixes | [
{
"change_type": "MODIFY",
"old_path": "pyproject.toml",
"new_path": "pyproject.toml",
"diff": "[tool.poetry]\nname = \"vkbottle\"\n-version = \"4.2.2\"\n+version = \"4.3.0\"\ndescription = \"Homogenic! Customizable asynchronous VK API framework implementing comfort and speed\"\nauthors = [\"timoniq... | Python | MIT License | vkbottle/vkbottle | Some warnings and fixes |
718,844 | 06.05.2022 09:52:13 | -10,800 | cddd772bc2c843b2523ad51f80509ec55ab6be1d | Change BaseException to Exception in error handler | [
{
"change_type": "MODIFY",
"old_path": "docs/low-level/exception_handling/error-handler.md",
"new_path": "docs/low-level/exception_handling/error-handler.md",
"diff": "@@ -24,7 +24,7 @@ async def exc_handler_lookup(e: LookupError):\n```python\n@error_handler.register_undefined_error_handler\n-async ... | Python | MIT License | vkbottle/vkbottle | Change BaseException to Exception in error handler |
718,844 | 06.05.2022 10:03:47 | -10,800 | cf76f87a8003d71e969f20d8e7772283aa35a433 | Fix error with ABCRule import | [
{
"change_type": "MODIFY",
"old_path": "vkbottle/exception_factory/swear_handler/swear_handler.py",
"new_path": "vkbottle/exception_factory/swear_handler/swear_handler.py",
"diff": "@@ -6,9 +6,7 @@ from vkbottle.modules import logger\ndef swear(\n- exception: Union[\n- Exception, Type[Exception], Tu... | Python | MIT License | vkbottle/vkbottle | Fix error with ABCRule import |
718,857 | 06.05.2022 18:27:16 | -18,000 | 69a9c5cc82a76357085ddcba02e2688f2709790d | Fix typo in blueprint usage example | [
{
"change_type": "MODIFY",
"old_path": "examples/high-level/blueprint.py",
"new_path": "examples/high-level/blueprint.py",
"diff": "@@ -19,7 +19,7 @@ for bp in bps:\nbp.load(bot)\n# Moreover, you can use:\n-# import vkbottle import load_blueprints_from_package\n+# from vkbottle import load_blueprint... | Python | MIT License | vkbottle/vkbottle | Fix typo in blueprint usage example (#506) |
718,844 | 12.05.2022 15:26:31 | -10,800 | 16f4cbd9b6603e58e9d82083fa452ffe2e7fbd93 | Fix `None` message | [
{
"change_type": "MODIFY",
"old_path": "pyproject.toml",
"new_path": "pyproject.toml",
"diff": "[tool.poetry]\nname = \"vkbottle\"\n-version = \"4.3.1\"\n+version = \"4.3.2\"\ndescription = \"Homogenic! Customizable asynchronous VK API framework implementing comfort and speed\"\nauthors = [\"timoniq... | Python | MIT License | vkbottle/vkbottle | Fix `None` message |
718,844 | 31.05.2022 04:25:09 | -10,800 | 366d824234d91740e00cac0b01119c0fd298d919 | Some fixes and object hashing (close | [
{
"change_type": "MODIFY",
"old_path": "pyproject.toml",
"new_path": "pyproject.toml",
"diff": "[tool.poetry]\nname = \"vkbottle\"\n-version = \"4.3.2\"\n+version = \"4.3.3\"\ndescription = \"Homogenic! Customizable asynchronous VK API framework implementing comfort and speed\"\nauthors = [\"timoniq... | Python | MIT License | vkbottle/vkbottle | Some fixes and object hashing (close #465) |
718,844 | 02.06.2022 21:14:17 | -10,800 | 458c015fb416728b893fba73e9d81f8838559934 | Fix pydantic ValidationError (close | [
{
"change_type": "MODIFY",
"old_path": "vkbottle/tools/dev/mini_types/user/message.py",
"new_path": "vkbottle/tools/dev/mini_types/user/message.py",
"diff": "-from typing import TYPE_CHECKING, Optional\n+from typing import TYPE_CHECKING, List, Optional\nfrom pydantic import root_validator\nfrom ..ba... | Python | MIT License | vkbottle/vkbottle | Fix pydantic ValidationError (close #516) |
718,844 | 10.07.2022 21:03:37 | -10,800 | 20685b9c35075d84ab133ff06edce47d00edb41f | Remove `/` from args in `StyleAdapter.log` | [
{
"change_type": "MODIFY",
"old_path": "pyproject.toml",
"new_path": "pyproject.toml",
"diff": "[tool.poetry]\nname = \"vkbottle\"\n-version = \"4.3.5\"\n+version = \"4.3.6\"\ndescription = \"Homogenic! Customizable asynchronous VK API framework implementing comfort and speed\"\n-authors = [\"timoni... | Python | MIT License | vkbottle/vkbottle | Remove `/` from args in `StyleAdapter.log` |
718,844 | 11.07.2022 01:43:18 | -10,800 | a1b3df7fd11f8032d33cf97c61a2cbfb18bbeb18 | Fix `RuntimeError` with `asyncio.run` on windows
See | [
{
"change_type": "MODIFY",
"old_path": "vkbottle/modules.py",
"new_path": "vkbottle/modules.py",
"diff": "+import asyncio\n+\nfrom choicelib import choice_in_order\nfrom typing_extensions import Protocol\n@@ -80,3 +82,35 @@ elif logging_module.__name__ == \"logging\":\nreturn msg, args, log_kwargs\n... | Python | MIT License | vkbottle/vkbottle | Fix `RuntimeError` with `asyncio.run` on windows
See https://github.com/aio-libs/aiohttp/issues/4324 |
718,844 | 11.07.2022 02:31:32 | -10,800 | 9acab6002946a9bd9cfbc09a604ada5fa6b84dd1 | Update modules; fix mypy error | [
{
"change_type": "MODIFY",
"old_path": "vkbottle/modules.py",
"new_path": "vkbottle/modules.py",
"diff": "@@ -18,39 +18,24 @@ class JSONModule(Protocol):\n...\n-class Logger(Protocol):\n- def info(self, msg, *args, **kwargs):\n- ...\n-\n- def debug(self, msg, *args, **kwargs):\n- ...\n-\n- def warni... | Python | MIT License | vkbottle/vkbottle | Update modules; fix mypy error |
718,844 | 11.07.2022 02:35:56 | -10,800 | ab5dc8b8147d8adceddb52b660768c223cc95242 | Update required `vkbottle-types` version | [
{
"change_type": "MODIFY",
"old_path": "pyproject.toml",
"new_path": "pyproject.toml",
"diff": "@@ -42,7 +42,7 @@ aiohttp = \"^3.8.1\"\nchoicelib = \"^0.1.5\"\npydantic = \"^1.9.1\"\nvbml = \"^1.1.post1\"\n-vkbottle-types = \"^5.131.146.6\"\n+vkbottle-types = \"^5.131.146.9\"\nwatchfiles = \">=0.14,... | Python | MIT License | vkbottle/vkbottle | Update required `vkbottle-types` version |
718,844 | 12.07.2022 09:44:32 | -10,800 | 8c0e1cd8a4775d986007695b25be8e832761112b | Some improvements in `AiohttpClient` | [
{
"change_type": "MODIFY",
"old_path": "vkbottle/http/aiohttp.py",
"new_path": "vkbottle/http/aiohttp.py",
"diff": "from typing import TYPE_CHECKING, Any, Optional, Type, TypeVar\n-from aiohttp import ClientSession, TCPConnector\n+from aiohttp import ClientSession\nfrom vkbottle.modules import json ... | Python | MIT License | vkbottle/vkbottle | Some improvements in `AiohttpClient` |
718,844 | 12.07.2022 11:34:42 | -10,800 | 352db0acbb1bac5d16adcf3164916bd61edbd769 | Fix mkdocs warnings about nav | [
{
"change_type": "MODIFY",
"old_path": "mkdocs-requirements.txt",
"new_path": "mkdocs-requirements.txt",
"diff": "-mkdocs<2.0.0\n-mkdocs-material<9.0.0\n+mkdocs==1.2.4\n+mkdocs-material==8.2.7\n"
},
{
"change_type": "MODIFY",
"old_path": "pyproject.toml",
"new_path": "pyproject.toml"... | Python | MIT License | vkbottle/vkbottle | Fix mkdocs warnings about nav |
718,844 | 14.07.2022 17:06:34 | -10,800 | 999e5dbf30b8bc26ef93e84dc245c2d39ef6c957 | Fix `JSONResponseValidator` | [
{
"change_type": "MODIFY",
"old_path": "vkbottle/api/response_validator/json_validator.py",
"new_path": "vkbottle/api/response_validator/json_validator.py",
"diff": "-from typing import TYPE_CHECKING, Any, NoReturn, Union\n+import contextlib\n+from typing import TYPE_CHECKING, Any, NoReturn, Optiona... | Python | MIT License | vkbottle/vkbottle | Fix `JSONResponseValidator` |
718,844 | 14.07.2022 19:35:53 | -10,800 | 40608006c661d4dc28c755f8f57d1cbdc66601a5 | New log format | [
{
"change_type": "MODIFY",
"old_path": "vkbottle/modules.py",
"new_path": "vkbottle/modules.py",
"diff": "@@ -24,8 +24,22 @@ json: JSONModule = choice_in_order(\nlogging_module = choice_in_order([\"loguru\"], default=\"logging\")\nif logging_module == \"loguru\":\n+ import os\n+ import sys\n+\n+ if ... | Python | MIT License | vkbottle/vkbottle | New log format |
718,844 | 15.07.2022 11:38:20 | -10,800 | 2245e1e25841a2f6dcfc1dea91a9ed2bfb8f53b9 | Fix mypy issue; Bump mkdocs version | [
{
"change_type": "MODIFY",
"old_path": "mkdocs-requirements.txt",
"new_path": "mkdocs-requirements.txt",
"diff": "-mkdocs==1.2.4\n-mkdocs-material==8.2.7\n+mkdocs>=1.3.0\n+mkdocs-material>=8.3.9\n"
},
{
"change_type": "MODIFY",
"old_path": "pyproject.toml",
"new_path": "pyproject.tom... | Python | MIT License | vkbottle/vkbottle | Fix mypy issue; Bump mkdocs version |
718,844 | 15.07.2022 14:29:11 | -10,800 | 4a19a35376b5fae13ad5236fca2c079bbd7049ac | Remove str.format from logs | [
{
"change_type": "MODIFY",
"old_path": "pyproject.toml",
"new_path": "pyproject.toml",
"diff": "[tool.poetry]\nname = \"vkbottle\"\n-version = \"4.3.7\"\n+version = \"4.3.8\"\ndescription = \"Homogenic! Customizable asynchronous VK API framework implementing comfort and speed\"\nauthors = [\"timoniq... | Python | MIT License | vkbottle/vkbottle | Remove str.format from logs |
718,842 | 15.07.2022 22:40:41 | -10,800 | a36bab7ec19f41d52479c6fb624ec69c6d9d8987 | Cache .mypy_cache directory in ci.yml
Bump setup-python version | [
{
"change_type": "MODIFY",
"old_path": ".github/workflows/ci.yml",
"new_path": ".github/workflows/ci.yml",
"diff": "@@ -26,7 +26,14 @@ jobs:\n- name: Install poetry\nrun: pipx install poetry\n- - uses: actions/setup-python@v3.1.1\n+ - name: Cache .mypy_cache\n+ id: cache-mypy\n+ uses: actions/cache@... | Python | MIT License | vkbottle/vkbottle | Cache .mypy_cache directory in ci.yml (#527)
Bump setup-python version |
718,844 | 21.07.2022 14:51:58 | -10,800 | d922d3b8a62c0c0af28ba13052d5fe05d57c5258 | Refactor User Auth flow | [
{
"change_type": "MODIFY",
"old_path": "vkbottle/tools/dev/auth.py",
"new_path": "vkbottle/tools/dev/auth.py",
"diff": "from typing import Optional\n+from vkbottle.exception_factory import CaptchaError, VKAPIError\nfrom vkbottle.http.aiohttp import SingleAiohttpClient\nMOBILE_APP_ID = 2274003\nMOBIL... | Python | MIT License | vkbottle/vkbottle | Refactor User Auth flow |
718,844 | 10.08.2022 04:48:34 | -10,800 | bdb09e51c724e03dce814ff57e43e5431d642ca3 | Add `http_client` settings to `UsetAuth` | [
{
"change_type": "MODIFY",
"old_path": "vkbottle/tools/dev/auth.py",
"new_path": "vkbottle/tools/dev/auth.py",
"diff": "-from typing import Optional\n+from typing import TYPE_CHECKING, Optional\nfrom vkbottle.exception_factory import CaptchaError, VKAPIError\n-from vkbottle.http.aiohttp import Singl... | Python | MIT License | vkbottle/vkbottle | Add `http_client` settings to `UsetAuth` |
718,844 | 18.08.2022 06:41:45 | -10,800 | ac696a0053c7ea380eb8a7cf4a77ce7a1ed27a3e | Update template generator (fix | [
{
"change_type": "MODIFY",
"old_path": "vkbottle/tools/dev/template/element.py",
"new_path": "vkbottle/tools/dev/template/element.py",
"diff": "from typing import List, Optional, Union\nfrom vkbottle.modules import json\n+from vkbottle.tools.dev.keyboard import Keyboard\n+from vkbottle.tools.dev.key... | Python | MIT License | vkbottle/vkbottle | Update template generator (fix #536) |
718,844 | 18.08.2022 16:27:31 | -10,800 | 7fc10d5378be6f3c6301930f9f33afba4810ccdc | Some fixes in UserAuth | [
{
"change_type": "MODIFY",
"old_path": "vkbottle/tools/dev/auth.py",
"new_path": "vkbottle/tools/dev/auth.py",
"diff": "-from typing import TYPE_CHECKING, Optional\n+from typing import TYPE_CHECKING, List, Optional\nfrom vkbottle.exception_factory import CaptchaError, VKAPIError\nfrom vkbottle.http ... | Python | MIT License | vkbottle/vkbottle | Some fixes in UserAuth |
718,844 | 04.09.2022 02:27:50 | -10,800 | 7b3de1fe271a5656c094f1fbd6464084397b4085 | Fix keyboard generator (close | [
{
"change_type": "MODIFY",
"old_path": "vkbottle/tools/dev/keyboard/button.py",
"new_path": "vkbottle/tools/dev/keyboard/button.py",
"diff": "from typing import TYPE_CHECKING, Any, Dict, Optional, Type\n-if TYPE_CHECKING:\n- from .action import ABCAction\n+from .action import ABCAction, Callback, Lo... | Python | MIT License | vkbottle/vkbottle | Fix keyboard generator (close #546) |
718,844 | 04.09.2022 02:34:08 | -10,800 | 88c70ea08ebdc804ebdc317dd3ab49b010429513 | Fix F401 flake error | [
{
"change_type": "MODIFY",
"old_path": "vkbottle/tools/dev/keyboard/button.py",
"new_path": "vkbottle/tools/dev/keyboard/button.py",
"diff": "-from typing import TYPE_CHECKING, Any, Dict, Optional, Type\n+from typing import Any, Dict, Optional, Type\nfrom .action import ABCAction, Callback, Location... | Python | MIT License | vkbottle/vkbottle | Fix F401 flake error |
718,844 | 05.09.2022 20:42:26 | -10,800 | 2f232d2886e3730b168029625838d308e6b11325 | Update vkscript converter | [
{
"change_type": "MODIFY",
"old_path": "vkbottle/tools/dev/vkscript_converter/base_converter.py",
"new_path": "vkbottle/tools/dev/vkscript_converter/base_converter.py",
"diff": "@@ -27,17 +27,37 @@ class Converter:\n)\nreturn self.definitions[d.__class__](d)\n- def scriptify(self, func: Callable, **... | Python | MIT License | vkbottle/vkbottle | Update vkscript converter |
718,844 | 05.09.2022 20:50:11 | -10,800 | 4516b867ca128af5ebc030398bd135d3c29b4a56 | Change vkscript `extend` convertation | [
{
"change_type": "MODIFY",
"old_path": "vkbottle/tools/dev/vkscript_converter/definitions.py",
"new_path": "vkbottle/tools/dev/vkscript_converter/definitions.py",
"diff": "@@ -228,14 +228,7 @@ def call(d: ast.Call):\nelif d.func.attr in CALL_STRING:\nreturn f\"{value}.{d.func.attr}({','.join(args)})... | Python | MIT License | vkbottle/vkbottle | Change vkscript `extend` convertation |
718,844 | 06.09.2022 01:54:55 | -10,800 | 5244863b94fd5067cb0ddb093edff222e85c1135 | Change vkscript `extend` convertation (again) | [
{
"change_type": "MODIFY",
"old_path": "vkbottle/tools/dev/vkscript_converter/definitions.py",
"new_path": "vkbottle/tools/dev/vkscript_converter/definitions.py",
"diff": "@@ -228,7 +228,8 @@ def call(d: ast.Call):\nelif d.func.attr in CALL_STRING:\nreturn f\"{value}.{d.func.attr}({','.join(args)})\... | Python | MIT License | vkbottle/vkbottle | Change vkscript `extend` convertation (again) |
718,844 | 10.09.2022 05:54:09 | -10,800 | 4a2cc5688b0b842cc883d1838908d3649ea14aa4 | Change `isort` configuration | [
{
"change_type": "MODIFY",
"old_path": "pyproject.toml",
"new_path": "pyproject.toml",
"diff": "@@ -103,11 +103,8 @@ line-length = 99\ntarget-version = ['py37', 'py38']\n[tool.isort]\n-force_grid_wrap = 0\n-include_trailing_comma = true\n+profile = \"black\"\nline_length = 99\n-multi_line_output = 3... | Python | MIT License | vkbottle/vkbottle | Change `isort` configuration |
718,844 | 10.09.2022 20:04:28 | -10,800 | 4ce117af9a80297dc97eeed7c37e9a899f883640 | Update `pyproject.toml` to new `poetry` standart | [
{
"change_type": "MODIFY",
"old_path": ".github/workflows/ci.yml",
"new_path": ".github/workflows/ci.yml",
"diff": "@@ -41,7 +41,7 @@ jobs:\n- name: Install dependencies\nif: steps.python-setup.outputs.cache-hit != 'true'\n- run: poetry install\n+ run: poetry install --with dev\n- name: Run flake8\n... | Python | MIT License | vkbottle/vkbottle | Update `pyproject.toml` to new `poetry` standart |
718,885 | 12.09.2022 20:32:41 | -10,800 | 2aefa1f795d73f76dd110ddd77ce285bd84c4871 | Fix typing issues when using parameterized `CodeException` in try-except block | [
{
"change_type": "MODIFY",
"old_path": "vkbottle/api/response_validator/vk_api_error_validator.py",
"new_path": "vkbottle/api/response_validator/vk_api_error_validator.py",
"diff": "-from typing import TYPE_CHECKING, Any, Dict, NoReturn, Type, Union\n+from typing import TYPE_CHECKING, Any, NoReturn,... | Python | MIT License | vkbottle/vkbottle | Fix typing issues when using parameterized `CodeException` in try-except block (#564) |
718,885 | 16.09.2022 13:45:37 | -10,800 | c333f0652a5694e835ebfff46c957683836aaee4 | Fix typing issues in `error_handler` | [
{
"change_type": "MODIFY",
"old_path": "vkbottle/exception_factory/code_exception.py",
"new_path": "vkbottle/exception_factory/code_exception.py",
"diff": "@@ -8,7 +8,14 @@ class CodeExceptionMeta(type):\n__exceptions__: Dict[int, Any]\n__code_specified__ = False\n- def __init__(cls, name: str, base... | Python | MIT License | vkbottle/vkbottle | Fix typing issues in `error_handler` (#566) |
718,844 | 10.09.2022 21:51:46 | -10,800 | ec64188206079d4227a13880a0f7fdabc73e8afb | Replace `flake8` with `flakeheaven` | [
{
"change_type": "DELETE",
"old_path": ".flake8",
"new_path": null,
"diff": "-[flake8]\n-max-line-length = 99\n-ignore = F405, F403, W503, E501, E203\n-exclude = .git, build, dist, venv, .venv, docs, examples, tests, *.egg-info\n"
},
{
"change_type": "MODIFY",
"old_path": ".github/workfl... | Python | MIT License | vkbottle/vkbottle | Replace `flake8` with `flakeheaven` |
718,844 | 11.09.2022 00:05:27 | -10,800 | c7b5b9ae944dbcf714ceef0a76e4f210647004aa | Add `flake8-bugbear`; Fix it's errors | [
{
"change_type": "MODIFY",
"old_path": ".pre-commit-config.yaml",
"new_path": ".pre-commit-config.yaml",
"diff": "@@ -15,7 +15,7 @@ repos:\nhooks:\n- id: autoflake\nname: autoflake\n- entry: bash -c 'make autoflake_fix filename=$@' --\n+ entry: autoflake -i --remove-all-unused-imports\nlanguage: sys... | Python | MIT License | vkbottle/vkbottle | Add `flake8-bugbear`; Fix it's errors |
718,844 | 11.09.2022 00:59:19 | -10,800 | ffcaa6dfc58fd4e16940576ce0beaa5751d14d6b | Fix flake8-bugbear `B009` error | [
{
"change_type": "MODIFY",
"old_path": "vkbottle/tools/dev/mini_types/base/foreign_message.py",
"new_path": "vkbottle/tools/dev/mini_types/base/foreign_message.py",
"diff": "@@ -33,7 +33,7 @@ class BaseForeignMessageMin(MessagesForeignMessage, ABC):\n@property\ndef ctx_api(self) -> Union[\"ABCAPI\",... | Python | MIT License | vkbottle/vkbottle | Fix flake8-bugbear `B009` error |
718,844 | 16.09.2022 16:14:42 | -10,800 | bd158fd5d7829633647254c1e5d42963cf90add7 | Add `flake8-pie` & `dlint`; Fix theirs issues | [
{
"change_type": "MODIFY",
"old_path": "poetry.lock",
"new_path": "poetry.lock",
"diff": "@@ -205,6 +205,17 @@ category = \"dev\"\noptional = false\npython-versions = \"*\"\n+[[package]]\n+name = \"dlint\"\n+version = \"0.13.0\"\n+description = \"Dlint is a tool for encouraging best coding practices... | Python | MIT License | vkbottle/vkbottle | Add `flake8-pie` & `dlint`; Fix theirs issues |
718,844 | 16.09.2022 18:26:09 | -10,800 | 4389abac09cce7306517dbae95b60f27bbed821a | Add `flake8-comprehensions`; Fix issue with `event_data` | [
{
"change_type": "MODIFY",
"old_path": "poetry.lock",
"new_path": "poetry.lock",
"diff": "@@ -288,6 +288,18 @@ flake8 = \">=3.0.0\"\n[package.extras]\ndev = [\"coverage\", \"hypothesis\", \"hypothesmith (>=0.2)\", \"pre-commit\"]\n+[[package]]\n+name = \"flake8-comprehensions\"\n+version = \"3.10.0\... | Python | MIT License | vkbottle/vkbottle | Add `flake8-comprehensions`; Fix issue with `event_data` |
718,844 | 01.10.2022 20:47:35 | -10,800 | dc273c836727eb26339ec24369e3886d5b458306 | Add workound for github dependency-graph (github/feedback#6456) | [
{
"change_type": "ADD",
"old_path": null,
"new_path": "setup.py",
"diff": "+#!/usr/bin/env python\n+\n+import sys\n+\n+from setuptools import setup\n+\n+sys.stderr.write(\n+ \"\"\"\n+This installation method is just a workound for github dependency-graph\n+which doesn't support pyproject.toml metada... | Python | MIT License | vkbottle/vkbottle | Add workound for github dependency-graph (github/feedback#6456) |
718,844 | 03.10.2022 06:01:00 | -10,800 | 3bc44361941d4152a083cbdbc5cc7784d0e17bf4 | Simplify code in bot_callback | [
{
"change_type": "MODIFY",
"old_path": "vkbottle/callback/bot_callback.py",
"new_path": "vkbottle/callback/bot_callback.py",
"diff": "@@ -43,11 +43,8 @@ class BotCallback(ABCCallback):\nasync def find_server_id(self) -> Optional[int]:\nservers = await self.get_callback_servers()\n- if not servers:\n... | Python | MIT License | vkbottle/vkbottle | Simplify code in bot_callback |
718,844 | 03.10.2022 06:07:11 | -10,800 | d36d0c62fcb6f87f5b54b357e2c58d575155ce04 | Fix wrong api instance usage in bot | [
{
"change_type": "MODIFY",
"old_path": "vkbottle/framework/bot/bot.py",
"new_path": "vkbottle/framework/bot/bot.py",
"diff": "@@ -113,7 +113,7 @@ class Bot(ABCFramework):\nreturn confirmation_code, secret_key\nasync def process_event(self, event: dict):\n- await self.router.route(event, self.callbac... | Python | MIT License | vkbottle/vkbottle | Fix wrong api instance usage in bot |
718,844 | 03.10.2022 07:10:55 | -10,800 | 4086ed7626963d3bf568ef75d585bc92184f0762 | Fix message event processing without handlers | [
{
"change_type": "MODIFY",
"old_path": "vkbottle/dispatch/views/bot/message.py",
"new_path": "vkbottle/dispatch/views/bot/message.py",
"diff": "@@ -30,7 +30,10 @@ class ABCBotMessageView(ABCMessageView[dict, F_contra], Generic[F_contra]):\nreturn message_min(event, ctx_api, replace_mention)\nasync d... | Python | MIT License | vkbottle/vkbottle | Fix message event processing without handlers |
718,844 | 09.10.2022 16:48:43 | -10,800 | 959c6b1bf581a6fcda7123f2dfadeca35d6bc23e | Fix group user polling example | [
{
"change_type": "MODIFY",
"old_path": "examples/high-level/group_user_pooling_example.py",
"new_path": "examples/high-level/group_user_pooling_example.py",
"diff": "from typing import TYPE_CHECKING, Optional\nfrom vkbottle_types.events.enums import UserEventType\n+from vkbottle_types.events.user_ev... | Python | MIT License | vkbottle/vkbottle | Fix group user polling example |
718,844 | 18.10.2022 02:24:42 | -10,800 | bc059ca878bf38c5652fd190a0b6043d2dd86655 | Fix `CommandRule` check for 0 args | [
{
"change_type": "MODIFY",
"old_path": "pyproject.toml",
"new_path": "pyproject.toml",
"diff": "[tool.poetry]\nname = \"vkbottle\"\n-version = \"4.3.10\"\n+version = \"4.3.11\"\ndescription = \"Homogenic! Customizable asynchronous VK API framework implementing comfort and speed\"\nauthors = [\"timon... | Python | MIT License | vkbottle/vkbottle | Fix `CommandRule` check for 0 args (#577) |
718,844 | 18.10.2022 10:07:15 | -10,800 | e73f157856f35041d3a83ae05cab85a512383bc7 | Fix typing in `ctx_storage` | [
{
"change_type": "MODIFY",
"old_path": "vkbottle/tools/dev/storage/ctx_storage.py",
"new_path": "vkbottle/tools/dev/storage/ctx_storage.py",
"diff": "-from typing import Any, Hashable\n+from typing import Any, Hashable, Optional\nfrom vkbottle.tools.dev.ctx_tool import BaseContext\n@@ -14,7 +14,7 @@... | Python | MIT License | vkbottle/vkbottle | Fix typing in `ctx_storage` |
718,844 | 18.10.2022 10:09:43 | -10,800 | 41f5f649c0b5b7fbd2620aab683d22933edb2446 | Replace `loop` operations with `asyncio.run` | [
{
"change_type": "MODIFY",
"old_path": "examples/low-level/api_request_example.py",
"new_path": "examples/low-level/api_request_example.py",
"diff": "@@ -16,5 +16,4 @@ async def main():\nprint(response)\n-loop = asyncio.get_event_loop()\n-loop.run_until_complete(main())\n+asyncio.run(main())\n"
},... | Python | MIT License | vkbottle/vkbottle | Replace `loop` operations with `asyncio.run` |
718,877 | 18.10.2022 20:52:52 | -18,000 | 194065880f6543857b92dbf5c06d3fa29b98817e | Fix `CommandRule` checking event.text | [
{
"change_type": "MODIFY",
"old_path": "vkbottle/dispatch/rules/base.py",
"new_path": "vkbottle/dispatch/rules/base.py",
"diff": "@@ -76,12 +76,13 @@ class CommandRule(ABCRule[BaseMessageMin]):\nasync def check(self, event: BaseMessageMin) -> Union[dict, bool]:\nfor prefix in self.prefixes:\n- text_... | Python | MIT License | vkbottle/vkbottle | Fix `CommandRule` checking event.text (#579) |
718,844 | 31.10.2022 01:27:08 | -10,800 | 363dd79ada0e08848e21254c970eddf28d750458 | Deprecate blueprints | [
{
"change_type": "MODIFY",
"old_path": "docs/high-level/bot/index.md",
"new_path": "docs/high-level/bot/index.md",
"diff": "* [Bot](bot.md)\n* [User](../user/user.md)\n-* [Blueprint](blueprint.md)\n* [Labeler](labeler.md)\n* [Multibot](multibot.md)\n"
},
{
"change_type": "DELETE",
"old_p... | Python | MIT License | vkbottle/vkbottle | Deprecate blueprints |
718,844 | 31.10.2022 01:27:37 | -10,800 | f45755ea493d26ec664ccb6209afdf1e98011fa6 | Fix deprecated `inspect.getargspec` usage | [
{
"change_type": "MODIFY",
"old_path": "vkbottle/modules.py",
"new_path": "vkbottle/modules.py",
"diff": "@@ -72,7 +72,7 @@ elif logging_module == \"logging\":\ndef process(self, msg, args, kwargs):\nlog_kwargs = {\nkey: kwargs[key]\n- for key in inspect.getargspec(self.logger._log).args[1:]\n+ for ... | Python | MIT License | vkbottle/vkbottle | Fix deprecated `inspect.getargspec` usage |
718,844 | 04.11.2022 00:41:06 | -10,800 | 36d42dfbd87438f20b6b90c86ddaed9761bd634e | Fix `flake8-bugbear` `B027` warnings | [
{
"change_type": "MODIFY",
"old_path": "vkbottle/api/token_generator/abc.py",
"new_path": "vkbottle/api/token_generator/abc.py",
"diff": "@@ -6,15 +6,16 @@ class ABCTokenGenerator(ABC):\nasync def __aenter__(self):\nreturn await self.get_token()\n+ @abstractmethod\nasync def __aexit__(self, exc_type... | Python | MIT License | vkbottle/vkbottle | Fix `flake8-bugbear` `B027` warnings |
718,844 | 04.11.2022 01:02:37 | -10,800 | 87a830860162ce9f247b35a3b586ac639c3f4967 | Add flakeheaven caching in CI | [
{
"change_type": "MODIFY",
"old_path": ".github/workflows/ci.yml",
"new_path": ".github/workflows/ci.yml",
"diff": "@@ -26,13 +26,6 @@ jobs:\n- name: Install poetry\nrun: pipx install poetry\n- - name: Cache .mypy_cache\n- id: cache-mypy\n- uses: actions/cache@v3\n- with:\n- key: ${{ matrix.python-v... | Python | MIT License | vkbottle/vkbottle | Add flakeheaven caching in CI |
718,844 | 04.11.2022 07:58:28 | -10,800 | 6bc4265c5f2f1b157360389312c2b77f83e11dbb | Speedup CI with cache; Fix wrong python version | [
{
"change_type": "MODIFY",
"old_path": ".github/workflows/ci.yml",
"new_path": ".github/workflows/ci.yml",
"diff": "name: CI\non:\n- push:\n- branches: [master, dev]\n- pull_request:\n- branches: [master, dev]\n+ - push\n+ - pull_request\njobs:\nbuild:\nruns-on: ${{ matrix.os }}\n+ defaults:\n+ run:... | Python | MIT License | vkbottle/vkbottle | Speedup CI with cache; Fix wrong python version |
718,844 | 04.11.2022 08:00:17 | -10,800 | 14250b571bc5f8b1518a890e6a2d2a9551682e70 | Fix positional only parameters usage | [
{
"change_type": "MODIFY",
"old_path": "vkbottle/exception_factory/code_exception.py",
"new_path": "vkbottle/exception_factory/code_exception.py",
"diff": "@@ -26,23 +26,22 @@ class CodeExceptionMeta(type):\nreturn super().__call__(*args, **kwargs)\n@overload\n- def __getitem__(cls: T, code: int, /)... | Python | MIT License | vkbottle/vkbottle | Fix positional only parameters usage |
718,844 | 04.11.2022 08:03:54 | -10,800 | 2065c4e1b95c2b1a1f2927715c391123c784b92d | Fix `B027` flake8-bugbear warning | [
{
"change_type": "MODIFY",
"old_path": "vkbottle/callback/abc.py",
"new_path": "vkbottle/callback/abc.py",
"diff": "@@ -58,7 +58,7 @@ class ABCCallback(ABC):\ndef api(self) -> \"ABCAPI\":\npass\n- @api.setter\n+ @api.setter # noqa: B027\ndef api(self, new_api: \"ABCAPI\"): # noqa: B027\npass\n"
},... | Python | MIT License | vkbottle/vkbottle | Fix `B027` flake8-bugbear warning |
718,844 | 06.11.2022 18:11:30 | -10,800 | 427234ef4fade3cc4efdc6a0903ecc2bcaa9beb0 | Disable poetry caching (snok/install-poetry#105) | [
{
"change_type": "MODIFY",
"old_path": ".github/workflows/ci.yml",
"new_path": ".github/workflows/ci.yml",
"diff": "@@ -29,13 +29,12 @@ jobs:\nwith:\npython-version: ${{ matrix.python-version }}\n- - name: Load cached poetry installation\n- id: cached-poetry-installation\n- uses: actions/cache@v3\n-... | Python | MIT License | vkbottle/vkbottle | Disable poetry caching (snok/install-poetry#105) |
718,844 | 09.11.2022 18:52:02 | -10,800 | a731262e9954e4329dae778264d3cded82c02797 | Add pytest caching in actions | [
{
"change_type": "MODIFY",
"old_path": ".github/workflows/ci.yml",
"new_path": ".github/workflows/ci.yml",
"diff": "@@ -72,5 +72,12 @@ jobs:\n- name: Run mypy\nrun: poetry run mypy vkbottle\n+ - name: Load cached .pytest_cache\n+ id: cached-pytest\n+ uses: actions/cache@v3\n+ with:\n+ key: pytest-${... | Python | MIT License | vkbottle/vkbottle | Add pytest caching in actions |
718,844 | 10.11.2022 03:43:00 | -10,800 | 159d67deead6522506924ab17198d0c991202f4d | Fix error in uploader | [
{
"change_type": "MODIFY",
"old_path": "vkbottle/tools/dev/uploader/base.py",
"new_path": "vkbottle/tools/dev/uploader/base.py",
"diff": "@@ -45,7 +45,7 @@ class BaseUploader(ABC):\n)\nreturn json.loads(raw_response)\n- def get_bytes_io(self, data: \"Bytes\", name: str = None) -> BytesIO:\n+ def get... | Python | MIT License | vkbottle/vkbottle | Fix error in uploader |
718,844 | 14.11.2022 22:31:07 | -10,800 | 994fd9902abaa1e7830e6d373d1d496c786a2abc | Fix typo (close | [
{
"change_type": "MODIFY",
"old_path": "vkbottle/framework/bot/bot.py",
"new_path": "vkbottle/framework/bot/bot.py",
"diff": "@@ -87,7 +87,7 @@ class Bot(ABCFramework):\nself.loop.create_task(self.router.route(update, polling.api))\ndef run_forever(self) -> NoReturn: # type: ignore\n- logger.info(\"... | Python | MIT License | vkbottle/vkbottle | Fix typo (close #591) |
718,844 | 18.10.2022 10:12:43 | -10,800 | d0ea93b9052719d51d8787fe4718cef4cca0841a | Remove `.loop` from framework; Change `loop_wrapper` logic | [
{
"change_type": "MODIFY",
"old_path": "tests/tools/test_tools.py",
"new_path": "tests/tools/test_tools.py",
"diff": "+import asyncio\nimport os\nfrom io import StringIO\n@@ -76,25 +77,6 @@ def assert_rule(res, rev=False):\nassert (res is not False) is not rev\n-class MockedLoop: # noqa: PIE798\n- @... | Python | MIT License | vkbottle/vkbottle | Remove `.loop` from framework; Change `loop_wrapper` logic |
718,844 | 18.10.2022 10:45:44 | -10,800 | 9560f4bebba66f3a745198f4366962073dff824f | Run CI on python3.10 | [
{
"change_type": "MODIFY",
"old_path": ".github/workflows/ci.yml",
"new_path": ".github/workflows/ci.yml",
"diff": "@@ -17,8 +17,8 @@ jobs:\n- macos-latest\n- windows-latest\npython-version:\n- - 3.7\n- - 3.9\n+ - \"3.7\"\n+ - \"3.10\"\nsteps:\n- uses: actions/checkout@v3\n"
}
] | Python | MIT License | vkbottle/vkbottle | Run CI on python3.10 |
718,844 | 19.10.2022 06:39:44 | -10,800 | 02c6e045e70d250f269d24d269ed1c6eec030c2d | Wait for the runtime added tasks to complete | [
{
"change_type": "MODIFY",
"old_path": "vkbottle/tools/dev/loop_wrapper.py",
"new_path": "vkbottle/tools/dev/loop_wrapper.py",
"diff": "import asyncio\n+import contextlib\nfrom asyncio import new_event_loop\nfrom typing import TYPE_CHECKING, Any, Callable, Coroutine, List, Optional, Union\n@@ -55,11... | Python | MIT License | vkbottle/vkbottle | Wait for the runtime added tasks to complete |
718,844 | 14.11.2022 23:16:30 | -10,800 | 6268f92db21f359c8e9258f7b49e9a0eb7eaa6e8 | Uploaders update | [
{
"change_type": "MODIFY",
"old_path": "vkbottle/tools/dev/uploader/audio.py",
"new_path": "vkbottle/tools/dev/uploader/audio.py",
"diff": "@@ -13,27 +13,40 @@ class AudioUploader(BaseUploader):\nreturn (await self.api.request(\"audio.getUploadServer\", {}))[\"response\"]\nasync def upload(\n- self,... | Python | MIT License | vkbottle/vkbottle | Uploaders update (#568) |
718,844 | 14.11.2022 23:23:11 | -10,800 | 0bbb64a017e979abccc558e3b5600ccffc6fdcd6 | Fix E303 error | [
{
"change_type": "MODIFY",
"old_path": "vkbottle/tools/dev/uploader/base.py",
"new_path": "vkbottle/tools/dev/uploader/base.py",
"diff": "@@ -46,7 +46,6 @@ class BaseUploader(ABC):\n)\nreturn json.loads(raw_response)\n-\ndef get_bytes_io(self, data: \"Bytes\", name: Optional[str] = None) -> BytesIO:... | Python | MIT License | vkbottle/vkbottle | Fix E303 error |
718,880 | 26.11.2022 02:11:16 | -10,800 | 58c5dfa963fbabdbfca3b746e8b2067f241f378d | Keyboard generator improvements | [
{
"change_type": "MODIFY",
"old_path": "tests/tools/test_tools.py",
"new_path": "tests/tools/test_tools.py",
"diff": "@@ -79,9 +79,11 @@ def assert_rule(res, rev=False):\ndef test_keyboard_non_builder():\nkeyboard = Keyboard(one_time=True)\n+ keyboard.row() # test empty row autoremove\nkeyboard.add(... | Python | MIT License | vkbottle/vkbottle | Keyboard generator improvements (#595)
Co-authored-by: FeeeeK <26704473+FeeeeK@users.noreply.github.com> |
718,844 | 27.11.2022 19:05:20 | -10,800 | 2d0765fec7db612bab7b7943ba86dec0e8e3d611 | Remove not working auto reload feature | [
{
"change_type": "MODIFY",
"old_path": "pyproject.toml",
"new_path": "pyproject.toml",
"diff": "@@ -46,7 +46,6 @@ choicelib = \"^0.1.5\"\npydantic = \"^1.9.1\"\nvbml = \"^1.1.post1\"\nvkbottle-types = \"^5.131.146.9\"\n-watchfiles = \">=0.15,<0.19\"\naiofiles = \">=0.8,<22.2\"\ntyping-extensions = \... | Python | MIT License | vkbottle/vkbottle | Remove not working auto reload feature |
718,844 | 27.11.2022 19:15:48 | -10,800 | 2ddc52d29cbbc15c8f92067751099f682ac80aa0 | Add new mypy rule | [
{
"change_type": "MODIFY",
"old_path": "pyproject.toml",
"new_path": "pyproject.toml",
"diff": "@@ -98,6 +98,7 @@ ignore_missing_imports = true\nwarn_no_return = false\nwarn_return_any = false\nwarn_unused_configs = true\n+check_untyped_defs = true\n[[tool.mypy.overrides]]\n# Ignore tests, because w... | Python | MIT License | vkbottle/vkbottle | Add new mypy rule |
718,844 | 27.11.2022 22:24:32 | -10,800 | 37ed9261e7fbdcb98371010a2ed11b824d33c8db | Remove deprecated `keyboard_gen` | [
{
"change_type": "MODIFY",
"old_path": "tests/tools/test_tools.py",
"new_path": "tests/tools/test_tools.py",
"diff": "@@ -20,7 +20,6 @@ from vkbottle.tools import (\nLoopWrapper,\nTemplateElement,\nText,\n- keyboard_gen,\nload_blueprints_from_package,\nrun_in_task,\ntemplate_gen,\n@@ -97,26 +96,6 @@... | Python | MIT License | vkbottle/vkbottle | Remove deprecated `keyboard_gen` |
718,844 | 14.12.2022 01:01:07 | -10,800 | f0ade96c442f03d5ca693a9dfeeaeedf709fbfdf | Fix states compare | [
{
"change_type": "MODIFY",
"old_path": "examples/high-level/labeler_setup.py",
"new_path": "examples/high-level/labeler_setup.py",
"diff": "@@ -53,8 +53,8 @@ bot.labeler.load(BotLabeler()) # Labeler can be loaded in another labeler\n# The comments for states are skipped because\n# we have another to... | Python | MIT License | vkbottle/vkbottle | Fix states compare |
718,844 | 14.12.2022 01:03:45 | -10,800 | 5aa8464363d5ca08dbc98eb0c8054d4e00736fbb | Remove swear error handler | [
{
"change_type": "MODIFY",
"old_path": "tests/test_exception_handling.py",
"new_path": "tests/test_exception_handling.py",
"diff": "import pytest\n-from vkbottle import CodeException, ErrorHandler, swear\n+from vkbottle import CodeException, ErrorHandler\ndef test_code_error():\n@@ -17,23 +17,6 @@ d... | Python | MIT License | vkbottle/vkbottle | Remove swear error handler |
718,844 | 05.01.2023 19:46:45 | -10,800 | aaf30fe5ba2a7ca8aba1978056d039b00d914f2a | Fix `TimeoutError` in polling | [
{
"change_type": "MODIFY",
"old_path": "vkbottle/polling/bot_polling.py",
"new_path": "vkbottle/polling/bot_polling.py",
"diff": "+import asyncio\nfrom typing import TYPE_CHECKING, AsyncGenerator, Optional\n-from aiohttp.client_exceptions import ServerConnectionError\n+from aiohttp.client_exceptions... | Python | MIT License | vkbottle/vkbottle | Fix `TimeoutError` in polling |
718,864 | 08.01.2023 22:10:14 | -25,200 | 3cc4a3a3d20e95fa362d3e59549450b7ffb66679 | Add get_audio_attachments method | [
{
"change_type": "MODIFY",
"old_path": "vkbottle/tools/dev/mini_types/base/foreign_message.py",
"new_path": "vkbottle/tools/dev/mini_types/base/foreign_message.py",
"diff": "@@ -5,6 +5,7 @@ from pydantic import root_validator\nfrom vkbottle_types.objects import (\nAudioAudio,\nDocsDoc,\n+ MessagesAu... | Python | MIT License | vkbottle/vkbottle | Add get_audio_attachments method (#609) |
718,844 | 30.01.2023 08:40:10 | -10,800 | b4659cbf44f55b97a82164600c1f322b0b91adf7 | Add `SpeechUploader` | [
{
"change_type": "MODIFY",
"old_path": "vkbottle/tools/dev/uploader/audio.py",
"new_path": "vkbottle/tools/dev/uploader/audio.py",
"diff": "@@ -49,7 +49,7 @@ class AudioUploader(BaseUploader):\n@property\ndef attachment_name(self) -> str:\n- return self.with_name or self.NAME\n+ return self._attachm... | Python | MIT License | vkbottle/vkbottle | Add `SpeechUploader` (#624) |
718,844 | 07.02.2023 00:19:58 | -10,800 | ef9f5ead0c804a1cfcfae7202779f67dd41204e7 | Bump version to 4.4.0-dev1 | [
{
"change_type": "MODIFY",
"old_path": "pyproject.toml",
"new_path": "pyproject.toml",
"diff": "[tool.poetry]\nname = \"vkbottle\"\n-version = \"4.3.12\"\n+version = \"4.4.0-dev1\"\ndescription = \"Homogenic! Customizable asynchronous VK API framework implementing comfort and speed\"\nauthors = [\"t... | Python | MIT License | vkbottle/vkbottle | Bump version to 4.4.0-dev1 |
455,776 | 03.01.2017 15:22:27 | 28,800 | 0066128a5f2fcdf4d71241a4313fbc18f4c9a9b9 | Functional tests: Close all web responses after use | [
{
"change_type": "MODIFY",
"old_path": "tests/NuGetGallery.FunctionalTests.Core/Helpers/ODataHelper.cs",
"new_path": "tests/NuGetGallery.FunctionalTests.Core/Helpers/ODataHelper.cs",
"diff": "@@ -143,8 +143,8 @@ public async Task<bool> ContainsResponseTextIgnoreCase(string url, params string\nprivat... | C# | Apache License 2.0 | nuget/nugetgallery | Functional tests: Close all web responses after use (#3431) |
455,776 | 05.01.2017 15:06:04 | 28,800 | 0b7007b8b08dc6f7b781be0e0438ce10d448d719 | Add more package validation to v2 API push | [
{
"change_type": "MODIFY",
"old_path": "src/NuGetGallery/Controllers/ApiController.cs",
"new_path": "src/NuGetGallery/Controllers/ApiController.cs",
"diff": "@@ -254,17 +254,32 @@ private async Task<ActionResult> CreatePackageInternal()\nusing (var packageToPush = new PackageArchiveReader(packageStr... | C# | Apache License 2.0 | nuget/nugetgallery | Add more package validation to v2 API push (#3446) |
455,794 | 10.01.2017 20:47:31 | 28,800 | 89d78f069e6048dcbcbc743a88936ce21169bb83 | Enforce HttpOnly and Secure cookie attributes | [
{
"change_type": "MODIFY",
"old_path": "src/NuGetGallery/Authentication/ForceSslWhenAuthenticatedMiddleware.cs",
"new_path": "src/NuGetGallery/Authentication/ForceSslWhenAuthenticatedMiddleware.cs",
"diff": "@@ -47,7 +47,12 @@ public override async Task Invoke(IOwinContext context)\n// Invoke the re... | C# | Apache License 2.0 | nuget/nugetgallery | Enforce HttpOnly and Secure cookie attributes (#3463) |
455,776 | 12.01.2017 12:30:45 | 28,800 | 9216b034976d71edb9d6c4e467360b4b37916b9a | Delete uploaded package from blob storage if saving changes to DB fails | [
{
"change_type": "MODIFY",
"old_path": "src/NuGetGallery/Controllers/ApiController.cs",
"new_path": "src/NuGetGallery/Controllers/ApiController.cs",
"diff": "@@ -358,7 +358,16 @@ private async Task<ActionResult> CreatePackageInternal()\n}\n}\n+ try\n+ {\nawait EntitiesContext.SaveChangesAsync();\n+ ... | C# | Apache License 2.0 | nuget/nugetgallery | Delete uploaded package from blob storage if saving changes to DB fails (#3469) |
455,776 | 26.01.2017 15:53:15 | 28,800 | 9a1312613df48758dfc8f27e83d4d1b768f2d181 | UseBasicParsing on web requests in Powershell | [
{
"change_type": "MODIFY",
"old_path": ".gitignore",
"new_path": ".gitignore",
"diff": "@@ -20,10 +20,15 @@ Packages.dgml\n[Dd]ebug/\n[Rr]elease/\nx64/\n-#build/ # We use this folder for our Build Scripts\n[Bb]in/\n[Oo]bj/\n+# Files created and used by our build scripts\n+build/\n+tools/\n+.nuget/Cr... | C# | Apache License 2.0 | nuget/nugetgallery | UseBasicParsing on web requests in Powershell (#3488) |
455,747 | 02.02.2017 15:54:52 | 28,800 | 2b94a5ee870751dcb36d2f8ac56f32a3ac20a902 | Enable trace listeners for app insights | [
{
"change_type": "MODIFY",
"old_path": "src/NuGetGallery/ApplicationInsights.config",
"new_path": "src/NuGetGallery/ApplicationInsights.config",
"diff": "Note: If not present, please add <InstrumentationKey>Your Key</InstrumentationKey> to the top of this file.\n-->\n+ <TelemetryProcessors>\n+ <Add ... | C# | Apache License 2.0 | nuget/nugetgallery | Enable trace listeners for app insights (#3523) |
455,776 | 06.02.2017 10:27:59 | 28,800 | f8405f3a8c596eed51fdaca24334a61298da3eaf | Prevent $BuildBranch overwriting | [
{
"change_type": "MODIFY",
"old_path": "build.ps1",
"new_path": "build.ps1",
"diff": "@@ -11,7 +11,7 @@ param (\n[string]$SemanticVersion = '1.0.0-zlocal',\n[string]$Branch,\n[string]$CommitSHA,\n- [string]$BuildBranch = 'da881231d9ae9c966d0c18824f09f0122008e765'\n+ [string]$BuildBranch = 'a8c27302d... | C# | Apache License 2.0 | nuget/nugetgallery | Prevent $BuildBranch overwriting (#3528) |
455,777 | 08.02.2017 03:23:19 | -36,000 | 88624eda14d55d063cf911a5b6756aa5ae57752e | Update Octopus link | [
{
"change_type": "MODIFY",
"old_path": "src/NuGetGallery/Views/Shared/LayoutFooter.cshtml",
"new_path": "src/NuGetGallery/Views/Shared/LayoutFooter.cshtml",
"diff": "<a href=\"https://status.nuget.org\">Service status</a>\n</p>\n<p>\n- Deployed using <a href=\"http://octopusdeploy.com/\" target=\"re... | C# | Apache License 2.0 | nuget/nugetgallery | Update Octopus link (#3533) |
455,776 | 10.02.2017 16:17:19 | 28,800 | 2ed3feea2827856fec0434b14e0fe83ef82db5cd | Add Deploy-StaticContent.ps1 | [
{
"change_type": "ADD",
"old_path": null,
"new_path": "Deploy-StaticContent.ps1",
"diff": "+[CmdletBinding(DefaultParameterSetName='RegularBuild')]\n+param (\n+ [string]$StorageAccountName,\n+ [string]$StorageAccountKey,\n+ [string]$Environment\n+)\n+\n+Write-Host \"Uploading static $Environment gal... | C# | Apache License 2.0 | nuget/nugetgallery | Add Deploy-StaticContent.ps1 (#3529) |
455,731 | 16.02.2017 14:43:45 | 28,800 | 81f0cd5010f4575b4fbe023bf387376f9c204207 | Allow package title reuse with soft-deleted package | [
{
"change_type": "MODIFY",
"old_path": "src/NuGetGallery/Services/PackageNamingConflictValidator.cs",
"new_path": "src/NuGetGallery/Services/PackageNamingConflictValidator.cs",
"diff": "@@ -56,7 +56,7 @@ public bool IdConflictsWithExistingPackageTitle(string registrationId)\nregistrationId = registr... | C# | Apache License 2.0 | nuget/nugetgallery | Allow package title reuse with soft-deleted package (#3570) |
455,772 | 21.02.2017 13:31:30 | 28,800 | 5949008e18b9483bcbabfa83b9ec6f38fae00ab2 | refactor test hook | [
{
"change_type": "MODIFY",
"old_path": ".gitignore",
"new_path": ".gitignore",
"diff": "@@ -185,3 +185,4 @@ Results.?.xml\n.vs/config/applicationhost.config\nsrc/NuGetGallery/App_Data/Files/auditing/\nartifacts/\n+.vs\n"
},
{
"change_type": "MODIFY",
"old_path": "src/NuGetGallery/Control... | C# | Apache License 2.0 | nuget/nugetgallery | refactor test hook (#3580) |
455,794 | 07.03.2017 16:20:00 | 28,800 | 1b6b5b0d447066599138b83ba94e9de045228cf1 | IsLatest Fix: wrong connection string passed to retry context | [
{
"change_type": "MODIFY",
"old_path": "src/NuGetGallery/Services/PackageService.cs",
"new_path": "src/NuGetGallery/Services/PackageService.cs",
"diff": "using NuGet.Packaging;\nusing NuGet.Versioning;\nusing NuGetGallery.Auditing;\n+using NuGetGallery.Configuration;\nusing NuGetGallery.Diagnostics;... | C# | Apache License 2.0 | nuget/nugetgallery | IsLatest Fix: wrong connection string passed to retry context (#3632) |
455,772 | 07.03.2017 17:36:01 | 28,800 | cf34a1c2fad7d6010a7352cc9c323b4b5248eecf | Send e-mail when a new API key is created | [
{
"change_type": "MODIFY",
"old_path": "src/NuGetGallery/Controllers/UsersController.cs",
"new_path": "src/NuGetGallery/Controllers/UsersController.cs",
"diff": "@@ -580,6 +580,8 @@ public virtual async Task<ActionResult> GenerateApiKey(string description, strin\nvar credentialViewModel = _authServi... | C# | Apache License 2.0 | nuget/nugetgallery | Send e-mail when a new API key is created (#3634) |
455,747 | 09.03.2017 15:36:08 | 28,800 | a163efabf37a198c47a8bce9c73c35fb95298b94 | Fix Microsoft Account removal
Fix the cshtml; add tests | [
{
"change_type": "MODIFY",
"old_path": "src/NuGetGallery/Views/Users/Account.cshtml",
"new_path": "src/NuGetGallery/Views/Users/Account.cshtml",
"diff": "@item.ExpandLink(\"More Info\", \"Less Info\")\n@if (loginCredentials > 1)\n{\n- using (Html.BeginForm(\"RemoveCredential\", \"Users\", new { cred... | C# | Apache License 2.0 | nuget/nugetgallery | Fix Microsoft Account removal (#3639)
Fix the cshtml; add tests |
455,794 | 10.03.2017 10:23:45 | 28,800 | 00fb3fb2d811e11e05e437b08fbc8171c7fcde0c | Fix concurrent push test by disabling search hijacking on feed | [
{
"change_type": "MODIFY",
"old_path": "tests/NuGetGallery.FunctionalTests/ODataFeeds/V2FeedExtendedTests.cs",
"new_path": "tests/NuGetGallery.FunctionalTests/ODataFeeds/V2FeedExtendedTests.cs",
"diff": "@@ -211,6 +211,7 @@ private async Task CheckPackageLatestVersions(string packageId, List<string>... | C# | Apache License 2.0 | nuget/nugetgallery | Fix concurrent push test by disabling search hijacking on feed (#3641) |
455,794 | 16.03.2017 08:49:20 | 25,200 | 68a704669210c50efb444b096a2f1cb2e6387c9b | Telemetry for temp keys | [
{
"change_type": "MODIFY",
"old_path": "src/NuGetGallery/Constants.cs",
"new_path": "src/NuGetGallery/Constants.cs",
"diff": "@@ -52,6 +52,7 @@ public static class Constants\npublic const string UrlValidationErrorMessage = \"This doesn't appear to be a valid HTTP/HTTPS URL\";\ninternal const string ... | C# | Apache License 2.0 | nuget/nugetgallery | Telemetry for temp keys (#3662) |
455,794 | 16.03.2017 15:15:32 | 25,200 | 5e9b0ed80ce1d5bf8c636956b22db99c2a8319e3 | Functional test for temp keys | [
{
"change_type": "MODIFY",
"old_path": "tests/NuGetGallery.FunctionalTests/ODataFeeds/V2FeedExtendedTests.cs",
"new_path": "tests/NuGetGallery.FunctionalTests/ODataFeeds/V2FeedExtendedTests.cs",
"diff": "using System.IO;\nusing System.Linq;\nusing System.Net;\n-using System.Threading;\nusing System.... | C# | Apache License 2.0 | nuget/nugetgallery | Functional test for temp keys (#3664) |
455,731 | 17.03.2017 09:28:02 | 25,200 | d424e79c2bde12ab3a39953b1004d39f1cee86f3 | Add credential to Register and RequestPasswordReset audits | [
{
"change_type": "MODIFY",
"old_path": "src/NuGetGallery/Authentication/AuthenticationService.cs",
"new_path": "src/NuGetGallery/Authentication/AuthenticationService.cs",
"diff": "@@ -295,7 +295,7 @@ public virtual async Task<AuthenticatedUser> Register(string username, string em\n}\n// Write an aud... | C# | Apache License 2.0 | nuget/nugetgallery | Add credential to Register and RequestPasswordReset audits (#3666) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.