Skip to content

Commit 2838508

Browse files
committed
docs: point advanced-alchemy references to new domain
1 parent 9bcae1e commit 2838508

File tree

7 files changed

+18
-15
lines changed

7 files changed

+18
-15
lines changed

docs/PYPI_README.md

Lines changed: 8 additions & 8 deletions
Large diffs are not rendered by default.

docs/conf.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,10 @@
6767
"tortoise": ("https://tortoise.github.io/", None),
6868
"piccolo": ("https://piccolo-orm.readthedocs.io/en/latest/", None),
6969
"opentelemetry": ("https://opentelemetry-python.readthedocs.io/en/latest/", None),
70-
"advanced-alchemy": ("https://docs.advanced-alchemy.litestar.dev/latest/", None),
70+
"advanced-alchemy": (
71+
"https://advanced-alchemy.dev/latest/",
72+
"https://advanced-alchemy.dev/latest/objects.inv",
73+
),
7174
"jinja2": ("https://jinja.palletsprojects.com/en/latest/", None),
7275
"trio": ("https://trio.readthedocs.io/en/stable/", None),
7376
"pydantic": ("https://docs.pydantic.dev/latest/", None),

docs/getting-started.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ Installation
4747
:doc:`Open Telemetry Instrumentation </usage/metrics/open-telemetry>`
4848
:code:`pip install 'litestar[opentelemetry]'`
4949

50-
:doc:`SQLAlchemy </usage/databases/sqlalchemy/index>` (via `Advanced-Alchemy <https://docs.advanced-alchemy.litestar.dev/latest/>`_)
50+
:doc:`SQLAlchemy </usage/databases/sqlalchemy/index>` (via `Advanced-Alchemy <https://advanced-alchemy.dev/latest/>`_)
5151
:code:`pip install 'litestar[sqlalchemy]'`
5252

5353
:doc:`Jinja Templating </usage/templating>`

docs/release-notes/whats-new-2.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -295,8 +295,8 @@ SQLAlchemy 2 only.
295295
TODO: Migration instructions
296296

297297
.. seealso::
298-
SQLAlchemy usage documentation was available in v2, but SQLAlchemy support was moved into a move comprehensive standalone library for v3. See the
299-
`advanced-alchemy documentation <https://docs.advanced-alchemy.litestar.dev/>`_ for API reference
298+
SQLAlchemy usage documentation was available in v2, but SQLAlchemy support was moved into a more comprehensive standalone library for v3. See the
299+
`advanced-alchemy documentation <https://advanced-alchemy.dev/latest/>`_ for API reference
300300

301301

302302
Removal of Pydantic models

docs/tutorials/sqlalchemy/4-final-touches-and-recap.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,4 +63,4 @@ engine and session lifecycle, and register our ``transaction`` dependency.
6363

6464
.. seealso::
6565

66-
* `Advanced Alchemy Documentation <https://docs.advanced-alchemy.litestar.dev/>`_
66+
* `Advanced Alchemy Documentation <https://advanced-alchemy.dev/latest/>`_

docs/tutorials/sqlalchemy/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ To follow this tutorial, you will need Advanced Alchemy installed. You can insta
1717
Litestar install it for you by installing the ``sqlalchemy`` extra (e.g., ``pip install 'litestar[standard,sqlalchemy]' aiosqlite``).
1818

1919
.. note::
20-
SQLAlchemy support in Litestar is now provided by `Advanced Alchemy <https://docs.advanced-alchemy.litestar.dev/>`_,
20+
SQLAlchemy support in Litestar is now provided by `Advanced Alchemy <https://advanced-alchemy.dev/latest/>`_,
2121
a first-party library. All imports should use ``advanced_alchemy.extensions.litestar`` instead of the deprecated
2222
``litestar.contrib.sqlalchemy`` or ``litestar.plugins.sqlalchemy`` modules.
2323

docs/usage/databases/sqlalchemy/plugins/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Plugins
22
-------
33

4-
The `Advanced-Alchemy <https://docs.advanced-alchemy.litestar.dev/latest/>`_ library
4+
The `Advanced-Alchemy <https://advanced-alchemy.dev/latest/>`_ library
55
provides a range of plugins to add support for SQLAlchemy:
66

77
- :class:`~advanced_alchemy.extensions.litestar.SQLAlchemyPlugin`: Full SQLAlchemy support

0 commit comments

Comments
 (0)