@lando/drupal 1.13.0 → 1.14.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (45) hide show
  1. package/.eslintignore +5 -0
  2. package/CHANGELOG.md +19 -0
  3. package/README.md +1 -1
  4. package/builders/_drupaly.js +18 -0
  5. package/netlify.toml +1 -1
  6. package/node_modules/@lando/mariadb/CHANGELOG.md +4 -0
  7. package/node_modules/@lando/mariadb/builders/mariadb.js +4 -3
  8. package/node_modules/@lando/mariadb/package.json +5 -5
  9. package/node_modules/@lando/php/AGENTS.md +81 -0
  10. package/node_modules/@lando/php/CHANGELOG.md +30 -0
  11. package/node_modules/@lando/php/README.md +4 -1
  12. package/node_modules/@lando/php/builders/php.js +39 -5
  13. package/node_modules/@lando/php/images/5.6-apache/Dockerfile +9 -4
  14. package/node_modules/@lando/php/images/5.6-fpm/Dockerfile +9 -4
  15. package/node_modules/@lando/php/images/7.0-apache/Dockerfile +9 -4
  16. package/node_modules/@lando/php/images/7.0-fpm/Dockerfile +9 -4
  17. package/node_modules/@lando/php/images/7.1-apache/Dockerfile +1 -1
  18. package/node_modules/@lando/php/images/7.1-fpm/Dockerfile +1 -1
  19. package/node_modules/@lando/php/images/7.2-apache/Dockerfile +1 -1
  20. package/node_modules/@lando/php/images/7.2-fpm/Dockerfile +1 -1
  21. package/node_modules/@lando/php/images/7.3-apache/Dockerfile +1 -1
  22. package/node_modules/@lando/php/images/7.3-fpm/Dockerfile +1 -1
  23. package/node_modules/@lando/php/images/7.4-apache/Dockerfile +2 -2
  24. package/node_modules/@lando/php/images/7.4-fpm/Dockerfile +2 -2
  25. package/node_modules/@lando/php/images/8.0-apache/Dockerfile +2 -2
  26. package/node_modules/@lando/php/images/8.0-fpm/Dockerfile +2 -2
  27. package/node_modules/@lando/php/images/8.1-apache/Dockerfile +1 -1
  28. package/node_modules/@lando/php/images/8.1-fpm/Dockerfile +1 -1
  29. package/node_modules/@lando/php/images/8.2-apache/Dockerfile +1 -1
  30. package/node_modules/@lando/php/images/8.2-fpm/Dockerfile +1 -1
  31. package/node_modules/@lando/php/images/8.3-apache/Dockerfile +23 -22
  32. package/node_modules/@lando/php/images/8.3-fpm/Dockerfile +22 -22
  33. package/node_modules/@lando/php/images/8.4-apache/Dockerfile +21 -22
  34. package/node_modules/@lando/php/images/8.4-fpm/Dockerfile +21 -22
  35. package/node_modules/@lando/php/images/8.5-apache/Dockerfile +77 -0
  36. package/node_modules/@lando/php/images/8.5-fpm/Dockerfile +78 -0
  37. package/node_modules/@lando/php/netlify.toml +1 -1
  38. package/node_modules/@lando/php/package.json +5 -5
  39. package/node_modules/@lando/php/scripts/install-db-client.sh +31 -0
  40. package/node_modules/@lando/php/scripts/mariadb-compat-install.sh +42 -0
  41. package/node_modules/@lando/php/scripts/mysql-client-install.sh +67 -0
  42. package/node_modules/@lando/postgres/CHANGELOG.md +4 -0
  43. package/node_modules/@lando/postgres/builders/postgres.js +2 -1
  44. package/node_modules/@lando/postgres/package.json +5 -5
  45. package/package.json +8 -8
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@lando/postgres",
3
3
  "description": "A Lando plugin that provides a tight integration with Postgres.",
4
- "version": "1.5.0",
4
+ "version": "1.6.0",
5
5
  "author": "Mike Pirog @pirog",
6
6
  "license": "MIT",
7
7
  "repository": "lando/postgres",
@@ -62,9 +62,9 @@
62
62
  "lodash"
63
63
  ],
64
64
  "dist": {
65
- "integrity": "sha512-BRnUHp7zZgFoqw0SbtsGH1+KAtrrI+iJVjNdAQcEOpqOGykXwk/g4e+35fcc0mMiqZ41n63EEM6zmMqROPApsw==",
66
- "shasum": "9a76c9e135ac5359d7d4c4aac8f867198738adcc",
67
- "filename": "lando-postgres-1.5.0.tgz",
68
- "unpackedSize": 1428384
65
+ "integrity": "sha512-ldqBhdCr2d2tHD30D2an+WL2jTPJUM29p0GdzQ8DGkwo4SdxX3OygcCdMzWORYDPbEl/EaO5082+oAHzxp26EQ==",
66
+ "shasum": "1c3bc204a4495870eaedbbe999f4795976292ce7",
67
+ "filename": "lando-postgres-1.6.0.tgz",
68
+ "unpackedSize": 1428571
69
69
  }
70
70
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@lando/drupal",
3
3
  "description": "A Lando plugin that provides a tight integration with Drupal.",
4
- "version": "1.13.0",
4
+ "version": "1.14.1",
5
5
  "author": "Mike Pirog @pirog",
6
6
  "license": "MIT",
7
7
  "repository": "lando/drupal",
@@ -43,11 +43,11 @@
43
43
  "test": "npm run lint && npm run test:unit"
44
44
  },
45
45
  "dependencies": {
46
- "@lando/mariadb": "^1.7.0",
46
+ "@lando/mariadb": "^1.8.0",
47
47
  "@lando/mssql": "^1.4.3",
48
48
  "@lando/mysql": "^1.6.0",
49
- "@lando/php": "^1.8.0",
50
- "@lando/postgres": "^1.5.0",
49
+ "@lando/php": "^1.11.1",
50
+ "@lando/postgres": "^1.6.0",
51
51
  "lodash": "^4.17.21",
52
52
  "semver": "^7.7.2"
53
53
  },
@@ -75,9 +75,9 @@
75
75
  "semver"
76
76
  ],
77
77
  "dist": {
78
- "integrity": "sha512-lX8PN/4uNlE9bGl7aVnYV3eT+aeDtNAL7AKTThq5Pqtn7oZko4cduWEbL/xBBeW0VOQJVWf95vt8Xe/gzkncqg==",
79
- "shasum": "7385de547bad02d4845fe67a5f37a23706498254",
80
- "filename": "lando-drupal-1.13.0.tgz",
81
- "unpackedSize": 10411258
78
+ "integrity": "sha512-Iy55JfT3twXVmLLWJdeak+3hlc4u76uZo5jvxc4FbmDwGByMtXDfZ+3n66do5dp0KPcifiCSVL6bdd1n7HevDQ==",
79
+ "shasum": "76d0482382c275ce0efaeacb35129d28d07ba186",
80
+ "filename": "lando-drupal-1.14.1.tgz",
81
+ "unpackedSize": 10430440
82
82
  }
83
83
  }