mirror of
https://github.com/Cog-Creators/Red-DiscordBot.git
synced 2025-11-05 18:58:53 -05:00
Compare commits
5 Commits
71554c981d
...
6f5f34c80a
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
6f5f34c80a | ||
|
|
2e902b067e | ||
|
|
61695daded | ||
|
|
10889642ce | ||
|
|
a3b254fe8e |
30
CHANGES.rst
30
CHANGES.rst
@ -1,5 +1,35 @@
|
|||||||
.. Red changelogs
|
.. Red changelogs
|
||||||
|
|
||||||
|
Redbot 3.5.18 (2025-03-26)
|
||||||
|
==========================
|
||||||
|
|
||||||
|
| Thanks to all these amazing people that contributed to this release:
|
||||||
|
| :ghuser:`Jackenmen`, :ghuser:`Kreusada`
|
||||||
|
|
||||||
|
Read before updating
|
||||||
|
--------------------
|
||||||
|
|
||||||
|
#. Information for Audio users that are using an external Lavalink instance (if you don't know what that is, you should skip this point):
|
||||||
|
|
||||||
|
We've updated our default application.yml file and you should update your instance's ``application.yml`` accordingly.
|
||||||
|
More specifically, we bumped the version of YT source plugin.
|
||||||
|
`Download Red 3.5.18's default application.yml file <https://github.com/Cog-Creators/Red-DiscordBot/releases/download/3.5.18/Red-DiscordBot-3.5.18-default-lavalink-application.yml>`__
|
||||||
|
|
||||||
|
End-user changelog
|
||||||
|
------------------
|
||||||
|
|
||||||
|
Changes
|
||||||
|
*******
|
||||||
|
|
||||||
|
- **Core - Dependencies** - Red's dependencies have been bumped (:issue:`6543`)
|
||||||
|
|
||||||
|
Fixes
|
||||||
|
*****
|
||||||
|
|
||||||
|
- |cool| **Cogs - Audio** - Fixed recent YT playback issues (:issue:`6542`)
|
||||||
|
|
||||||
|
----
|
||||||
|
|
||||||
Redbot 3.5.17 (2025-03-08)
|
Redbot 3.5.17 (2025-03-08)
|
||||||
==========================
|
==========================
|
||||||
|
|
||||||
|
|||||||
@ -339,7 +339,7 @@ def _early_init():
|
|||||||
|
|
||||||
|
|
||||||
# This is bumped automatically by release workflow (`.github/workflows/scripts/bump_version.py`)
|
# This is bumped automatically by release workflow (`.github/workflows/scripts/bump_version.py`)
|
||||||
_VERSION = "3.5.18.dev1"
|
_VERSION = "3.5.19.dev1"
|
||||||
|
|
||||||
__version__, version_info = VersionInfo._get_version()
|
__version__, version_info = VersionInfo._get_version()
|
||||||
|
|
||||||
|
|||||||
@ -12,7 +12,7 @@ __all__ = (
|
|||||||
|
|
||||||
|
|
||||||
JAR_VERSION: Final[LavalinkVersion] = LavalinkVersion(3, 7, 12, red=1)
|
JAR_VERSION: Final[LavalinkVersion] = LavalinkVersion(3, 7, 12, red=1)
|
||||||
YT_PLUGIN_VERSION: Final[str] = "1.11.5"
|
YT_PLUGIN_VERSION: Final[str] = "1.12.0"
|
||||||
# keep this sorted from oldest to latest
|
# keep this sorted from oldest to latest
|
||||||
SUPPORTED_JAVA_VERSIONS: Final[Tuple[int, ...]] = (11, 17)
|
SUPPORTED_JAVA_VERSIONS: Final[Tuple[int, ...]] = (11, 17)
|
||||||
LATEST_SUPPORTED_JAVA_VERSION: Final = SUPPORTED_JAVA_VERSIONS[-1]
|
LATEST_SUPPORTED_JAVA_VERSION: Final = SUPPORTED_JAVA_VERSIONS[-1]
|
||||||
|
|||||||
@ -10,7 +10,7 @@ aiosignal==1.3.1
|
|||||||
# via aiohttp
|
# via aiohttp
|
||||||
apsw==3.46.1.0
|
apsw==3.46.1.0
|
||||||
# via -r base.in
|
# via -r base.in
|
||||||
attrs==25.1.0
|
attrs==25.3.0
|
||||||
# via aiohttp
|
# via aiohttp
|
||||||
babel==2.17.0
|
babel==2.17.0
|
||||||
# via -r base.in
|
# via -r base.in
|
||||||
@ -68,7 +68,7 @@ schema==0.7.7
|
|||||||
# via -r base.in
|
# via -r base.in
|
||||||
six==1.17.0
|
six==1.17.0
|
||||||
# via python-dateutil
|
# via python-dateutil
|
||||||
typing-extensions==4.12.2
|
typing-extensions==4.13.0
|
||||||
# via
|
# via
|
||||||
# -r base.in
|
# -r base.in
|
||||||
# multidict
|
# multidict
|
||||||
@ -87,7 +87,7 @@ distro==1.9.0; sys_platform == "linux" and sys_platform == "linux"
|
|||||||
# via -r base.in
|
# via -r base.in
|
||||||
importlib-metadata==8.5.0; python_version != "3.10" and python_version != "3.11"
|
importlib-metadata==8.5.0; python_version != "3.10" and python_version != "3.11"
|
||||||
# via markdown
|
# via markdown
|
||||||
pytz==2025.1; python_version == "3.8"
|
pytz==2025.2; python_version == "3.8"
|
||||||
# via babel
|
# via babel
|
||||||
uvloop==0.21.0; (sys_platform != "win32" and platform_python_implementation == "CPython") and sys_platform != "win32"
|
uvloop==0.21.0; (sys_platform != "win32" and platform_python_implementation == "CPython") and sys_platform != "win32"
|
||||||
# via -r base.in
|
# via -r base.in
|
||||||
|
|||||||
@ -17,7 +17,7 @@ jinja2==3.1.6
|
|||||||
# via sphinx
|
# via sphinx
|
||||||
markupsafe==2.1.5
|
markupsafe==2.1.5
|
||||||
# via jinja2
|
# via jinja2
|
||||||
pytz==2025.1
|
pytz==2025.2
|
||||||
# via babel
|
# via babel
|
||||||
requests==2.32.3
|
requests==2.32.3
|
||||||
# via sphinx
|
# via sphinx
|
||||||
|
|||||||
@ -2,7 +2,7 @@ astroid==3.2.4
|
|||||||
# via pylint
|
# via pylint
|
||||||
dill==0.3.9
|
dill==0.3.9
|
||||||
# via pylint
|
# via pylint
|
||||||
iniconfig==2.0.0
|
iniconfig==2.1.0
|
||||||
# via pytest
|
# via pytest
|
||||||
isort==5.13.2
|
isort==5.13.2
|
||||||
# via pylint
|
# via pylint
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user