Skip to content
Snippets Groups Projects
Commit 6ef7f349 authored by Michael Lee's avatar Michael Lee
Browse files

Upgrading drupal/pantheon_advanced_page_cache (2.1.1 => 2.1.2)

parent ea04f258
No related branches found
No related tags found
No related merge requests found
......@@ -5876,17 +5876,17 @@
},
{
"name": "drupal/pantheon_advanced_page_cache",
"version": "2.1.1",
"version": "2.1.2",
"source": {
"type": "git",
"url": "https://git.drupalcode.org/project/pantheon_advanced_page_cache.git",
"reference": "2.1.1"
"reference": "2.1.2"
},
"dist": {
"type": "zip",
"url": "https://ftp.drupal.org/files/projects/pantheon_advanced_page_cache-2.1.1.zip",
"reference": "2.1.1",
"shasum": "adbac68a8c5290e6a32fe0b8cc9a6a7fb91a64d3"
"url": "https://ftp.drupal.org/files/projects/pantheon_advanced_page_cache-2.1.2.zip",
"reference": "2.1.2",
"shasum": "954aa3442824fb88da3fd3518400cf008e12a8d1"
},
"require": {
"drupal/core": "^9.4 || ^10"
......@@ -5899,8 +5899,8 @@
"type": "drupal-module",
"extra": {
"drupal": {
"version": "2.1.1",
"datestamp": "1669644382",
"version": "2.1.2",
"datestamp": "1683747792",
"security-coverage": {
"status": "covered",
"message": "Covered by Drupal's security advisory policy"
......
......@@ -6108,18 +6108,18 @@
},
{
"name": "drupal/pantheon_advanced_page_cache",
"version": "2.1.1",
"version_normalized": "2.1.1.0",
"version": "2.1.2",
"version_normalized": "2.1.2.0",
"source": {
"type": "git",
"url": "https://git.drupalcode.org/project/pantheon_advanced_page_cache.git",
"reference": "2.1.1"
"reference": "2.1.2"
},
"dist": {
"type": "zip",
"url": "https://ftp.drupal.org/files/projects/pantheon_advanced_page_cache-2.1.1.zip",
"reference": "2.1.1",
"shasum": "adbac68a8c5290e6a32fe0b8cc9a6a7fb91a64d3"
"url": "https://ftp.drupal.org/files/projects/pantheon_advanced_page_cache-2.1.2.zip",
"reference": "2.1.2",
"shasum": "954aa3442824fb88da3fd3518400cf008e12a8d1"
},
"require": {
"drupal/core": "^9.4 || ^10"
......@@ -6132,8 +6132,8 @@
"type": "drupal-module",
"extra": {
"drupal": {
"version": "2.1.1",
"datestamp": "1669644382",
"version": "2.1.2",
"datestamp": "1683747792",
"security-coverage": {
"status": "covered",
"message": "Covered by Drupal's security advisory policy"
......@@ -6170,6 +6170,10 @@
"name": "David Strauss",
"homepage": "https://www.drupal.org/user/93254"
},
{
"name": "Ec1ipsis",
"homepage": "https://www.drupal.org/user/1600400"
},
{
"name": "greg.1.anderson",
"homepage": "https://www.drupal.org/user/438598"
......
......@@ -3,7 +3,7 @@
'name' => 'osu-asc-webservices/d8-upstream',
'pretty_version' => 'dev-master',
'version' => 'dev-master',
'reference' => 'c629717db4e2d5be09fbc10430795d89206aa400',
'reference' => 'ea04f2587e6e599768b72728086e81207687e4e3',
'type' => 'project',
'install_path' => __DIR__ . '/../../',
'aliases' => array(),
......@@ -1010,9 +1010,9 @@
'dev_requirement' => false,
),
'drupal/pantheon_advanced_page_cache' => array(
'pretty_version' => '2.1.1',
'version' => '2.1.1.0',
'reference' => '2.1.1',
'pretty_version' => '2.1.2',
'version' => '2.1.2.0',
'reference' => '2.1.2',
'type' => 'drupal-module',
'install_path' => __DIR__ . '/../../web/modules/pantheon_advanced_page_cache',
'aliases' => array(),
......@@ -1546,7 +1546,7 @@
'osu-asc-webservices/d8-upstream' => array(
'pretty_version' => 'dev-master',
'version' => 'dev-master',
'reference' => 'c629717db4e2d5be09fbc10430795d89206aa400',
'reference' => 'ea04f2587e6e599768b72728086e81207687e4e3',
'type' => 'project',
'install_path' => __DIR__ . '/../../',
'aliases' => array(),
......
name: Mirror to Drupal.org
name: Pantheon Advanced Page Cache
on:
push:
jobs:
phpcompatibility:
runs-on: ubuntu-latest
name: PHP Compatibility
steps:
- name: Checkout
uses: actions/checkout@v2
- name: PHPCompatibility
uses: pantheon-systems/phpcompatibility-action@v1
with:
test-versions: 7.4-
mirror:
runs-on: ubuntu-latest
name: Checkout & push to remote
needs: [phpcompatibility]
if: ${{ github.repository == 'pantheon-systems/pantheon_advanced_page_cache' }}
env:
BRANCH: ${{ github.ref_name }}
......
......@@ -4,7 +4,7 @@ package: Performance and scalability
type: module
core_version_requirement: ^9.4 || ^10
# Information added by Drupal.org packaging script on 2022-11-28
version: '2.1.1'
# Information added by Drupal.org packaging script on 2023-05-10
version: '2.1.2'
project: 'pantheon_advanced_page_cache'
datestamp: 1669644385
datestamp: 1683747795
......@@ -33,7 +33,8 @@ public function invalidateTags(array $tags) {
// and therefore lots of cached pages.
'/core/install.php',
];
if (in_array($this->requestStack->getCurrentRequest()->getBaseUrl(), $do_not_run_urls)) {
$current_request = $this->requestStack->getCurrentRequest();
if ($current_request && in_array($current_request->getBaseUrl(), $do_not_run_urls)) {
return;
}
if (function_exists('pantheon_clear_edge_keys')) {
......
......@@ -4,7 +4,7 @@ package: Testing
type: module
core_version_requirement: ^9.4 || ^10
# Information added by Drupal.org packaging script on 2022-11-28
version: '2.1.1'
# Information added by Drupal.org packaging script on 2023-05-10
version: '2.1.2'
project: 'pantheon_advanced_page_cache'
datestamp: 1669644385
datestamp: 1683747795
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment