@lando/symfony 1.3.0 → 1.4.0

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.
@@ -0,0 +1 @@
1
+ {"parent":null,"pid":1870,"argv":["/opt/hostedtoolcache/node/18.19.1/x64/bin/node","/home/runner/work/symfony/symfony/node_modules/.bin/mocha","--timeout","5000","test/**/*.spec.js"],"execArgv":[],"cwd":"/home/runner/work/symfony/symfony","time":1708648911623,"ppid":1859,"coverageFilename":"/home/runner/work/symfony/symfony/.nyc_output/32ccf25d-b710-4efa-821a-5693e4df67d3.json","externalId":"","uuid":"32ccf25d-b710-4efa-821a-5693e4df67d3","files":[]}
@@ -0,0 +1 @@
1
+ {"parent":null,"pid":1859,"argv":["/opt/hostedtoolcache/node/18.19.1/x64/bin/node","/home/runner/work/symfony/symfony/node_modules/.bin/nyc","--reporter=html","--reporter=text","mocha","--timeout","5000","test/**/*.spec.js"],"execArgv":[],"cwd":"/home/runner/work/symfony/symfony","time":1708648911471,"ppid":1858,"coverageFilename":"/home/runner/work/symfony/symfony/.nyc_output/7032bc41-5dac-4d49-b79c-680a53cb1063.json","externalId":"","uuid":"7032bc41-5dac-4d49-b79c-680a53cb1063","files":[]}
@@ -1 +1 @@
1
- {"processes":{"ab9d0f17-1878-4f8b-9fdc-274a42304209":{"parent":null,"children":[]},"dcd4683f-c215-4a0e-bf8e-0b85e0ab5e93":{"parent":null,"children":[]}},"files":{},"externalIds":{}}
1
+ {"processes":{"32ccf25d-b710-4efa-821a-5693e4df67d3":{"parent":null,"children":[]},"7032bc41-5dac-4d49-b79c-680a53cb1063":{"parent":null,"children":[]}},"files":{},"externalIds":{}}
package/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ ## v1.4.0 - [February 22, 2024](https://github.com/lando/symfony/releases/tag/v1.4.0)
2
+
3
+ ### Fixes
4
+
5
+ * Fixed `CRITICAL` issue with default config files not loading correctly.
6
+
1
7
  ## v1.3.0 - [February 21, 2024](https://github.com/lando/symfony/releases/tag/v1.3.0)
2
8
 
3
9
  * Updated memcached plugin to [v1.1.0](https://github.com/lando/memcached/releases/tag/v1.1.0).
@@ -190,6 +190,8 @@ const getConfigDefaults = options => {
190
190
  delete options.defaultFiles[type];
191
191
  }
192
192
  });
193
+
194
+ return options.defaultFiles;
193
195
  };
194
196
 
195
197
  /*
@@ -1,3 +1,5 @@
1
+ # LANDOSYMFONYNGINXCONF
2
+
1
3
  server {
2
4
 
3
5
  listen 80 default_server;
@@ -1,6 +1,8 @@
1
1
  #
2
2
  # The MySQL database server configuration file for Lando
3
3
  #
4
+ # LANDOSYMFONYMYSQLCNF
5
+
4
6
 
5
7
  [mysqld]
6
8
  #
@@ -71,7 +73,7 @@ max_binlog_size = 100M
71
73
  #innodb_buffer_pool_size = 384M
72
74
  #innodb_additional_mem_pool_size = 20M
73
75
  # Set .._log_file_size to 25 % of buffer pool size
74
- innodb_log_file_size = 100M
76
+ innodb_log_file_size = 101M
75
77
  #innodb_log_buffer_size = 8M
76
78
  innodb_flush_log_at_trx_commit = 0
77
79
  #innodb_lock_wait_timeout = 50
@@ -82,7 +84,7 @@ innodb_open_files = 256
82
84
  innodb_io_capacity = 512
83
85
  innodb_flush_method = O_DIRECT
84
86
  innodb_thread_concurrency = 8
85
- innodb_lock_wait_timeout = 120
87
+ innodb_lock_wait_timeout = 121
86
88
  #
87
89
  # * Security Features
88
90
  #
package/config/mysql8.cnf CHANGED
@@ -1,6 +1,7 @@
1
1
  #
2
2
  # The MySQL database server configuration file for Lando
3
3
  #
4
+ # LANDOSYMFONYMYSQL8CNF
4
5
 
5
6
  [mysqld]
6
7
  #
@@ -49,7 +50,7 @@ read_buffer_size = 2M
49
50
  #server-id = 1
50
51
  #log_bin = /src/.lando/log/mysql-bin.log
51
52
  expire_logs_days = 10
52
- max_binlog_size = 100M
53
+ max_binlog_size = 101M
53
54
  #binlog_do_db = include_database_name
54
55
  #binlog_ignore_db = include_database_name
55
56
  #
@@ -77,7 +78,7 @@ innodb_open_files = 256
77
78
  innodb_io_capacity = 512
78
79
  innodb_flush_method = O_DIRECT
79
80
  innodb_thread_concurrency = 8
80
- innodb_lock_wait_timeout = 120
81
+ innodb_lock_wait_timeout = 127
81
82
  #
82
83
  # * Security Features
83
84
  #
package/config/php.ini CHANGED
@@ -1,5 +1,7 @@
1
1
  [PHP]
2
2
 
3
+ ; LANDOSYMFONYPHPINI
4
+
3
5
  ;;;;;;;;;;;;;;;
4
6
  ; PHP Globals ;
5
7
  ;;;;;;;;;;;;;;;
@@ -33,8 +35,8 @@ xdebug.collect_params = 0
33
35
 
34
36
  ; Globals
35
37
  expose_php = on
36
- max_execution_time = 90
37
- max_input_time = 900
38
+ max_execution_time = 91
39
+ max_input_time = 901
38
40
  max_input_vars = 10000
39
41
  memory_limit = ${PHP_MEMORY_LIMIT}
40
42
  upload_max_filesize = 100M
@@ -86,7 +86,7 @@
86
86
  <div class='footer quiet pad2 space-top1 center small'>
87
87
  Code coverage generated by
88
88
  <a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
89
- at 2024-02-21T19:46:23.023Z
89
+ at 2024-02-23T00:41:51.819Z
90
90
  </div>
91
91
  <script src="prettify.js"></script>
92
92
  <script>
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.3.0",
4
+ "version": "1.4.0",
5
5
  "author": "Mike Pirog @pirog",
6
6
  "license": "GPL-3.0",
7
7
  "repository": "lando/symfony",
@@ -79,9 +79,9 @@
79
79
  "lodash"
80
80
  ],
81
81
  "dist": {
82
- "integrity": "sha512-Z5oPUbrUgEvIq8ROSzEfrPN2OTKyki93qfSTjam0Q+TCWqVqnQrOud13POXSPZ/j+ek0eimF+XRwJ5H0KVlpjA==",
83
- "shasum": "2968fefd74d32463009112944c8a886e7cf9f5c4",
84
- "filename": "lando-symfony-1.3.0.tgz",
85
- "unpackedSize": 16648874
82
+ "integrity": "sha512-ARGTzdsTD3m5Vdy0zjCvZpcHAY3lTQb98VVX+jfmssaZIwwwKIEP5rLLj2El7W7+XVhLy0w+TvQmfxS1ec8RyQ==",
83
+ "shasum": "224067ef35e184ae490db1ba91be7a7a18f9b024",
84
+ "filename": "lando-symfony-1.4.0.tgz",
85
+ "unpackedSize": 16649174
86
86
  }
87
87
  }
@@ -1 +0,0 @@
1
- {"parent":null,"pid":1864,"argv":["/opt/hostedtoolcache/node/18.19.1/x64/bin/node","/home/runner/work/symfony/symfony/node_modules/.bin/mocha","--timeout","5000","test/**/*.spec.js"],"execArgv":[],"cwd":"/home/runner/work/symfony/symfony","time":1708544782819,"ppid":1853,"coverageFilename":"/home/runner/work/symfony/symfony/.nyc_output/ab9d0f17-1878-4f8b-9fdc-274a42304209.json","externalId":"","uuid":"ab9d0f17-1878-4f8b-9fdc-274a42304209","files":[]}
@@ -1 +0,0 @@
1
- {"parent":null,"pid":1853,"argv":["/opt/hostedtoolcache/node/18.19.1/x64/bin/node","/home/runner/work/symfony/symfony/node_modules/.bin/nyc","--reporter=html","--reporter=text","mocha","--timeout","5000","test/**/*.spec.js"],"execArgv":[],"cwd":"/home/runner/work/symfony/symfony","time":1708544782660,"ppid":1852,"coverageFilename":"/home/runner/work/symfony/symfony/.nyc_output/dcd4683f-c215-4a0e-bf8e-0b85e0ab5e93.json","externalId":"","uuid":"dcd4683f-c215-4a0e-bf8e-0b85e0ab5e93","files":[]}