@lando/symfony 1.12.1 → 1.12.2

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.2 - [March 2, 2026](https://github.com/lando/symfony/releases/tag/v1.12.2)
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.1 - [February 20, 2026](https://github.com/lando/symfony/releases/tag/v1.12.1)
4
9
 
5
10
  * Updated to [@lando/php@^1.11.1](https://github.com/lando/php/releases/tag/v1.11.1) for PHP 8.5 and MySQL client fixes
@@ -50,7 +50,6 @@ const getServices = options => ({
50
50
  },
51
51
  database: {
52
52
  config: getServiceConfig(options, ['database']),
53
- authentication: 'mysql_native_password',
54
53
  type: `symfony-${options.database}`,
55
54
  portforward: true,
56
55
  creds: {
@@ -103,7 +102,7 @@ const getDatabaseType = options => {
103
102
  const toolingDefaults = {
104
103
  'composer': {
105
104
  service: 'appserver',
106
- cmd: 'composer --ansi',
105
+ cmd: 'composer',
107
106
  },
108
107
  'db-import <file>': {
109
108
  service: ':host',
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/symfony",
3
3
  "description": "A Lando plugin that provides a tight integration with Symfony.",
4
- "version": "1.12.1",
4
+ "version": "1.12.2",
5
5
  "author": "Mike Pirog @pirog",
6
6
  "license": "MIT",
7
7
  "repository": "lando/symfony",
@@ -77,9 +77,9 @@
77
77
  "lodash"
78
78
  ],
79
79
  "dist": {
80
- "integrity": "sha512-sw7vQG5XfVrs/zQgZjahDCb/FGflGZvr4tVEcWIzEf6IcxkxsoGfxbgGctx1OQcErFXSYzDGZZBXC3mbRvuUMw==",
81
- "shasum": "3dc8511d633638f790dffc1bd05fbd023fb29aa5",
82
- "filename": "lando-symfony-1.12.1.tgz",
83
- "unpackedSize": 13198426
80
+ "integrity": "sha512-rh4dweGCaozrU29h9FneXxzrn4LKRCtE0TaYf1pWQd6iBwrone52SHNiw68XpsWmvJtsKZvlUut8kgQcac5sig==",
81
+ "shasum": "540153118f9c8b15d93e4aa7cfbd24eb7f795d5a",
82
+ "filename": "lando-symfony-1.12.2.tgz",
83
+ "unpackedSize": 13198731
84
84
  }
85
85
  }