Skip to content

Commit

Permalink
Autoupdated submodule pointer
Browse files Browse the repository at this point in the history
  • Loading branch information
rtfm-47 committed Mar 29, 2024
1 parent c421719 commit 888bb67
Show file tree
Hide file tree
Showing 44 changed files with 44 additions and 44 deletions.
2 changes: 1 addition & 1 deletion cli
Submodule cli updated 347 files
2 changes: 1 addition & 1 deletion core
Submodule core updated 72 files
+1 −0 .eslintignore
+16 −17 .github/workflows/pr-core-tests.yml
+1 −1 .github/workflows/pr-linter.yml
+14 −34 .github/workflows/pr-plugin-tests.yml
+8 −22 .github/workflows/pr-setup-linux-tests.yml
+58 −0 .github/workflows/pr-setup-macos-tests.yml
+95 −0 .github/workflows/pr-setup-windows-tests.yml
+3 −2 .github/workflows/pr-unit-tests.yml
+5 −2 .github/workflows/release.yml
+72 −1 CHANGELOG.md
+3 −0 app.js
+17 −4 components/plugin.js
+4 −1 config.yml
+9 −0 docs/.vitepress/config.mjs
+4 −0 examples/experimental/.lando.yml
+41 −0 examples/experimental/README.md
+1 −0 examples/orchestrator/README.md
+2 −2 examples/plugin-commands/README.md
+18 −0 examples/setup-linux/.lando.yml
+27 −0 examples/setup-linux/README.md
+1 −0 examples/setup-linux/index.html
+18 −0 examples/setup-macos/.lando.yml
+23 −0 examples/setup-macos/README.md
+1 −0 examples/setup-macos/index.html
+18 −0 examples/setup-windows/.lando.yml
+16 −0 examples/setup-windows/README.md
+1 −0 examples/setup-windows/index.html
+0 −31 examples/setup/README.md
+17 −0 experimental/lando-experimental/package.json
+2 −1 hooks/app-check-docker-compat.js
+16 −0 hooks/app-check-legacy-plugins.js
+1 −1 hooks/lando-autostart-engine.js
+2 −1 hooks/lando-setup-build-engine-darwin.js
+2 −2 hooks/lando-setup-build-engine-linux.js
+6 −8 hooks/lando-setup-build-engine-win32.js
+14 −8 lib/engine.js
+12 −3 lib/events.js
+2 −2 lib/lando.js
+28 −22 lib/updates.js
+17 −0 messages/legacy-plugin-notice.js
+2 −2 messages/unsupported-version-warning.js
+13 −0 messages/untested-version-notice.js
+62 −272 package-lock.json
+2 −2 package.json
+7 −0 scripts/install-docker-desktop.ps1
+1 −1 tasks/setup.js
+31 −7 tasks/shellenv.js
+6 −2 tasks/update.js
+1 −0 utils/download-x.js
+2 −1 utils/get-bin-paths.js
+1 −1 utils/get-compose-x.js
+2 −2 utils/get-config-defaults.js
+0 −30 utils/get-global-shell-profile.js
+16 −0 utils/get-path-string.js
+6 −0 utils/get-posixbin-contents.js
+17 −0 utils/get-pwsh-profile.js
+4 −1 utils/get-shell-profile.js
+32 −9 utils/get-shellenv.js
+30 −0 utils/get-system-shell-profile.js
+29 −23 utils/get-user-shell-profile.js
+22 −0 utils/get-user-shell.js
+8 −0 utils/get-winbin-contents.js
+36 −0 utils/get-wsl-status.js
+4 −1 utils/is-admin-user.js
+10 −4 utils/is-group-member.js
+39 −0 utils/link-bin.js
+3 −2 utils/parse-setup-task.js
+9 −5 utils/run-command.js
+11 −4 utils/run-elevated.js
+7 −1 utils/run-powershell-script.js
+8 −0 utils/update-shell-profile.js
+1 −1 utils/write-file.js
2 changes: 1 addition & 1 deletion core-next
Submodule core-next updated 243 files
2 changes: 1 addition & 1 deletion docs
Submodule docs updated 158 files
2 changes: 1 addition & 1 deletion events
2 changes: 1 addition & 1 deletion plugins/acquia
Submodule acquia updated 70 files
+3 −2 .eslintignore
+11 −9 .github/workflows/pr-docs-tests.yml
+33 −44 .github/workflows/pr-drupal-tests.yml
+7 −7 .github/workflows/pr-linter.yml
+7 −7 .github/workflows/pr-unit-tests.yml
+17 −8 .github/workflows/release.yml
+8 −4 .gitignore
+3 −3 .lando.yml
+1 −1 .node-version
+35 −0 CHANGELOG.md
+17 −17 app.js
+266 −0 builders/acquia-base.js
+15 −0 builders/acquia-mailhog.js
+15 −0 builders/acquia-mariadb.js
+15 −0 builders/acquia-memcached.js
+15 −0 builders/acquia-mysql.js
+32 −0 builders/acquia-php.js
+15 −0 builders/acquia-postgres.js
+12 −7 builders/acquia.js
+0 −0 config/acquia-settings.inc
+110 −0 config/mysql.cnf
+105 −0 config/mysql8.cnf
+9 −0 docs/.eslintrc.json
+60 −0 docs/.vitepress/config.mjs
+3 −0 docs/.vitepress/theme/index.mjs
+0 −57 docs/.vuepress/config.js
+7 −7 docs/config.md
+30 −46 docs/development.md
+8 −8 docs/getting-started.md
+26 −0 docs/guides.md
+2 −1 docs/guides/connecting-database.md
+2 −1 docs/guides/manually-importing-databases.md
+45 −0 docs/install.md
+0 −0 docs/public/.!76766!favicon.ico
+0 −0 docs/public/contact.html
+ docs/public/favicon.ico
+0 −0 docs/public/favicon.svg
+ docs/public/images/acquiaicon.png
+ docs/public/images/icon.png
+0 −0 docs/public/images/icon.svg
+ docs/public/images/logo.png
+0 −0 docs/public/images/logo.svg
+5 −15 docs/support.md
+2 −2 docs/sync.md
+25 −0 docs/team.md
+1 −1 docs/tooling.md
+3 −0 examples/.lando.yml
+11 −0 examples/acquia-custom/.lando.yml
+56 −0 examples/acquia-custom/README.md
+12 −0 examples/acquia-downstreamer-1/.lando.yml
+44 −0 examples/acquia-downstreamer-1/README.md
+1 −0 examples/acquia-downstreamer-1/index.php
+1 −0 examples/acquia-downstreamer-1/info.php
+12 −0 examples/acquia-downstreamer-2/.lando.yml
+44 −0 examples/acquia-downstreamer-2/README.md
+1 −0 examples/acquia-downstreamer-2/index.php
+1 −0 examples/acquia-downstreamer-2/info.php
+7 −2 examples/drupal/README.md
+78 −74 inits/acquia.js
+31 −31 lib/api.js
+10 −10 lib/pull.js
+11 −11 lib/push.js
+42 −9 lib/utils.js
+13 −0 lib/warnings.js
+20 −5 netlify.toml
+7,458 −0 package-lock.json
+28 −23 package.json
+19 −0 scripts/acquia-wait-for-user.sh
+6 −6 test/auth.spec.js
+0 −4,608 yarn.lock
2 changes: 1 addition & 1 deletion plugins/backdrop
Submodule backdrop updated 109 files
2 changes: 1 addition & 1 deletion plugins/drupal
Submodule drupal updated 135 files
2 changes: 1 addition & 1 deletion plugins/joomla
Submodule joomla updated 95 files
+3 −2 .eslintignore
+9 −9 .github/workflows/pr-docs-tests.yml
+40 −53 .github/workflows/pr-joomla-tests.yml
+7 −7 .github/workflows/pr-linter.yml
+8 −7 .github/workflows/pr-unit-tests.yml
+17 −8 .github/workflows/release.yml
+8 −4 .gitignore
+3 −3 .lando.yml
+1 −1 .node-version
+46 −0 CHANGELOG.md
+0 −12 actions-lando-config.yml
+15 −0 builders/joomla-mariadb.js
+15 −0 builders/joomla-mssql.js
+15 −0 builders/joomla-mysql.js
+18 −0 builders/joomla-nginx.js
+32 −0 builders/joomla-php.js
+15 −0 builders/joomla-postgres.js
+230 −0 builders/joomla.js
+2 −0 config/default.conf.tpl
+111 −0 config/mysql.cnf
+106 −0 config/mysql8.cnf
+50 −0 config/php.ini
+9 −0 docs/.eslintrc.json
+58 −0 docs/.vitepress/config.mjs
+3 −0 docs/.vitepress/theme/index.mjs
+0 −42 docs/.vuepress/config.js
+11 −11 docs/config.md
+29 −44 docs/development.md
+4 −39 docs/getting-started.md
+2 −2 docs/index.md
+45 −0 docs/install.md
+0 −0 docs/public/.!77839!favicon.ico
+0 −0 docs/public/contact.html
+ docs/public/favicon.ico
+0 −0 docs/public/favicon.svg
+ docs/public/images/icon.png
+0 −0 docs/public/images/icon.svg
+ docs/public/images/joomlaicon.png
+ docs/public/images/logo.png
+0 −0 docs/public/images/logo.svg
+5 −15 docs/support.md
+25 −0 docs/team.md
+2 −2 docs/tooling.md
+2 −0 examples/.lando.local.yml
+18 −0 examples/joomla-custom/.lando.yml
+61 −0 examples/joomla-custom/README.md
+1 −0 examples/joomla-custom/bob/index.php
+1 −0 examples/joomla-custom/bob/info.php
+41 −0 examples/joomla-custom/config/default.conf
+2 −2 examples/joomla-custom/config/mysql.cnf
+1 −1 examples/joomla-custom/config/php.ini
+6 −0 examples/joomla-defaults/.lando.yml
+62 −0 examples/joomla-defaults/README.md
+1 −0 examples/joomla-defaults/index.php
+1 −0 examples/joomla-defaults/info.php
+11 −0 examples/joomla-downstreamer-1/.lando.yml
+44 −0 examples/joomla-downstreamer-1/README.md
+1 −0 examples/joomla-downstreamer-1/index.php
+1 −0 examples/joomla-downstreamer-1/info.php
+11 −0 examples/joomla-downstreamer-2/.lando.yml
+44 −0 examples/joomla-downstreamer-2/README.md
+1 −0 examples/joomla-downstreamer-2/index.php
+1 −0 examples/joomla-downstreamer-2/info.php
+4 −0 examples/joomla-export/.gitignore
+6 −0 examples/joomla-export/.lando.yml
+61 −0 examples/joomla-export/README.md
+1 −0 examples/joomla-export/index.php
+1 −0 examples/joomla-export/info.php
+59 −0 examples/joomla-export/mysql-test.sql
+12 −0 examples/joomla-import/.lando.yml
+56 −0 examples/joomla-import/README.md
+24 −0 examples/joomla-import/big-bad-dump.sql
+1 −0 examples/joomla-import/index.php
+1 −0 examples/joomla-import/info.php
+59 −0 examples/joomla-import/mysql-test.sql
+59 −0 examples/joomla-import/subdir/test.sql
+4 −0 examples/joomla-import/test.sh
+0 −0 examples/joomla-init/.gitignore
+69 −0 examples/joomla-init/README.md
+1 −0 examples/joomla-mysql8/.gitignore
+15 −15 examples/joomla-mysql8/README.md
+10 −0 examples/joomla-mysql8/symfony-mysql8/.lando.yml
+54 −0 examples/joomla-mysql8/symfony-mysql8/README.md
+1 −0 examples/joomla-mysql8/symfony-mysql8/web/index.php
+1 −0 examples/joomla-mysql8/symfony-mysql8/web/info.php
+15 −0 examples/joomla-nginx/.lando.yml
+46 −0 examples/joomla-nginx/README.md
+1 −0 examples/joomla-nginx/web/index.php
+1 −0 examples/joomla-nginx/web/info.php
+0 −0 inits/joomla.js
+20 −5 netlify.toml
+7,636 −0 package-lock.json
+17 −14 package.json
+0 −35 recipes/joomla/builder.js
+0 −4,596 yarn.lock
2 changes: 1 addition & 1 deletion plugins/lagoon
Submodule lagoon updated 85 files
+3 −2 .eslintignore
+68 −0 .github/workflows/pr-all-services.yml
+11 −9 .github/workflows/pr-docs-tests.yml
+0 −67 .github/workflows/pr-drupal-example-simple-tests.yml
+60 −0 .github/workflows/pr-drupal9-base.yml
+7 −7 .github/workflows/pr-linter.yml
+67 −0 .github/workflows/pr-proxy-tests.yml
+7 −7 .github/workflows/pr-unit-tests.yml
+17 −8 .github/workflows/release.yml
+8 −4 .gitignore
+3 −3 .lando.yml
+1 −1 .node-version
+33 −0 CHANGELOG.md
+0 −1 README.md
+0 −0 builders/_lagoon.js
+37 −0 builders/lagoon-basic.js
+0 −0 builders/lagoon-elasticsearch.js
+15 −0 builders/lagoon-mailhog.js
+1 −1 builders/lagoon-mariadb.js
+0 −0 builders/lagoon-nginx.js
+31 −0 builders/lagoon-node.js
+0 −0 builders/lagoon-none.js
+0 −0 builders/lagoon-php-cli.js
+0 −0 builders/lagoon-php.js
+1 −1 builders/lagoon-postgresql.js
+31 −0 builders/lagoon-python.js
+0 −0 builders/lagoon-redis.js
+31 −0 builders/lagoon-ruby.js
+2 −2 builders/lagoon-solr.js
+0 −0 builders/lagoon-varnish.js
+6 −6 builders/lagoon.js
+9 −0 docs/.eslintrc.json
+59 −0 docs/.vitepress/config.mjs
+3 −0 docs/.vitepress/theme/index.mjs
+0 −53 docs/.vuepress/config.js
+29 −17 docs/config.md
+30 −45 docs/development.md
+0 −32 docs/external-access.md
+2 −37 docs/getting-started.md
+45 −0 docs/install.md
+0 −0 docs/public/.!77952!favicon.ico
+0 −0 docs/public/contact.html
+ docs/public/favicon.ico
+0 −0 docs/public/favicon.svg
+ docs/public/images/icon.png
+0 −0 docs/public/images/icon.svg
+ docs/public/images/lagoon-icon.png
+ docs/public/images/logo.png
+0 −0 docs/public/images/logo.svg
+5 −15 docs/support.md
+25 −0 docs/team.md
+1 −1 docs/tooling.md
+0 −0 examples/all-services/.gitignore
+1 −0 examples/all-services/.lagoon.yml
+22 −0 examples/all-services/.lando.yml
+19 −0 examples/all-services/Dockerfile
+79 −0 examples/all-services/README.md
+82 −0 examples/all-services/docker-compose.yml
+13 −0 examples/all-services/index.js
+13 −0 examples/all-services/package.json
+475 −0 examples/all-services/yarn.lock
+0 −0 examples/drupal9-base/.gitignore
+2 −0 examples/drupal9-base/.lando.local.yml
+8 −8 examples/drupal9-base/README.md
+0 −0 examples/proxy-tests/.gitignore
+1 −0 examples/proxy-tests/.lagoon.yml
+20 −0 examples/proxy-tests/.lando.yml
+19 −0 examples/proxy-tests/Dockerfile
+77 −0 examples/proxy-tests/README.md
+57 −0 examples/proxy-tests/docker-compose.yml
+13 −0 examples/proxy-tests/index.js
+13 −0 examples/proxy-tests/package.json
+475 −0 examples/proxy-tests/yarn.lock
+1 −1 index.js
+3 −2 inits/lagoon.js
+161 −14 lib/proxy.js
+9 −5 lib/services.js
+17 −3 lib/tooling.js
+25 −6 netlify.toml
+7,445 −0 package-lock.json
+13 −15 package.json
+91 −0 scripts/lagoon-sql-export.sh
+161 −0 scripts/lagoon-sql-import.sh
+19 −0 scripts/lagoon-wait-for-user.sh
+0 −4,613 yarn.lock
2 changes: 1 addition & 1 deletion plugins/lamp
Submodule lamp updated 98 files
+3 −2 .eslintignore
+12 −9 .github/workflows/pr-docs-tests.yml
+41 −46 .github/workflows/pr-lamp-tests.yml
+7 −7 .github/workflows/pr-linter.yml
+8 −7 .github/workflows/pr-unit-tests.yml
+15 −6 .github/workflows/release.yml
+8 −4 .gitignore
+3 −3 .lando.yml
+1 −1 .node-version
+51 −0 CHANGELOG.md
+0 −14 actions-lando-config.yml
+15 −0 builders/lamp-mariadb.js
+15 −0 builders/lamp-mongo.js
+15 −0 builders/lamp-mssql.js
+15 −0 builders/lamp-mysql.js
+18 −0 builders/lamp-nginx.js
+32 −0 builders/lamp-php.js
+15 −0 builders/lamp-postgres.js
+224 −0 builders/lamp.js
+68 −0 config/default.conf.tpl
+110 −0 config/mysql.cnf
+105 −0 config/mysql8.cnf
+49 −0 config/php.ini
+18 −0 copy-examples.sh
+9 −0 docs/.eslintrc.json
+58 −0 docs/.vitepress/config.mjs
+3 −0 docs/.vitepress/theme/index.mjs
+0 −42 docs/.vuepress/config.js
+10 −10 docs/config.md
+30 −45 docs/development.md
+3 −38 docs/getting-started.md
+3 −3 docs/index.md
+45 −0 docs/install.md
+0 −0 docs/public/.!78124!favicon.ico
+0 −0 docs/public/contact.html
+ docs/public/favicon.ico
+0 −0 docs/public/favicon.svg
+ docs/public/images/icon.png
+0 −0 docs/public/images/icon.svg
+ docs/public/images/lampicon.png
+ docs/public/images/logo.png
+0 −0 docs/public/images/logo.svg
+5 −15 docs/support.md
+25 −0 docs/team.md
+3 −3 docs/tooling.md
+2 −0 examples/.lando.local.yml
+2 −0 examples/.lando.upstream.yml
+3 −0 examples/.lando.yml
+24 −0 examples/lamp-custom/.lando.yml
+71 −0 examples/lamp-custom/README.md
+1 −0 examples/lamp-custom/bob/index.php
+1 −0 examples/lamp-custom/bob/info.php
+41 −0 examples/lamp-custom/config/default.conf
+110 −0 examples/lamp-custom/config/mysql.cnf
+49 −0 examples/lamp-custom/config/php.ini
+6 −0 examples/lamp-defaults/.lando.yml
+72 −0 examples/lamp-defaults/README.md
+1 −0 examples/lamp-defaults/index.php
+1 −0 examples/lamp-defaults/info.php
+11 −0 examples/lamp-downstreamer-1/.lando.yml
+44 −0 examples/lamp-downstreamer-1/README.md
+1 −0 examples/lamp-downstreamer-1/index.php
+1 −0 examples/lamp-downstreamer-1/info.php
+11 −0 examples/lamp-downstreamer-2/.lando.yml
+44 −0 examples/lamp-downstreamer-2/README.md
+1 −0 examples/lamp-downstreamer-2/index.php
+1 −0 examples/lamp-downstreamer-2/info.php
+4 −0 examples/lamp-export/.gitignore
+6 −0 examples/lamp-export/.lando.yml
+61 −0 examples/lamp-export/README.md
+1 −0 examples/lamp-export/index.php
+1 −0 examples/lamp-export/info.php
+59 −0 examples/lamp-export/mysql-test.sql
+12 −0 examples/lamp-import/.lando.yml
+56 −0 examples/lamp-import/README.md
+24 −0 examples/lamp-import/big-bad-dump.sql
+1 −0 examples/lamp-import/index.php
+1 −0 examples/lamp-import/info.php
+59 −0 examples/lamp-import/mysql-test.sql
+59 −0 examples/lamp-import/subdir/test.sql
+4 −0 examples/lamp-import/test.sh
+0 −0 examples/lamp-init/.gitignore
+2 −0 examples/lamp-init/.lando.local.yml
+2 −2 examples/lamp-init/README.md
+6 −0 examples/lamp-init/config.lando.yml
+1 −0 examples/lamp-mysql8/.gitignore
+69 −0 examples/lamp-mysql8/README.md
+15 −0 examples/lamp-nginx/.lando.yml
+46 −0 examples/lamp-nginx/README.md
+1 −0 examples/lamp-nginx/web/index.php
+1 −0 examples/lamp-nginx/web/info.php
+0 −11 examples/lamp/config.lando.yml
+0 −0 inits/lamp.js
+20 −5 netlify.toml
+7,688 −0 package-lock.json
+18 −14 package.json
+0 −25 recipes/lamp/builder.js
+0 −4,596 yarn.lock
2 changes: 1 addition & 1 deletion plugins/laravel
Submodule laravel updated 98 files
+3 −2 .eslintignore
+11 −9 .github/workflows/pr-docs-tests.yml
+42 −56 .github/workflows/pr-laravel-tests.yml
+7 −7 .github/workflows/pr-linter.yml
+8 −7 .github/workflows/pr-unit-tests.yml
+17 −8 .github/workflows/release.yml
+8 −4 .gitignore
+3 −3 .lando.yml
+1 −1 .node-version
+54 −0 CHANGELOG.md
+0 −12 actions-lando-config.yml
+15 −0 builders/laravel-mariadb.js
+15 −0 builders/laravel-memcached.js
+15 −0 builders/laravel-mssql.js
+15 −0 builders/laravel-mysql.js
+18 −0 builders/laravel-nginx.js
+32 −0 builders/laravel-php.js
+15 −0 builders/laravel-postgres.js
+15 −0 builders/laravel-redis.js
+273 −0 builders/laravel.js
+2 −0 config/default.conf.tpl
+111 −0 config/mysql.cnf
+106 −0 config/mysql8.cnf
+50 −0 config/php.ini
+9 −0 docs/.eslintrc.json
+56 −0 docs/.vitepress/config.mjs
+3 −0 docs/.vitepress/theme/index.mjs
+0 −52 docs/.vuepress/config.js
+15 −15 docs/config.md
+29 −44 docs/development.md
+5 −39 docs/getting-started.md
+3 −3 docs/index.md
+45 −0 docs/install.md
+0 −0 docs/public/.!78307!favicon.ico
+0 −0 docs/public/contact.html
+ docs/public/favicon.ico
+0 −0 docs/public/favicon.svg
+ docs/public/images/icon.png
+0 −0 docs/public/images/icon.svg
+ docs/public/images/laravelicon.png
+ docs/public/images/logo.png
+0 −0 docs/public/images/logo.svg
+5 −15 docs/support.md
+25 −0 docs/team.md
+2 −2 docs/tooling.md
+2 −0 examples/.lando.upstream.yml
+3 −0 examples/.lando.yml
+1 −1 examples/7.1/README.md
+1 −1 examples/7.2/README.md
+0 −1 examples/8.1/.gitignore
+25 −0 examples/laravel-custom/.lando.yml
+74 −0 examples/laravel-custom/README.md
+1 −0 examples/laravel-custom/bob/index.php
+1 −0 examples/laravel-custom/bob/info.php
+41 −0 examples/laravel-custom/config/default.conf
+2 −2 examples/laravel-custom/config/mysql.cnf
+1 −1 examples/laravel-custom/config/php.ini
+6 −0 examples/laravel-defaults/.lando.yml
+72 −0 examples/laravel-defaults/README.md
+1 −0 examples/laravel-defaults/index.php
+1 −0 examples/laravel-defaults/info.php
+11 −0 examples/laravel-downstreamer-1/.lando.yml
+44 −0 examples/laravel-downstreamer-1/README.md
+1 −0 examples/laravel-downstreamer-1/index.php
+1 −0 examples/laravel-downstreamer-1/info.php
+11 −0 examples/laravel-downstreamer-2/.lando.yml
+44 −0 examples/laravel-downstreamer-2/README.md
+1 −0 examples/laravel-downstreamer-2/index.php
+1 −0 examples/laravel-downstreamer-2/info.php
+4 −0 examples/laravel-export/.gitignore
+6 −0 examples/laravel-export/.lando.yml
+61 −0 examples/laravel-export/README.md
+1 −0 examples/laravel-export/index.php
+1 −0 examples/laravel-export/info.php
+59 −0 examples/laravel-export/mysql-test.sql
+12 −0 examples/laravel-import/.lando.yml
+56 −0 examples/laravel-import/README.md
+24 −0 examples/laravel-import/big-bad-dump.sql
+1 −0 examples/laravel-import/index.php
+1 −0 examples/laravel-import/info.php
+59 −0 examples/laravel-import/mysql-test.sql
+59 −0 examples/laravel-import/subdir/test.sql
+4 −0 examples/laravel-import/test.sh
+0 −0 examples/laravel-init/.gitignore
+4 −4 examples/laravel-init/README.md
+1 −0 examples/laravel-mysql8/.gitignore
+22 −17 examples/laravel-mysql8/README.md
+15 −0 examples/laravel-nginx/.lando.yml
+49 −0 examples/laravel-nginx/README.md
+1 −0 examples/laravel-nginx/web/index.php
+1 −0 examples/laravel-nginx/web/info.php
+0 −0 inits/laravel.js
+20 −5 netlify.toml
+7,435 −0 package-lock.json
+25 −20 package.json
+0 −74 recipes/laravel/builder.js
+6 −6 test/auth.spec.js
+0 −4,596 yarn.lock
2 changes: 1 addition & 1 deletion plugins/lemp
Submodule lemp updated 96 files
+3 −2 .eslintignore
+9 −9 .github/workflows/pr-docs-tests.yml
+41 −46 .github/workflows/pr-lemp-tests.yml
+7 −7 .github/workflows/pr-linter.yml
+8 −7 .github/workflows/pr-unit-tests.yml
+17 −8 .github/workflows/release.yml
+8 −4 .gitignore
+3 −3 .lando.yml
+1 −1 .node-version
+38 −0 CHANGELOG.md
+0 −14 actions-lando-config.yml
+15 −0 builders/lemp-mariadb.js
+15 −0 builders/lemp-mongo.js
+15 −0 builders/lemp-mssql.js
+15 −0 builders/lemp-mysql.js
+15 −0 builders/lemp-nginx.js
+32 −0 builders/lemp-php.js
+15 −0 builders/lemp-postgres.js
+225 −0 builders/lemp.js
+68 −0 config/default.conf.tpl
+110 −0 config/mysql.cnf
+105 −0 config/mysql8.cnf
+49 −0 config/php.ini
+9 −0 docs/.eslintrc.json
+56 −0 docs/.vitepress/config.mjs
+3 −0 docs/.vitepress/theme/index.mjs
+0 −42 docs/.vuepress/config.js
+10 −10 docs/config.md
+30 −45 docs/development.md
+3 −38 docs/getting-started.md
+3 −3 docs/index.md
+45 −0 docs/install.md
+0 −0 docs/public/.!78458!favicon.ico
+0 −0 docs/public/contact.html
+ docs/public/favicon.ico
+0 −0 docs/public/favicon.svg
+ docs/public/images/icon.png
+0 −0 docs/public/images/icon.svg
+ docs/public/images/lampicon.png
+ docs/public/images/logo.png
+0 −0 docs/public/images/logo.svg
+5 −15 docs/support.md
+25 −0 docs/team.md
+2 −2 docs/tooling.md
+2 −0 examples/.lando.upstream.yml
+23 −0 examples/lemp-custom/.lando.yml
+71 −0 examples/lemp-custom/README.md
+1 −0 examples/lemp-custom/bob/index.php
+1 −0 examples/lemp-custom/bob/info.php
+41 −0 examples/lemp-custom/config/default.conf
+110 −0 examples/lemp-custom/config/mysql.cnf
+49 −0 examples/lemp-custom/config/php.ini
+6 −0 examples/lemp-defaults/.lando.yml
+71 −0 examples/lemp-defaults/README.md
+1 −0 examples/lemp-defaults/index.php
+1 −0 examples/lemp-defaults/info.php
+11 −0 examples/lemp-downstreamer-1/.lando.yml
+44 −0 examples/lemp-downstreamer-1/README.md
+1 −0 examples/lemp-downstreamer-1/index.php
+1 −0 examples/lemp-downstreamer-1/info.php
+11 −0 examples/lemp-downstreamer-2/.lando.yml
+44 −0 examples/lemp-downstreamer-2/README.md
+1 −0 examples/lemp-downstreamer-2/index.php
+1 −0 examples/lemp-downstreamer-2/info.php
+4 −0 examples/lemp-export/.gitignore
+6 −0 examples/lemp-export/.lando.yml
+61 −0 examples/lemp-export/README.md
+1 −0 examples/lemp-export/index.php
+1 −0 examples/lemp-export/info.php
+59 −0 examples/lemp-export/mysql-test.sql
+12 −0 examples/lemp-import/.lando.yml
+56 −0 examples/lemp-import/README.md
+24 −0 examples/lemp-import/big-bad-dump.sql
+1 −0 examples/lemp-import/index.php
+1 −0 examples/lemp-import/info.php
+59 −0 examples/lemp-import/mysql-test.sql
+59 −0 examples/lemp-import/subdir/test.sql
+4 −0 examples/lemp-import/test.sh
+0 −0 examples/lemp-init/.gitignore
+22 −16 examples/lemp-init/README.md
+6 −0 examples/lemp-init/config.lando.yml
+1 −0 examples/lemp-mysql8/.gitignore
+69 −0 examples/lemp-mysql8/README.md
+15 −0 examples/lemp-nginx/.lando.yml
+50 −0 examples/lemp-nginx/README.md
+1 −0 examples/lemp-nginx/web/index.php
+1 −0 examples/lemp-nginx/web/info.php
+0 −11 examples/lemp/.lando.local.yml
+0 −15 examples/lemp/config.lando.yml
+0 −45 examples/lemp/config/default.conf.tpl
+1 −1 inits/lemp.js
+20 −5 netlify.toml
+7,688 −0 package-lock.json
+18 −14 package.json
+0 −25 recipes/lemp/builder.js
+0 −4,596 yarn.lock
2 changes: 1 addition & 1 deletion plugins/mailhog
2 changes: 1 addition & 1 deletion plugins/mariadb
Submodule mariadb updated 63 files
+3 −2 .eslintignore
+9 −9 .github/workflows/pr-docs-tests.yml
+7 −7 .github/workflows/pr-linter.yml
+39 −45 .github/workflows/pr-mariadb-tests.yml
+8 −7 .github/workflows/pr-unit-tests.yml
+17 −8 .github/workflows/release.yml
+8 −4 .gitignore
+3 −3 .lando.yml
+1 −1 .node-version
+2 −0 .npmignore
+27 −3 CHANGELOG.md
+0 −14 actions-lando-config.yml
+16 −4 builders/mariadb.js
+0 −0 config/launch.sh
+0 −0 config/my_custom.cnf
+9 −0 docs/.eslintrc.json
+56 −0 docs/.vitepress/config.mjs
+3 −0 docs/.vitepress/theme/index.mjs
+0 −40 docs/.vuepress/config.js
+3 −3 docs/config.md
+30 −45 docs/development.md
+12 −38 docs/index.md
+45 −0 docs/install.md
+0 −0 docs/public/.!78757!favicon.ico
+0 −0 docs/public/contact.html
+ docs/public/favicon.ico
+0 −0 docs/public/favicon.svg
+ docs/public/images/icon.png
+0 −0 docs/public/images/icon.svg
+ docs/public/images/logo.png
+0 −0 docs/public/images/logo.svg
+ docs/public/images/mariadbicon.png
+5 −15 docs/support.md
+25 −0 docs/team.md
+1 −1 examples/10.1/.lando.yml
+14 −0 examples/10.10/.lando.yml
+44 −0 examples/10.10/README.md
+14 −0 examples/10.11/.lando.yml
+44 −0 examples/10.11/README.md
+1 −1 examples/10.2/.lando.yml
+1 −1 examples/10.3/.lando.yml
+1 −1 examples/10.4/.lando.yml
+1 −1 examples/10.5/.lando.yml
+5 −2 examples/10.6/.lando.yml
+14 −0 examples/10.7/.lando.yml
+44 −0 examples/10.7/README.md
+14 −0 examples/10.8/.lando.yml
+44 −0 examples/10.8/README.md
+14 −0 examples/10.9/.lando.yml
+44 −0 examples/10.9/README.md
+14 −0 examples/11.0/.lando.yml
+44 −0 examples/11.0/README.md
+14 −0 examples/11.1/.lando.yml
+44 −0 examples/11.1/README.md
+14 −0 examples/11.2/.lando.yml
+44 −0 examples/11.2/README.md
+9 −2 examples/custom/.lando.yml
+20 −5 netlify.toml
+7,463 −0 package-lock.json
+11 −14 package.json
+0 −0 tmpfile
+22 −0 utils/get-default-healthcheck.js
+0 −4,596 yarn.lock
2 changes: 1 addition & 1 deletion plugins/mean
Submodule mean updated 63 files
+3 −2 .eslintignore
+9 −9 .github/workflows/pr-docs-tests.yml
+7 −7 .github/workflows/pr-linter.yml
+35 −45 .github/workflows/pr-mean-tests.yml
+8 −7 .github/workflows/pr-unit-tests.yml
+17 −8 .github/workflows/release.yml
+8 −4 .gitignore
+3 −3 .lando.yml
+1 −1 .node-version
+25 −0 CHANGELOG.md
+0 −12 actions-lando-config.yml
+15 −0 builders/mean-mariadb.js
+15 −0 builders/mean-mongo.js
+15 −0 builders/mean-mysql.js
+32 −0 builders/mean-node.js
+15 −0 builders/mean-postgres.js
+111 −0 builders/mean.js
+110 −0 config/mysql.cnf
+105 −0 config/mysql8.cnf
+9 −0 docs/.eslintrc.json
+58 −0 docs/.vitepress/config.mjs
+3 −0 docs/.vitepress/theme/index.mjs
+0 −42 docs/.vuepress/config.js
+12 −12 docs/config.md
+30 −45 docs/development.md
+3 −38 docs/getting-started.md
+2 −2 docs/index.md
+45 −0 docs/install.md
+0 −0 docs/public/.!78891!favicon.ico
+0 −0 docs/public/contact.html
+ docs/public/favicon.ico
+0 −0 docs/public/favicon.svg
+ docs/public/images/icon.png
+0 −0 docs/public/images/icon.svg
+ docs/public/images/logo.png
+0 −0 docs/public/images/logo.svg
+ docs/public/images/meanicon.png
+5 −15 docs/support.md
+25 −0 docs/team.md
+2 −2 docs/tooling.md
+2 −0 examples/.lando.local.yml
+2 −0 examples/.lando.upstream.yml
+0 −0 examples/mean-custom/.gitignore
+12 −0 examples/mean-custom/.lando.yml
+5 −15 examples/mean-custom/README.md
+110 −0 examples/mean-custom/config/mysql.cnf
+3 −0 examples/mean-custom/package-lock.json
+0 −0 examples/mean-defaults/.gitignore
+15 −6 examples/mean-defaults/README.md
+15 −0 examples/mean-downstreamer-1/.lando.yml
+44 −0 examples/mean-downstreamer-1/README.md
+1 −0 examples/mean-downstreamer-1/index.php
+1 −0 examples/mean-downstreamer-1/info.php
+16 −0 examples/mean-downstreamer-2/.lando.yml
+44 −0 examples/mean-downstreamer-2/README.md
+1 −0 examples/mean-downstreamer-2/index.php
+1 −0 examples/mean-downstreamer-2/info.php
+0 −0 inits/mean.js
+20 −5 netlify.toml
+7,595 −0 package-lock.json
+16 −14 package.json
+0 −69 recipes/mean/builder.js
+0 −4,596 yarn.lock
2 changes: 1 addition & 1 deletion plugins/nginx
Submodule nginx updated 75 files
+3 −2 .eslintignore
+8 −8 .github/workflows/pr-docs-tests.yml
+6 −6 .github/workflows/pr-linter.yml
+37 −44 .github/workflows/pr-nginx-tests.yml
+6 −6 .github/workflows/pr-unit-tests.yml
+16 −7 .github/workflows/release.yml
+8 −4 .gitignore
+3 −3 .lando.yml
+1 −1 .node-version
+2 −0 .npmignore
+39 −1 CHANGELOG.md
+0 −14 actions-lando-config.yml
+24 −16 builders/nginx.js
+0 −0 config/default-ssl.conf.tpl
+0 −0 config/default.conf.tpl
+0 −0 config/fastcgi_params
+4 −6 config/launch.sh
+0 −0 config/nginx.conf
+0 −0 config/nginx.conf.tpl
+9 −0 docs/.eslintrc.json
+56 −0 docs/.vitepress/config.mjs
+3 −0 docs/.vitepress/theme/index.mjs
+0 −40 docs/.vuepress/config.js
+4 −4 docs/config.md
+30 −45 docs/development.md
+10 −44 docs/index.md
+45 −0 docs/install.md
+0 −0 docs/public/.!74317!favicon.ico
+0 −0 docs/public/.!75826!favicon.ico
+0 −0 docs/public/contact.html
+ docs/public/favicon.ico
+0 −0 docs/public/favicon.svg
+ docs/public/images/icon.png
+0 −0 docs/public/images/icon.svg
+ docs/public/images/logo.png
+0 −0 docs/public/images/logo.svg
+ docs/public/images/nginxicon.png
+5 −15 docs/support.md
+25 −0 docs/team.md
+1 −1 examples/1.16/.lando.yml
+2 −2 examples/1.17/.lando.yml
+1 −1 examples/1.17/README.md
+1 −1 examples/1.18/.lando.yml
+9 −0 examples/1.19/.lando.yml
+44 −0 examples/1.19/README.md
+1 −0 examples/1.19/index.html
+11 −0 examples/1.20/.lando.yml
+44 −0 examples/1.20/README.md
+1 −0 examples/1.20/index.html
+11 −0 examples/1.21/.lando.yml
+44 −0 examples/1.21/README.md
+1 −0 examples/1.21/index.html
+11 −0 examples/1.22/.lando.yml
+44 −0 examples/1.22/README.md
+1 −0 examples/1.22/index.html
+11 −0 examples/1.23/.lando.yml
+44 −0 examples/1.23/README.md
+1 −0 examples/1.23/index.html
+11 −0 examples/1.24/.lando.yml
+44 −0 examples/1.24/README.md
+1 −0 examples/1.24/index.html
+11 −0 examples/1.25/.lando.yml
+44 −0 examples/1.25/README.md
+1 −0 examples/1.25/index.html
+7 −5 examples/custom/.lando.yml
+11 −11 examples/custom/README.md
+1 −1 examples/custom/config/custom.conf
+3 −1 examples/custom/config/server2.conf
+20 −5 netlify.toml
+7,463 −0 package-lock.json
+11 −14 package.json
+47 −0 scripts/install-render-template.sh
+0 −0 tmpfile
+14 −0 utils/add-build-step.js
+0 −4,596 yarn.lock
2 changes: 1 addition & 1 deletion plugins/node
Submodule node updated 76 files
+3 −2 .eslintignore
+9 −9 .github/workflows/pr-docs-tests.yml
+7 −7 .github/workflows/pr-linter.yml
+35 −44 .github/workflows/pr-node-tests.yml
+7 −7 .github/workflows/pr-unit-tests.yml
+17 −8 .github/workflows/release.yml
+8 −4 .gitignore
+3 −3 .lando.yml
+1 −1 .node-version
+33 −0 CHANGELOG.md
+1 −1 README.md
+0 −12 actions-lando-config.yml
+109 −4 builders/node.js
+9 −0 docs/.eslintrc.json
+57 −0 docs/.vitepress/config.mjs
+3 −0 docs/.vitepress/theme/index.mjs
+0 −59 docs/.vuepress/config.js
+1 −1 docs/caveats.md
+11 −11 docs/config.md
+29 −44 docs/development.md
+26 −0 docs/guides.md
+5 −3 docs/guides/frontend-tooling.md
+2 −0 docs/guides/using-browsersync.md
+3 −1 docs/guides/using-compass.md
+17 −52 docs/index.md
+45 −0 docs/install.md
+0 −0 docs/public/.!80031!favicon.ico
+0 −0 docs/public/contact.html
+ docs/public/favicon.ico
+0 −0 docs/public/favicon.svg
+ docs/public/images/icon.png
+0 −0 docs/public/images/icon.svg
+ docs/public/images/logo.png
+0 −0 docs/public/images/logo.svg
+0 −0 docs/public/images/nodejsicon.svg
+5 −15 docs/support.md
+25 −0 docs/team.md
+1 −1 examples/10/package.json
+175 −164 examples/10/yarn.lock
+2 −2 examples/12/.lando.yml
+1 −1 examples/12/package.json
+172 −161 examples/12/yarn.lock
+1 −1 examples/14/package.json
+104 −113 examples/14/yarn.lock
+1 −1 examples/16/package.json
+104 −113 examples/16/yarn.lock
+3 −0 examples/18/.gitignore
+45 −0 examples/18/.lando.yml
+91 −0 examples/18/README.md
+27 −0 examples/18/package.json
+28 −0 examples/18/src/app-custom.js
+21 −0 examples/18/src/app-http.js
+28 −0 examples/18/src/app-https.js
+1,016 −0 examples/18/yarn.lock
+3 −0 examples/19/.gitignore
+43 −0 examples/19/.lando.yml
+91 −0 examples/19/README.md
+27 −0 examples/19/package.json
+28 −0 examples/19/src/app-custom.js
+21 −0 examples/19/src/app-http.js
+28 −0 examples/19/src/app-https.js
+3 −0 examples/20/.gitignore
+43 −0 examples/20/.lando.yml
+91 −0 examples/20/README.md
+27 −0 examples/20/package.json
+28 −0 examples/20/src/app-custom.js
+21 −0 examples/20/src/app-http.js
+28 −0 examples/20/src/app-https.js
+1,070 −0 examples/20/yarn.lock
+21 −6 netlify.toml
+7,463 −0 package-lock.json
+11 −14 package.json
+0 −0 tmpfile
+1 −10 utils/add-build-step.js
+13 −0 utils/get-install-commands.js
+0 −4,596 yarn.lock
2 changes: 1 addition & 1 deletion plugins/pantheon
Submodule pantheon updated 127 files
2 changes: 1 addition & 1 deletion plugins/php
Submodule php updated 118 files
2 changes: 1 addition & 1 deletion plugins/phpmyadmin
2 changes: 1 addition & 1 deletion plugins/platformsh
Submodule platformsh updated 51 files
+3 −2 .eslintignore
+28 −44 .github/workflows/pr-basic-tests.yml
+29 −44 .github/workflows/pr-chrome-headless-tests.yml
+29 −42 .github/workflows/pr-drupal8-sync-tests.yml
+7 −7 .github/workflows/pr-linter.yml
+29 −44 .github/workflows/pr-mariadb-tests.yml
+29 −44 .github/workflows/pr-memcached-tests.yml
+29 −44 .github/workflows/pr-mongodb-tests.yml
+29 −44 .github/workflows/pr-mysql-tests.yml
+29 −44 .github/workflows/pr-php-tests.yml
+29 −44 .github/workflows/pr-postgresql-tests.yml
+29 −44 .github/workflows/pr-redis-tests.yml
+29 −44 .github/workflows/pr-solr-tests.yml
+5 −5 .github/workflows/pr-unit-tests.yml
+29 −44 .github/workflows/pr-varnish-tests.yml
+15 −6 .github/workflows/release.yml
+8 −4 .gitignore
+3 −3 .lando.yml
+1 −1 .node-version
+17 −0 CHANGELOG.md
+2 −0 README.md
+12 −1 docs/.eslintrc.json
+62 −0 docs/.vitepress/config.mjs
+3 −0 docs/.vitepress/theme/index.mjs
+0 −62 docs/.vuepress/config.js
+2 −2 docs/caveats.md
+22 −22 docs/config.md
+30 −97 docs/development.md
+3 −38 docs/getting-started.md
+26 −0 docs/guides.md
+1 −1 docs/guides/adding-more-tooling.md
+0 −0 docs/guides/external-access.md
+0 −0 docs/guides/manually-importing-databases.md
+6 −2 docs/index.md
+45 −0 docs/install.md
+0 −0 docs/public/contact.html
+ docs/public/favicon.ico
+0 −0 docs/public/favicon.svg
+ docs/public/images/icon.png
+0 −0 docs/public/images/icon.svg
+ docs/public/images/logo.png
+0 −0 docs/public/images/logo.svg
+ docs/public/images/pshicon.png
+5 −15 docs/support.md
+25 −0 docs/team.md
+2 −2 docs/tooling.md
+21 −6 netlify.toml
+8,624 −0 package-lock.json
+19 −15 package.json
+62 −0 update-lando-repos.sh
+0 −4,834 yarn.lock
2 changes: 1 addition & 1 deletion plugins/redis
Submodule redis updated 48 files
+3 −2 .eslintignore
+9 −9 .github/workflows/pr-docs-tests.yml
+7 −7 .github/workflows/pr-linter.yml
+25 −43 .github/workflows/pr-redis-tests.yml
+7 −7 .github/workflows/pr-unit-tests.yml
+17 −8 .github/workflows/release.yml
+8 −4 .gitignore
+3 −3 .lando.yml
+1 −1 .node-version
+26 −0 CHANGELOG.md
+0 −12 actions-lando-config.yml
+6 −2 builders/redis.js
+0 −0 config/redis.conf
+9 −0 docs/.eslintrc.json
+56 −0 docs/.vitepress/config.mjs
+3 −0 docs/.vitepress/theme/index.mjs
+0 −40 docs/.vuepress/config.js
+19 −3 docs/config.md
+29 −44 docs/development.md
+4 −37 docs/index.md
+45 −0 docs/install.md
+0 −0 docs/public/.!81562!favicon.ico
+0 −0 docs/public/contact.html
+ docs/public/favicon.ico
+0 −0 docs/public/favicon.svg
+ docs/public/images/icon.png
+0 −0 docs/public/images/icon.svg
+ docs/public/images/logo.png
+0 −0 docs/public/images/logo.svg
+ docs/public/images/redisicon.png
+5 −15 docs/support.md
+25 −0 docs/team.md
+4 −1 examples/2.x/.lando.yml
+3 −0 examples/2.x/README.md
+4 −1 examples/4.x/.lando.yml
+3 −0 examples/4.x/README.md
+4 −1 examples/5.x/.lando.yml
+3 −0 examples/5.x/README.md
+4 −1 examples/6.x/.lando.yml
+3 −0 examples/6.x/README.md
+1 −0 examples/7.x/.gitignore
+14 −0 examples/7.x/.lando.yml
+50 −0 examples/7.x/README.md
+20 −5 netlify.toml
+7,463 −0 package-lock.json
+11 −14 package.json
+0 −0 tmpfile
+0 −4,596 yarn.lock
2 changes: 1 addition & 1 deletion plugins/solr
Submodule solr updated 93 files
+3 −2 .eslintignore
+9 −9 .github/workflows/pr-docs-tests.yml
+7 −7 .github/workflows/pr-linter.yml
+32 −45 .github/workflows/pr-solr-tests.yml
+7 −7 .github/workflows/pr-unit-tests.yml
+17 −8 .github/workflows/release.yml
+8 −4 .gitignore
+2 −2 .lando.yml
+1 −1 .node-version
+27 −3 CHANGELOG.md
+0 −14 actions-lando-config.yml
+17 −2 builders/solr.js
+0 −0 config/start-solr-3.sh
+0 −0 config/start-solr-4.sh
+46 −0 config/start-solr-9.sh
+0 −0 config/start-solr.sh
+9 −0 docs/.eslintrc.json
+56 −0 docs/.vitepress/config.mjs
+3 −0 docs/.vitepress/theme/index.mjs
+0 −40 docs/.vuepress/config.js
+4 −4 docs/config.md
+29 −44 docs/development.md
+30 −63 docs/index.md
+45 −0 docs/install.md
+0 −0 docs/public/.!81991!favicon.ico
+0 −0 docs/public/contact.html
+ docs/public/favicon.ico
+0 −0 docs/public/favicon.svg
+ docs/public/images/icon.png
+0 −0 docs/public/images/icon.svg
+ docs/public/images/logo.png
+0 −0 docs/public/images/logo.svg
+ docs/public/images/solricon.png
+5 −15 docs/support.md
+25 −0 docs/team.md
+2 −1 examples/3.x/.lando.yml
+2 −1 examples/4.x/.lando.yml
+2 −1 examples/5.x/.lando.yml
+2 −1 examples/6.x/.lando.yml
+2 −1 examples/7.x/.lando.yml
+2 −1 examples/8.x/.lando.yml
+29 −0 examples/9.x/.lando.yml
+8 −0 examples/9.x/9.x-conf/lang/contractions_ca.txt
+15 −0 examples/9.x/9.x-conf/lang/contractions_fr.txt
+5 −0 examples/9.x/9.x-conf/lang/contractions_ga.txt
+23 −0 examples/9.x/9.x-conf/lang/contractions_it.txt
+5 −0 examples/9.x/9.x-conf/lang/hyphenations_ga.txt
+6 −0 examples/9.x/9.x-conf/lang/stemdict_nl.txt
+420 −0 examples/9.x/9.x-conf/lang/stoptags_ja.txt
+125 −0 examples/9.x/9.x-conf/lang/stopwords_ar.txt
+193 −0 examples/9.x/9.x-conf/lang/stopwords_bg.txt
+220 −0 examples/9.x/9.x-conf/lang/stopwords_ca.txt
+172 −0 examples/9.x/9.x-conf/lang/stopwords_cz.txt
+110 −0 examples/9.x/9.x-conf/lang/stopwords_da.txt
+294 −0 examples/9.x/9.x-conf/lang/stopwords_de.txt
+78 −0 examples/9.x/9.x-conf/lang/stopwords_el.txt
+54 −0 examples/9.x/9.x-conf/lang/stopwords_en.txt
+356 −0 examples/9.x/9.x-conf/lang/stopwords_es.txt
+1,603 −0 examples/9.x/9.x-conf/lang/stopwords_et.txt
+99 −0 examples/9.x/9.x-conf/lang/stopwords_eu.txt
+313 −0 examples/9.x/9.x-conf/lang/stopwords_fa.txt
+97 −0 examples/9.x/9.x-conf/lang/stopwords_fi.txt
+186 −0 examples/9.x/9.x-conf/lang/stopwords_fr.txt
+110 −0 examples/9.x/9.x-conf/lang/stopwords_ga.txt
+161 −0 examples/9.x/9.x-conf/lang/stopwords_gl.txt
+235 −0 examples/9.x/9.x-conf/lang/stopwords_hi.txt
+211 −0 examples/9.x/9.x-conf/lang/stopwords_hu.txt
+46 −0 examples/9.x/9.x-conf/lang/stopwords_hy.txt
+359 −0 examples/9.x/9.x-conf/lang/stopwords_id.txt
+303 −0 examples/9.x/9.x-conf/lang/stopwords_it.txt
+127 −0 examples/9.x/9.x-conf/lang/stopwords_ja.txt
+172 −0 examples/9.x/9.x-conf/lang/stopwords_lv.txt
+119 −0 examples/9.x/9.x-conf/lang/stopwords_nl.txt
+194 −0 examples/9.x/9.x-conf/lang/stopwords_no.txt
+253 −0 examples/9.x/9.x-conf/lang/stopwords_pt.txt
+233 −0 examples/9.x/9.x-conf/lang/stopwords_ro.txt
+243 −0 examples/9.x/9.x-conf/lang/stopwords_ru.txt
+133 −0 examples/9.x/9.x-conf/lang/stopwords_sv.txt
+119 −0 examples/9.x/9.x-conf/lang/stopwords_th.txt
+212 −0 examples/9.x/9.x-conf/lang/stopwords_tr.txt
+29 −0 examples/9.x/9.x-conf/lang/userdict_ja.txt
+1,031 −0 examples/9.x/9.x-conf/managed-schema.xml
+21 −0 examples/9.x/9.x-conf/protwords.txt
+1,142 −0 examples/9.x/9.x-conf/solrconfig.xml
+14 −0 examples/9.x/9.x-conf/stopwords.txt
+29 −0 examples/9.x/9.x-conf/synonyms.txt
+62 −0 examples/9.x/README.md
+7 −0 examples/9.x/test.xml
+20 −5 netlify.toml
+7,543 −0 package-lock.json
+11 −13 package.json
+0 −0 tmpfile
+0 −4,596 yarn.lock
2 changes: 1 addition & 1 deletion plugins/symfony
Submodule symfony updated 99 files
+3 −2 .eslintignore
+9 −9 .github/workflows/pr-docs-tests.yml
+7 −7 .github/workflows/pr-linter.yml
+40 −44 .github/workflows/pr-symfony-tests.yml
+7 −7 .github/workflows/pr-unit-tests.yml
+17 −8 .github/workflows/release.yml
+8 −4 .gitignore
+3 −3 .lando.yml
+1 −1 .node-version
+49 −0 CHANGELOG.md
+0 −12 actions-lando-config.yml
+15 −0 builders/symfony-mariadb.js
+15 −0 builders/symfony-memcached.js
+15 −0 builders/symfony-mssql.js
+15 −0 builders/symfony-mysql.js
+18 −0 builders/symfony-nginx.js
+32 −0 builders/symfony-php.js
+15 −0 builders/symfony-postgres.js
+15 −0 builders/symfony-redis.js
+263 −0 builders/symfony.js
+2 −0 config/default.conf.tpl
+112 −0 config/mysql.cnf
+106 −0 config/mysql8.cnf
+4 −2 config/php.ini
+17 −0 copy-examples.sh
+9 −0 docs/.eslintrc.json
+58 −0 docs/.vitepress/config.mjs
+3 −0 docs/.vitepress/theme/index.mjs
+0 −42 docs/.vuepress/config.js
+13 −13 docs/config.md
+29 −44 docs/development.md
+3 −38 docs/getting-started.md
+3 −2 docs/index.md
+45 −0 docs/install.md
+0 −0 docs/public/.!82255!favicon.ico
+0 −0 docs/public/contact.html
+ docs/public/favicon.ico
+0 −0 docs/public/favicon.svg
+ docs/public/images/icon.png
+0 −0 docs/public/images/icon.svg
+ docs/public/images/logo.png
+0 −0 docs/public/images/logo.svg
+ docs/public/images/symfonyicon.png
+5 −15 docs/support.md
+25 −0 docs/team.md
+2 −2 docs/tooling.md
+2 −0 examples/.lando.upstream.yml
+3 −0 examples/.lando.yml
+20 −0 examples/symfony-custom/.lando.yml
+64 −0 examples/symfony-custom/README.md
+1 −0 examples/symfony-custom/bob/index.php
+1 −0 examples/symfony-custom/bob/info.php
+41 −0 examples/symfony-custom/config/default.conf
+2 −2 examples/symfony-custom/config/mysql.cnf
+49 −0 examples/symfony-custom/config/php.ini
+6 −0 examples/symfony-defaults/.lando.yml
+62 −0 examples/symfony-defaults/README.md
+1 −0 examples/symfony-defaults/index.php
+1 −0 examples/symfony-defaults/info.php
+11 −0 examples/symfony-downstreamer-1/.lando.yml
+44 −0 examples/symfony-downstreamer-1/README.md
+1 −0 examples/symfony-downstreamer-1/index.php
+1 −0 examples/symfony-downstreamer-1/info.php
+11 −0 examples/symfony-downstreamer-2/.lando.yml
+44 −0 examples/symfony-downstreamer-2/README.md
+1 −0 examples/symfony-downstreamer-2/index.php
+1 −0 examples/symfony-downstreamer-2/info.php
+4 −0 examples/symfony-export/.gitignore
+6 −0 examples/symfony-export/.lando.yml
+61 −0 examples/symfony-export/README.md
+1 −0 examples/symfony-export/index.php
+1 −0 examples/symfony-export/info.php
+59 −0 examples/symfony-export/mysql-test.sql
+12 −0 examples/symfony-import/.lando.yml
+56 −0 examples/symfony-import/README.md
+24 −0 examples/symfony-import/big-bad-dump.sql
+1 −0 examples/symfony-import/index.php
+1 −0 examples/symfony-import/info.php
+59 −0 examples/symfony-import/mysql-test.sql
+59 −0 examples/symfony-import/subdir/test.sql
+4 −0 examples/symfony-import/test.sh
+0 −0 examples/symfony-init/.gitignore
+2 −0 examples/symfony-init/.lando.local.yml
+5 −5 examples/symfony-init/README.md
+10 −0 examples/symfony-mysql8/.lando.yml
+54 −0 examples/symfony-mysql8/README.md
+1 −0 examples/symfony-mysql8/web/index.php
+1 −0 examples/symfony-mysql8/web/info.php
+15 −0 examples/symfony-nginx/.lando.yml
+46 −0 examples/symfony-nginx/README.md
+1 −0 examples/symfony-nginx/web/index.php
+1 −0 examples/symfony-nginx/web/info.php
+0 −0 inits/symfony.js
+20 −5 netlify.toml
+7,492 −0 package-lock.json
+25 −19 package.json
+0 −62 recipes/symfony/builder.js
+6 −6 test/auth.spec.js
+0 −4,596 yarn.lock
2 changes: 1 addition & 1 deletion plugins/varnish
Submodule varnish updated 47 files
+3 −2 .eslintignore
+9 −9 .github/workflows/pr-docs-tests.yml
+7 −7 .github/workflows/pr-linter.yml
+7 −7 .github/workflows/pr-unit-tests.yml
+31 −43 .github/workflows/pr-varnish-tests.yml
+17 −8 .github/workflows/release.yml
+8 −4 .gitignore
+2 −2 .lando.yml
+1 −1 .node-version
+28 −0 CHANGELOG.md
+0 −12 actions-lando-config.yml
+15 −0 builders/varnish-nginx.js
+5 −4 builders/varnish.js
+0 −0 config/lando.default.vcl.tmpl
+0 −0 config/lando.varnishd.init.d.tmpl
+0 −0 config/launch.sh
+0 −0 config/ssl-termination.conf.tpl
+9 −0 docs/.eslintrc.json
+56 −0 docs/.vitepress/config.mjs
+3 −0 docs/.vitepress/theme/index.mjs
+0 −40 docs/.vuepress/config.js
+5 −5 docs/config.md
+29 −44 docs/development.md
+3 −38 docs/index.md
+45 −0 docs/install.md
+0 −0 docs/public/.!82725!favicon.ico
+0 −0 docs/public/contact.html
+ docs/public/favicon.ico
+0 −0 docs/public/favicon.svg
+ docs/public/images/icon.png
+0 −0 docs/public/images/icon.svg
+ docs/public/images/logo.png
+0 −0 docs/public/images/logo.svg
+ docs/public/images/varnishicon.png
+5 −15 docs/support.md
+25 −0 docs/team.md
+2 −1 examples/4.x/.lando.yml
+2 −2 examples/4.x/README.md
+2 −1 examples/6.x/.lando.yml
+2 −2 examples/6.x/README.md
+5 −3 examples/custom/.lando.yml
+20 −5 netlify.toml
+7,505 −0 package-lock.json
+12 −13 package.json
+0 −0 tmpfile
+1 −1 utils/clone-overrides.js
+0 −4,596 yarn.lock
2 changes: 1 addition & 1 deletion plugins/wordpress
Submodule wordpress updated 93 files
+3 −2 .eslintignore
+9 −9 .github/workflows/pr-docs-tests.yml
+7 −7 .github/workflows/pr-linter.yml
+7 −7 .github/workflows/pr-unit-tests.yml
+40 −44 .github/workflows/pr-wordpress-tests.yml
+17 −8 .github/workflows/release.yml
+8 −4 .gitignore
+3 −3 .lando.yml
+1 −1 .node-version
+47 −0 CHANGELOG.md
+0 −12 actions-lando-config.yml
+15 −0 builders/wordpress-mariadb.js
+15 −0 builders/wordpress-mssql.js
+15 −0 builders/wordpress-mysql.js
+18 −0 builders/wordpress-nginx.js
+32 −0 builders/wordpress-php.js
+15 −0 builders/wordpress-postgres.js
+249 −0 builders/wordpress.js
+1 −0 config/default.conf.tpl
+110 −0 config/mysql.cnf
+105 −0 config/mysql8.cnf
+49 −0 config/php.ini
+9 −0 docs/.eslintrc.json
+58 −0 docs/.vitepress/config.mjs
+3 −0 docs/.vitepress/theme/index.mjs
+0 −42 docs/.vuepress/config.js
+12 −12 docs/config.md
+30 −45 docs/development.md
+36 −32 docs/getting-started.md
+3 −2 docs/index.md
+45 −0 docs/install.md
+0 −0 docs/public/.!82836!favicon.ico
+0 −0 docs/public/contact.html
+ docs/public/favicon.ico
+0 −0 docs/public/favicon.svg
+ docs/public/images/icon.png
+0 −0 docs/public/images/icon.svg
+ docs/public/images/logo.png
+0 −0 docs/public/images/logo.svg
+ docs/public/images/wordpressicon.png
+5 −15 docs/support.md
+25 −0 docs/team.md
+2 −2 docs/tooling.md
+2 −0 examples/.lando.upstream.yml
+3 −0 examples/.lando.yml
+23 −0 examples/wordpress-custom/.lando.yml
+71 −0 examples/wordpress-custom/README.md
+1 −0 examples/wordpress-custom/bob/index.php
+1 −0 examples/wordpress-custom/bob/info.php
+40 −0 examples/wordpress-custom/config/default.conf
+2 −2 examples/wordpress-custom/config/mysql.cnf
+1 −1 examples/wordpress-custom/config/php.ini
+6 −0 examples/wordpress-defaults/.lando.yml
+72 −0 examples/wordpress-defaults/README.md
+1 −0 examples/wordpress-defaults/index.php
+1 −0 examples/wordpress-defaults/info.php
+11 −0 examples/wordpress-downstreamer-1/.lando.yml
+44 −0 examples/wordpress-downstreamer-1/README.md
+1 −0 examples/wordpress-downstreamer-1/index.php
+1 −0 examples/wordpress-downstreamer-1/info.php
+11 −0 examples/wordpress-downstreamer-2/.lando.yml
+44 −0 examples/wordpress-downstreamer-2/README.md
+1 −0 examples/wordpress-downstreamer-2/index.php
+1 −0 examples/wordpress-downstreamer-2/info.php
+4 −0 examples/wordpress-export/.gitignore
+6 −0 examples/wordpress-export/.lando.yml
+61 −0 examples/wordpress-export/README.md
+1 −0 examples/wordpress-export/index.php
+1 −0 examples/wordpress-export/info.php
+59 −0 examples/wordpress-export/mysql-test.sql
+12 −0 examples/wordpress-import/.lando.yml
+56 −0 examples/wordpress-import/README.md
+24 −0 examples/wordpress-import/big-bad-dump.sql
+1 −0 examples/wordpress-import/index.php
+1 −0 examples/wordpress-import/info.php
+59 −0 examples/wordpress-import/mysql-test.sql
+59 −0 examples/wordpress-import/subdir/test.sql
+4 −0 examples/wordpress-import/test.sh
+0 −0 examples/wordpress-init/.gitignore
+1 −1 examples/wordpress-init/README.md
+1 −0 examples/wordpress-mysql8/.gitignore
+86 −0 examples/wordpress-mysql8/README.md
+14 −0 examples/wordpress-nginx/.lando.yml
+50 −0 examples/wordpress-nginx/README.md
+1 −0 examples/wordpress-nginx/web/index.php
+1 −0 examples/wordpress-nginx/web/info.php
+0 −0 inits/wordpress.js
+20 −5 netlify.toml
+7,656 −0 package-lock.json
+18 −14 package.json
+0 −53 recipes/wordpress/builder.js
+1 −1 utils/get-phar.js
+0 −4,596 yarn.lock
2 changes: 1 addition & 1 deletion setup-lando

0 comments on commit 888bb67

Please sign in to comment.