Skip to content

Commit

Permalink
chore: bump WP core, plugins (#288)
Browse files Browse the repository at this point in the history
  • Loading branch information
ccorda authored Aug 10, 2023
1 parent d6f7c3f commit 262de73
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 20 deletions.
28 changes: 14 additions & 14 deletions wordpress/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,33 +13,33 @@
"composer/installers": true
},
"platform": {
"php": "7.4.21"
"php": "8.0.28"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=7.3",
"php": ">=8.0",
"composer/installers": "^1.8",
"advanced-custom-fields/advanced-custom-fields-pro": "6.0.7",
"advanced-custom-fields/advanced-custom-fields-pro": "6.1.8",
"wpackagist-plugin/acf-repeater-flexible-content-collapser": "1.2.6",
"wpackagist-plugin/duplicate-post": "4.5",
"wpackagist-plugin/enable-media-replace": "4.0.2",
"wpackagist-plugin/enable-media-replace": "4.1.2",
"wpackagist-plugin/filter-page-by-template": "3.1",
"wpackagist-plugin/google-apps-login": "3.4.5",
"wpackagist-plugin/google-apps-login": "3.4.6",
"wpackagist-plugin/post-type-archive-links": "1.3.1",
"wpackagist-plugin/post-type-switcher": "3.2.1",
"wpackagist-plugin/redirection": "5.3.9",
"wpackagist-plugin/safe-svg": "2.0.3",
"wpackagist-plugin/simple-history": "3.4.0",
"wpackagist-plugin/so-clean-up-wp-seo": "3.14.13",
"wpackagist-plugin/redirection": "5.3.10",
"wpackagist-plugin/safe-svg": "2.1.1",
"wpackagist-plugin/simple-history": "4.4.0",
"wpackagist-plugin/so-clean-up-wp-seo": "4.0.1",
"wpackagist-plugin/term-management-tools": "2.0.1",
"wpackagist-plugin/wordpress-seo": "20.1",
"wpackagist-plugin/wp-graphql": "1.13.8",
"wpackagist-plugin/wp-stateless": "3.2.2",
"wpackagist-plugin/wordpress-seo": "20.13",
"wpackagist-plugin/wp-graphql": "1.14.10",
"wpackagist-plugin/wp-stateless": "3.2.4",
"wp-graphql/wp-graphql-acf": "0.6.1",
"wp-graphql/wp-graphql-tax-query": "0.1.0",
"ashhitch/wp-graphql-yoast-seo": "4.22.0",
"ashhitch/wp-graphql-yoast-seo": "4.22.5",
"ashhitch/wp-graphql-redirection": "^0.0.3"
},
"repositories": [
Expand All @@ -55,7 +55,7 @@
"type": "package",
"package": {
"name": "advanced-custom-fields/advanced-custom-fields-pro",
"version": "6.0.7",
"version": "6.1.8",
"type": "wordpress-plugin",
"dist": {
"type": "zip",
Expand Down
13 changes: 7 additions & 6 deletions wordpress/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
version: "3.3"
version: '3.3'

services:
db:
image: mariadb:10.7
ports:
- "3307:3306"
- '3307:3306'
volumes:
- db_data:/var/lib/mysql
restart: "no"
restart: 'no'
environment:
MYSQL_ROOT_PASSWORD: somewordpress
MYSQL_DATABASE: ${COMPOSE_PROJECT_NAME:-bubsnext}
Expand All @@ -17,13 +17,14 @@ services:
wordpress:
depends_on:
- db
image: wordpress:6.1.1
image: wordpress:6.2.2
ports:
- "8000:80"
- '8000:80'
volumes:
- ./wp-content:/var/www/html/wp-content
- ./.htaccess:/var/www/html/.htaccess
restart: "no"
restart: 'no'

environment:
WORDPRESS_DB_HOST: db:3306
WORDPRESS_DB_USER: root
Expand Down

0 comments on commit 262de73

Please sign in to comment.