Skip to content
Snippets Groups Projects

Issue #3518990: Deprecate SyndicateBlock and remove from theme and standard profile

Closed Issue #3518990: Deprecate SyndicateBlock and remove from theme and standard profile
2 unresolved threads
Closed Ann Mary Sruthy requested to merge issue/drupal-3518990:3518990- into 11.x
2 unresolved threads

Closes #3518990

Merge request reports

Loading
Loading

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
88 88 $expected_queries = [
89 89 'SELECT "base_table"."id" AS "id", "base_table"."path" AS "path", "base_table"."alias" AS "alias", "base_table"."langcode" AS "langcode" FROM "path_alias" "base_table" WHERE ("base_table"."status" = 1) AND ("base_table"."alias" LIKE "/node" ESCAPE ' . "'\\\\'" . ') AND ("base_table"."langcode" IN ("en", "und")) ORDER BY "base_table"."langcode" ASC, "base_table"."id" DESC',
90 90 'SELECT "name", "route", "fit" FROM "router" WHERE "pattern_outline" IN ( "/node" ) AND "number_parts" >= 1',
91 'SELECT 1 AS "expression" FROM "path_alias" "base_table" WHERE ("base_table"."status" = 1) AND ("base_table"."path" LIKE "/rss.xml%" ESCAPE ' . "'\\\\'" . ') LIMIT 1 OFFSET 0',
  • This is the pre-caching path_alias check that previously would have happened in the pre warming step of this test when visiting user/login.

    Quoting @berdir

    specifically, the reason is that the test visits the user/login page first to warm up global caches, on HEAD, that renders the block and caches the block including that link. but now it only happens on the frontpage view

  • Please register or sign in to reply
  • Adam Bramley added 1 commit

    added 1 commit

    • 7d06ae13 - Remove syndicate block from bare fixture

    Compare with previous version

  • Adam Bramley added 24 commits

    added 24 commits

    • 7d06ae13...b3238209 - 17 commits from branch project:11.x
    • 767e45f9 - Issue #3518990: Deprecate SyndicateBlock and remove from theme and standard profile
    • 3f00d186 - Remove syndicate block from update fixture
    • e2730816 - Fix BlockConfigSchemaTest
    • c6c79ebc - Fix navigation performance test
    • 70ddc6ee - Fix StandardPerformanceTest
    • 1e3ec084 - Remove syndicate block from bare fixture
    • 0e0ce891 - Hide the syndicate block from being added via the UI

    Compare with previous version

  • Adam Bramley added 1 commit

    added 1 commit

    Compare with previous version

  • David Cameron added 37 commits

    added 37 commits

    Compare with previous version

  • 66 66 }
    67 67 }
    68 68
    69 /**
    70 * Implements hook_block_alter().
    71 */
    72 #[Hook('block_alter')]
    73 public function blockAlter(&$definitions): void {
    74 // Hide the deprecated Syndicate block from the UI.
    75 $definitions['node_syndicate_block']['_block_ui_hidden'] = TRUE;
  • closed

  • Please register or sign in to reply
    Loading