Skip to content

Commit c77aebc

Browse files
chore: release v2.1.0
1 parent 2baf9f7 commit c77aebc

File tree

14 files changed

+8830
-8774
lines changed

14 files changed

+8830
-8774
lines changed

assets/yoastseo.js

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

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "johannschopplich/kirby-seo-audit",
33
"description": "State-of-the-art SEO analysis for Kirby CMS",
44
"type": "kirby-plugin",
5-
"version": "2.0.3",
5+
"version": "2.1.0",
66
"keywords": [
77
"getkirby",
88
"kirby",

composer.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "kirby-seo-audit",
33
"type": "module",
4-
"version": "2.0.3",
4+
"version": "2.1.0",
55
"private": true,
66
"packageManager": "pnpm@10.12.3",
77
"scripts": {

vendor/autoload.php

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,7 @@
1414
echo $err;
1515
}
1616
}
17-
trigger_error(
18-
$err,
19-
E_USER_ERROR
20-
);
17+
throw new RuntimeException($err);
2118
}
2219

2320
require_once __DIR__ . '/composer/autoload_real.php';

vendor/composer/InstalledVersions.php

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,12 @@
2626
*/
2727
class InstalledVersions
2828
{
29+
/**
30+
* @var string|null if set (by reflection by Composer), this should be set to the path where this class is being copied to
31+
* @internal
32+
*/
33+
private static $selfDir = null;
34+
2935
/**
3036
* @var mixed[]|null
3137
* @psalm-var array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>}|array{}|null
@@ -322,6 +328,18 @@ public static function reload($data)
322328
self::$installedIsLocalDir = false;
323329
}
324330

331+
/**
332+
* @return string
333+
*/
334+
private static function getSelfDir()
335+
{
336+
if (self::$selfDir === null) {
337+
self::$selfDir = strtr(__DIR__, '\\', '/');
338+
}
339+
340+
return self::$selfDir;
341+
}
342+
325343
/**
326344
* @return array[]
327345
* @psalm-return list<array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>}>
@@ -336,7 +354,7 @@ private static function getInstalled()
336354
$copiedLocalDir = false;
337355

338356
if (self::$canGetVendors) {
339-
$selfDir = strtr(__DIR__, '\\', '/');
357+
$selfDir = self::getSelfDir();
340358
foreach (ClassLoader::getRegisteredLoaders() as $vendorDir => $loader) {
341359
$vendorDir = strtr($vendorDir, '\\', '/');
342360
if (isset(self::$installedByVendor[$vendorDir])) {

vendor/composer/autoload_classmap.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
return array(
99
'Composer\\InstalledVersions' => $vendorDir . '/composer/InstalledVersions.php',
1010
'JohannSchopplich\\Licensing\\Licenses' => $vendorDir . '/johannschopplich/kirby-tools-licensing/src/Licenses.php',
11+
'JohannSchopplich\\Licensing\\PluginLicense' => $vendorDir . '/johannschopplich/kirby-tools-licensing/src/PluginLicense.php',
1112
'Kirby\\ComposerInstaller\\CmsInstaller' => $vendorDir . '/getkirby/composer-installer/src/ComposerInstaller/CmsInstaller.php',
1213
'Kirby\\ComposerInstaller\\Installer' => $vendorDir . '/getkirby/composer-installer/src/ComposerInstaller/Installer.php',
1314
'Kirby\\ComposerInstaller\\Plugin' => $vendorDir . '/getkirby/composer-installer/src/ComposerInstaller/Plugin.php',

vendor/composer/autoload_static.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ class ComposerStaticInit3e118550e09fa4bd12cae71292360377
3131
public static $classMap = array (
3232
'Composer\\InstalledVersions' => __DIR__ . '/..' . '/composer/InstalledVersions.php',
3333
'JohannSchopplich\\Licensing\\Licenses' => __DIR__ . '/..' . '/johannschopplich/kirby-tools-licensing/src/Licenses.php',
34+
'JohannSchopplich\\Licensing\\PluginLicense' => __DIR__ . '/..' . '/johannschopplich/kirby-tools-licensing/src/PluginLicense.php',
3435
'Kirby\\ComposerInstaller\\CmsInstaller' => __DIR__ . '/..' . '/getkirby/composer-installer/src/ComposerInstaller/CmsInstaller.php',
3536
'Kirby\\ComposerInstaller\\Installer' => __DIR__ . '/..' . '/getkirby/composer-installer/src/ComposerInstaller/Installer.php',
3637
'Kirby\\ComposerInstaller\\Plugin' => __DIR__ . '/..' . '/getkirby/composer-installer/src/ComposerInstaller/Plugin.php',

vendor/composer/installed.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -52,23 +52,23 @@
5252
},
5353
{
5454
"name": "johannschopplich/kirby-tools-licensing",
55-
"version": "0.7.0",
56-
"version_normalized": "0.7.0.0",
55+
"version": "0.7.2",
56+
"version_normalized": "0.7.2.0",
5757
"source": {
5858
"type": "git",
5959
"url": "https://github.com/kirby-tools/licensing-backend.git",
60-
"reference": "d8b469f7ab0f38b9540c2f20d85ed3a962b5f343"
60+
"reference": "186b5a066d16bd78075b3f4a413567835de3f940"
6161
},
6262
"dist": {
6363
"type": "zip",
64-
"url": "https://api.github.com/repos/kirby-tools/licensing-backend/zipball/d8b469f7ab0f38b9540c2f20d85ed3a962b5f343",
65-
"reference": "d8b469f7ab0f38b9540c2f20d85ed3a962b5f343",
64+
"url": "https://api.github.com/repos/kirby-tools/licensing-backend/zipball/186b5a066d16bd78075b3f4a413567835de3f940",
65+
"reference": "186b5a066d16bd78075b3f4a413567835de3f940",
6666
"shasum": ""
6767
},
6868
"require-dev": {
69-
"getkirby/cms": "^4"
69+
"getkirby/cms": "^5"
7070
},
71-
"time": "2024-12-26T09:48:09+00:00",
71+
"time": "2025-06-24T15:04:04+00:00",
7272
"type": "library",
7373
"extra": {
7474
"kirby-cms-path": false
@@ -90,11 +90,11 @@
9090
"homepage": "https://johannschopplich.com"
9191
}
9292
],
93-
"description": "Shared tooling for Kirby Tools licensing in Kirby",
93+
"description": "License system backend for Kirby Tools plugins",
9494
"homepage": "https://github.com/kirby-tools/licensing-backend#readme",
9595
"support": {
9696
"issues": "https://github.com/kirby-tools/licensing-backend/issues",
97-
"source": "https://github.com/kirby-tools/licensing-backend/tree/v0.7.0"
97+
"source": "https://github.com/kirby-tools/licensing-backend/tree/v0.7.2"
9898
},
9999
"install-path": "../johannschopplich/kirby-tools-licensing"
100100
}

0 commit comments

Comments
 (0)