Skip to content

Commit

Permalink
Merge branch 'release/5.0.0' into v5
Browse files Browse the repository at this point in the history
  • Loading branch information
khalwat committed Apr 16, 2024
2 parents c58a11e + 41be692 commit 264d20b
Show file tree
Hide file tree
Showing 132 changed files with 2,750 additions and 1,812 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Webperf Changelog

## 5.0.0 - 2024.04.16
### Added
* Stable release for Craft CMS 5

### Fixed
* Fixed an issue where the down and up arrows were reversed for sorting purposes

## 5.0.0-beta.3 - 2024.02.09
### Fixed
* Fixed an issue with the Sites menu styling
Expand Down
879 changes: 441 additions & 438 deletions buildchain/package-lock.json

Large diffs are not rendered by default.

6 changes: 4 additions & 2 deletions buildchain/src/css/components/tables.css
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,13 @@ table.vuetable {
}

.webperf-menubtn-asc::after {
content: "downangle";
font-weight: bold;
content: "upangle";
}

.webperf-menubtn-desc::after {
content: "upangle";
font-weight: bold;
content: "downangle";
}

/**
Expand Down
15 changes: 9 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@
"name": "nystudio107/craft-webperf",
"description": "Webperf helps you build & maintain high quality websites through Real User Measurement of your website's performance",
"type": "craft-plugin",
"version": "5.0.0-beta.3",
"version": "5.0.0",
"minimum-stability": "dev",
"prefer-stable": true,
"keywords": [
"craft",
"cms",
Expand All @@ -23,8 +25,9 @@
}
],
"require": {
"craftcms/cms": "^5.0.0-beta.1",
"nystudio107/craft-plugin-vite": "^5.0.0-beta.1",
"php": "^8.2",
"craftcms/cms": "^5.0.0",
"nystudio107/craft-plugin-vite": "^5.0.0",
"jaybizzle/crawler-detect": "^1.2.37",
"league/csv": "^8.2 || ^9.0",
"whichbrowser/parser": "^2.0.37"
Expand All @@ -33,9 +36,9 @@
"craftcms/ecs": "dev-main",
"craftcms/phpstan": "dev-main",
"craftcms/rector": "dev-main",
"nystudio107/craft-minify": "^5.0.0-beta.1",
"nystudio107/craft-seomatic": "^5.0.0-beta.1",
"putyourlightson/craft-blitz": "^5.0.0-beta.1"
"nystudio107/craft-minify": "^5.0.0",
"nystudio107/craft-seomatic": "^5.0.0",
"putyourlightson/craft-blitz": "^5.0.0"
},
"scripts": {
"phpstan": "phpstan --ansi --memory-limit=2G",
Expand Down
5 changes: 4 additions & 1 deletion docs/docs/.vitepress/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,10 @@ export default defineConfig({
algolia: {
appId: 'T6JC4YE35L',
apiKey: '071b68301938ade2178101974f60c3ac',
indexName: 'webperf'
indexName: 'webperf',
searchParameters: {
facetFilters: ["version:v5"],
},
},
lastUpdatedText: 'Last Updated',
sidebar: [
Expand Down
1,837 changes: 1,369 additions & 468 deletions docs/package-lock.json

Large diffs are not rendered by default.

5 changes: 2 additions & 3 deletions phpstan.neon
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,5 @@ parameters:
paths:
- src
excludePaths:
- src/lib/*
ignoreErrors:
- '#Function getCountryFromIP not found\.#'
analyse:
- src/lib/*
1 change: 0 additions & 1 deletion src/helpers/PluginTemplate.php
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,6 @@ public static function renderPluginTemplate(
/** @var Minify|null $minify */
$minify = Craft::$app->getPlugins()->getPlugin(self::MINIFY_PLUGIN_HANDLE);
if ($minify) {
/** @phpstan-ignore-next-line */
$htmlText = $minify->minify->$minifier($htmlText);
}
}
Expand Down
Binary file not shown.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file not shown.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file not shown.
Binary file not shown.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file not shown.
Loading

0 comments on commit 264d20b

Please sign in to comment.