Skip to content

Commit

Permalink
Merge branch 'release/2.5.8' into craft-vite
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Welch committed Apr 13, 2022
2 parents 8021aa8 + 700695c commit ec3f32b
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 6 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# nystudio107/craft Change Log

## 2.5.8 - 2022.04.13
### Fixed
* Changed the hostname from `mysql` to `mariadb` in the `composer_install.sh` and `run_queue.sh` scripts, since we're using MariaDB

### Changed
* Use `"eslint": "^7.0.0"` to avoid package version conflicts with `vite-plugin-eslint`
* Add correct at-rule-no-unknown config ([#80](https://github.com/nystudio107/craft/pull/80))

## 2.5.7 - 2022.04.08
### Changed
* Run migrations first via `composer.json` scripts, because Craft won't apply Project Config if there are pending migrations
Expand Down
6 changes: 3 additions & 3 deletions buildchain/.stylelintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
"stylelint-config-recommended-vue"
],
"rules": {
"at-rule-no-unknown": [ true, {
"at-rule-no-unknown": null,
"scss/at-rule-no-unknown": [ true, {
"ignoreAtRules": [
"apply",
"extends",
"screen",
"extends",
"responsive",
"tailwind"
]
Expand Down
2 changes: 1 addition & 1 deletion buildchain/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"@vitejs/plugin-vue": "^1.2.2",
"@vue/compiler-sfc": "^3.0.5",
"autoprefixer": "^10.4.0",
"eslint": "^8.0.0",
"eslint": "^7.0.0",
"eslint-plugin-vue": "^8.0.0",
"postcss": "^8.4.0",
"rollup-plugin-critical": "^1.0.4",
Expand Down
2 changes: 1 addition & 1 deletion docker-config/php-prod-craft/composer_install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ if [ ! -f "composer.lock" ] || [ ! -d "vendor" ]; then
su-exec www-data composer install --verbose --no-progress --no-scripts --optimize-autoloader --no-interaction
# Wait until the MySQL db container responds
echo "### Waiting for MySQL database"
until eval "mysql -h mysql -u $DB_USER -p$DB_PASSWORD $DB_DATABASE -e 'select 1' > /dev/null 2>&1"
until eval "mysql -h mariadb -u $DB_USER -p$DB_PASSWORD $DB_DATABASE -e 'select 1' > /dev/null 2>&1"
do
sleep 1
done
Expand Down
2 changes: 1 addition & 1 deletion docker-config/php-prod-craft/run_queue.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
cd /var/www/project/cms
# Wait until the MySQL db container responds
echo "### Waiting for MySQL database"
until eval "mysql -h mysql -u $DB_USER -p$DB_PASSWORD $DB_DATABASE -e 'select 1' > /dev/null 2>&1"
until eval "mysql -h mariadb -u $DB_USER -p$DB_PASSWORD $DB_DATABASE -e 'select 1' > /dev/null 2>&1"
do
sleep 1
done
Expand Down

0 comments on commit ec3f32b

Please sign in to comment.