From 65bb11d45c879b56e4e413731f4263b79829b856 Mon Sep 17 00:00:00 2001 From: Oskar Stark Date: Tue, 30 Dec 2025 22:56:50 +0100 Subject: [PATCH] Update DOCtor-RST to 1.78.0 --- .doctor-rst.yaml | 1 + .github/workflows/ci.yaml | 2 +- components/ldap.rst | 2 +- frontend/asset_mapper.rst | 4 ++-- 4 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.doctor-rst.yaml b/.doctor-rst.yaml index 385d142c92..fa982cdf65 100644 --- a/.doctor-rst.yaml +++ b/.doctor-rst.yaml @@ -14,6 +14,7 @@ rules: ensure_exactly_one_space_before_directive_type: ~ ensure_exactly_one_space_between_link_definition_and_link: ~ ensure_explicit_nullable_types: ~ + ensure_shorthand_colons: ~ ensure_github_directive_start_with_prefix: prefix: 'Symfony' ensure_link_bottom: ~ diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 30606c3b68..842862d29f 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -72,7 +72,7 @@ jobs: key: ${{ runner.os }}-doctor-rst-${{ steps.extract_base_branch.outputs.branch }} - name: "Run DOCtor-RST" - uses: docker://oskarstark/doctor-rst:1.77.0 + uses: docker://oskarstark/doctor-rst:1.78.0 with: args: --short --error-format=github --cache-file=/github/workspace/.cache/doctor-rst.cache diff --git a/components/ldap.rst b/components/ldap.rst index f5a142ced9..8f5eec76f6 100644 --- a/components/ldap.rst +++ b/components/ldap.rst @@ -111,7 +111,7 @@ to the ``LDAP_SCOPE_BASE`` scope of :phpfunction:`ldap_read`) and ``SCOPE_ONE`` $query = $ldap->query('dc=symfony,dc=com', '...', ['scope' => QueryInterface::SCOPE_ONE]); -Use the ``filter`` option to only retrieve some specific attributes: +Use the ``filter`` option to only retrieve some specific attributes:: $query = $ldap->query('dc=symfony,dc=com', '...', ['filter' => ['cn', 'mail']); diff --git a/frontend/asset_mapper.rst b/frontend/asset_mapper.rst index 6f04593833..6434f6ef84 100644 --- a/frontend/asset_mapper.rst +++ b/frontend/asset_mapper.rst @@ -581,10 +581,10 @@ Missing importmap Entry One of the most common errors will come from your browser's console, and will look something like this: - Failed to resolve module specifier " bootstrap". Relative references must start + Failed to resolve module specifier "bootstrap". Relative references must start with either "/", "./", or "../". -Or: +or The specifier "bootstrap" was a bare specifier, but was not remapped to anything. Relative module specifiers must start with "./", "../" or "/".