@lando/laravel 1.12.2 → 1.12.3

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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  ## {{ UNRELEASED_VERSION }} - [{{ UNRELEASED_DATE }}]({{ UNRELEASED_LINK }})
2
2
 
3
+ ## v1.12.3 - [March 5, 2026](https://github.com/lando/laravel/releases/tag/v1.12.3)
4
+
5
+ * Removed `--ansi` flag from composer tooling command to prevent escape codes in redirected output
6
+ * Fixed MySQL 8.4 startup failure by removing hardcoded `mysql_native_password` authentication [lando/mysql#69](https://github.com/lando/mysql/issues/69)
7
+
3
8
  ## v1.12.2 - [February 25, 2026](https://github.com/lando/laravel/releases/tag/v1.12.2)
4
9
 
5
10
  * Updated to [@lando/php@1.11.2](https://github.com/lando/php/releases/tag/v1.11.2) for composer install fix and MariaDB mysqldump compatibility.
@@ -37,7 +37,7 @@ const getDatabaseType = options => {
37
37
  const toolingDefaults = {
38
38
  'composer': {
39
39
  service: 'appserver',
40
- cmd: 'composer --ansi',
40
+ cmd: 'composer',
41
41
  },
42
42
  'db-import <file>': {
43
43
  service: ':host',
@@ -169,7 +169,6 @@ const getServices = options => ({
169
169
  },
170
170
  database: {
171
171
  config: getServiceConfig(options, ['database']),
172
- authentication: 'mysql_native_password',
173
172
  type: `laravel-${options.database}`,
174
173
  portforward: true,
175
174
  creds: {
package/netlify.toml CHANGED
@@ -10,7 +10,7 @@
10
10
  [[context.deploy-preview.plugins]]
11
11
  package = "netlify-plugin-checklinks"
12
12
  [context.deploy-preview.plugins.inputs]
13
- todoPatterns = [ "load", "CHANGELOG.html", "x.com", "twitter.com", "/v/" ]
13
+ todoPatterns = [ "load", "CHANGELOG.html", "x.com", "twitter.com", "/v/", "hub.docker.com" ]
14
14
  skipPatterns = [ ".rss", ".gif", ".jpg" ]
15
15
  checkExternal = true
16
16
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@lando/laravel",
3
3
  "description": "A Lando plugin that provides a tight integration with Laravel.",
4
- "version": "1.12.2",
4
+ "version": "1.12.3",
5
5
  "author": "Mike Pirog @pirog",
6
6
  "license": "MIT",
7
7
  "repository": "lando/laravel",
@@ -55,7 +55,7 @@
55
55
  "devDependencies": {
56
56
  "@babel/eslint-parser": "^7.23.10",
57
57
  "@lando/leia": "^1.0.0-beta.3",
58
- "@lando/vitepress-theme-default-plus": "^1.1.1",
58
+ "@lando/vitepress-theme-default-plus": "^1.1.5",
59
59
  "chai": "~4.3.4",
60
60
  "command-line-test": "^1.0.10",
61
61
  "eslint": "^8.56.0",
@@ -76,9 +76,9 @@
76
76
  "lodash"
77
77
  ],
78
78
  "dist": {
79
- "integrity": "sha512-lWCfH0s93gFfWQnz92U6fTMEYan8+Q9IQJkEb2/JNXwo083hCgUvCIRcpB4aytsRDN9ttLYhD0L9eMXDfuIftg==",
80
- "shasum": "d7f124ef83af7d808b64bf8b14ed44607262f3d7",
81
- "filename": "lando-laravel-1.12.2.tgz",
82
- "unpackedSize": 13204966
79
+ "integrity": "sha512-HFbCbiZcxVy0awruCuAT09SnXfSkEyjFnMhC/wr1esOqSeN9uQjAFf3Yvs0IzKeWWDKM8YBQHpCcu30Pnc9Nrw==",
80
+ "shasum": "aea1aa69cb212cbd112ba7c0f2e239ea65086673",
81
+ "filename": "lando-laravel-1.12.3.tgz",
82
+ "unpackedSize": 13205271
83
83
  }
84
84
  }