@lando/symfony 1.2.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.
- package/.nyc_output/processinfo/32ccf25d-b710-4efa-821a-5693e4df67d3.json +1 -0
- package/.nyc_output/processinfo/7032bc41-5dac-4d49-b79c-680a53cb1063.json +1 -0
- package/.nyc_output/processinfo/index.json +1 -1
- package/CHANGELOG.md +12 -0
- package/builders/symfony-memcached.js +1 -1
- package/builders/symfony.js +3 -0
- package/config/default.conf.tpl +2 -0
- package/config/{mysql.conf → mysql.cnf} +4 -2
- package/config/mysql8.cnf +3 -2
- package/config/php.ini +4 -2
- package/coverage/index.html +1 -1
- package/node_modules/@lando/memcached/.eslintignore +3 -2
- package/node_modules/@lando/memcached/CHANGELOG.md +4 -0
- package/node_modules/@lando/memcached/{services/memcached/builder.js → builders/memcached.js} +2 -1
- package/node_modules/@lando/memcached/netlify.toml +19 -4
- package/node_modules/@lando/memcached/package.json +11 -11
- package/node_modules/@lando/memcached/tmpfile +0 -0
- package/package.json +7 -7
- package/.nyc_output/processinfo/299cac68-dbb8-4b24-acd2-8012b3571371.json +0 -1
- package/.nyc_output/processinfo/6ba1ad2c-83ba-4626-aa89-18af23056190.json +0 -1
- /package/.nyc_output/{299cac68-dbb8-4b24-acd2-8012b3571371.json → 32ccf25d-b710-4efa-821a-5693e4df67d3.json} +0 -0
- /package/.nyc_output/{6ba1ad2c-83ba-4626-aa89-18af23056190.json → 7032bc41-5dac-4d49-b79c-680a53cb1063.json} +0 -0
- /package/node_modules/@lando/memcached/{services/memcached → config}/launch.sh +0 -0
|
@@ -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":{"
|
|
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,15 @@
|
|
|
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
|
+
|
|
7
|
+
## v1.3.0 - [February 21, 2024](https://github.com/lando/symfony/releases/tag/v1.3.0)
|
|
8
|
+
|
|
9
|
+
* Updated memcached plugin to [v1.1.0](https://github.com/lando/memcached/releases/tag/v1.1.0).
|
|
10
|
+
* Added testing of memcached.
|
|
11
|
+
* Fixed issue with proxy URLs not showing up.
|
|
12
|
+
|
|
1
13
|
## v1.2.0 - [February 19, 2024](https://github.com/lando/symfony/releases/tag/v1.2.0)
|
|
2
14
|
|
|
3
15
|
* Included ability to specify `database: mssql` in the `config` section to maintain backwards compatibility. [@lando/mssql#31](https://github.com/lando/mssql/issues/31)
|
package/builders/symfony.js
CHANGED
|
@@ -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
|
/*
|
|
@@ -221,6 +223,7 @@ module.exports = {
|
|
|
221
223
|
via: 'apache',
|
|
222
224
|
webroot: '.',
|
|
223
225
|
xdebug: false,
|
|
226
|
+
proxy: {},
|
|
224
227
|
},
|
|
225
228
|
builder: (parent, config) => class LandoSymfony extends parent {
|
|
226
229
|
constructor(id, options = {}) {
|
package/config/default.conf.tpl
CHANGED
|
@@ -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 =
|
|
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 =
|
|
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 =
|
|
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 =
|
|
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 =
|
|
37
|
-
max_input_time =
|
|
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
|
package/coverage/index.html
CHANGED
|
@@ -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-
|
|
89
|
+
at 2024-02-23T00:41:51.819Z
|
|
90
90
|
</div>
|
|
91
91
|
<script src="prettify.js"></script>
|
|
92
92
|
<script>
|
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
## v1.1.0 - [February 21, 2024](https://github.com/lando/memcached/releases/tag/v1.1.0)
|
|
2
|
+
|
|
3
|
+
* Updated directory structure to new format. [#30](https://github.com/lando/memcached/issues/30)
|
|
4
|
+
|
|
1
5
|
## v1.0.0 - [December 7, 2023](https://github.com/lando/memcached/releases/tag/v1.0.0)
|
|
2
6
|
|
|
3
7
|
* Dialed fully for `lando update`
|
package/node_modules/@lando/memcached/{services/memcached/builder.js → builders/memcached.js}
RENAMED
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
// Modules
|
|
4
4
|
const _ = require('lodash');
|
|
5
|
+
const path = require('path');
|
|
5
6
|
|
|
6
7
|
// Builder
|
|
7
8
|
module.exports = {
|
|
@@ -13,7 +14,7 @@ module.exports = {
|
|
|
13
14
|
'1': 'bitnami/memcached:1.6.1-debian-10-r4',
|
|
14
15
|
},
|
|
15
16
|
patchesSupported: true,
|
|
16
|
-
confSrc: __dirname,
|
|
17
|
+
confSrc: path.resolve(__dirname, '..', 'config'),
|
|
17
18
|
mem: 64,
|
|
18
19
|
port: '11211',
|
|
19
20
|
},
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[build]
|
|
2
2
|
base = "./"
|
|
3
|
-
publish = "docs/.
|
|
3
|
+
publish = "docs/.vitepress/dist"
|
|
4
4
|
command = "npm run docs:build"
|
|
5
5
|
|
|
6
6
|
# Sets our asset optimization
|
|
@@ -20,13 +20,28 @@
|
|
|
20
20
|
for = "/images/*"
|
|
21
21
|
[headers.values]
|
|
22
22
|
Cache-Control = "public, max-age=31536000"
|
|
23
|
-
|
|
23
|
+
|
|
24
|
+
# pluginz
|
|
25
|
+
# https://github.com/netlify/netlify-plugin-lighthouse#readme
|
|
26
|
+
[[plugins]]
|
|
27
|
+
package = "@netlify/plugin-lighthouse"
|
|
28
|
+
[plugins.inputs.audits]
|
|
29
|
+
output_path = "reports/lighthouse.html"
|
|
30
|
+
|
|
31
|
+
# https://github.com/munter/netlify-plugin-checklinks#readme
|
|
32
|
+
[[plugins]]
|
|
33
|
+
package = "netlify-plugin-checklinks"
|
|
34
|
+
[plugins.inputs]
|
|
35
|
+
todoPatterns = [ "load", "CHANGELOG.html", "x.com", "twitter.com" ]
|
|
36
|
+
skipPatterns = [ ".rss", ".gif", ".jpg" ]
|
|
37
|
+
checkExternal = true
|
|
38
|
+
|
|
24
39
|
# We need this so preview environments and the base site look ok on their own
|
|
25
40
|
[[redirects]]
|
|
26
41
|
from = "/"
|
|
27
|
-
to = "/memcached"
|
|
42
|
+
to = "/plugins/memcached"
|
|
28
43
|
status = 200
|
|
29
44
|
[[redirects]]
|
|
30
|
-
from = "/memcached/*"
|
|
45
|
+
from = "/plugins/memcached/*"
|
|
31
46
|
to = "/:splat"
|
|
32
47
|
status = 200
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lando/memcached",
|
|
3
3
|
"description": "A Lando plugin that provides a tight integration with Memcached.",
|
|
4
|
-
"version": "1.
|
|
4
|
+
"version": "1.1.0",
|
|
5
5
|
"author": "Mike Pirog @pirog",
|
|
6
6
|
"license": "GPL-3.0",
|
|
7
7
|
"repository": "lando/memcached",
|
|
@@ -33,10 +33,10 @@
|
|
|
33
33
|
},
|
|
34
34
|
"scripts": {
|
|
35
35
|
"coverage": "nyc report --reporter=text-lcov | coveralls",
|
|
36
|
-
"docs:dev": "
|
|
37
|
-
"docs:build": "
|
|
38
|
-
"docs:
|
|
39
|
-
"lint": "eslint --
|
|
36
|
+
"docs:dev": "vitepress dev docs",
|
|
37
|
+
"docs:build": "vitepress build docs",
|
|
38
|
+
"docs:preview": "vitepress preview docs",
|
|
39
|
+
"lint": "eslint . --ext .js --ext .mjs ",
|
|
40
40
|
"test:unit": "nyc --reporter=html --reporter=text mocha --timeout 5000 test/**/*.spec.js",
|
|
41
41
|
"test:leia": "leia \"examples/**/README.md\" -c 'Destroy tests' --stdin",
|
|
42
42
|
"test": "npm run lint && npm run test:unit"
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
"devDependencies": {
|
|
48
48
|
"@babel/eslint-parser": "^7.16.0",
|
|
49
49
|
"@lando/leia": "^0.6.5",
|
|
50
|
-
"@lando/
|
|
50
|
+
"@lando/vitepress-theme-default-plus": "^1.0.0-beta.39",
|
|
51
51
|
"chai": "^4.3.4",
|
|
52
52
|
"command-line-test": "^1.0.10",
|
|
53
53
|
"eslint": "^7.32.0",
|
|
@@ -55,15 +55,15 @@
|
|
|
55
55
|
"eslint-plugin-vue": "^8.0.3",
|
|
56
56
|
"mocha": "^9.1.2",
|
|
57
57
|
"nyc": "^15.1.0",
|
|
58
|
-
"
|
|
58
|
+
"vitepress": "^1.0.0-rc.42"
|
|
59
59
|
},
|
|
60
60
|
"bundledDependencies": [
|
|
61
61
|
"lodash"
|
|
62
62
|
],
|
|
63
63
|
"dist": {
|
|
64
|
-
"integrity": "sha512-
|
|
65
|
-
"shasum": "
|
|
66
|
-
"filename": "lando-memcached-1.
|
|
67
|
-
"unpackedSize":
|
|
64
|
+
"integrity": "sha512-vK38Ab4ubzfzM/5/JWI3GlTXEXAytwuMw14Yni/xp7ZXzi2D9uqez6x6A1M82mKthvW4qO8OP75uR4Is8aQE2Q==",
|
|
65
|
+
"shasum": "493d83aad1a7ee0572e951e28c437c5bc5b51377",
|
|
66
|
+
"filename": "lando-memcached-1.1.0.tgz",
|
|
67
|
+
"unpackedSize": 1466641
|
|
68
68
|
}
|
|
69
69
|
}
|
|
File without changes
|
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.
|
|
4
|
+
"version": "1.4.0",
|
|
5
5
|
"author": "Mike Pirog @pirog",
|
|
6
6
|
"license": "GPL-3.0",
|
|
7
7
|
"repository": "lando/symfony",
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"dependencies": {
|
|
45
45
|
"@lando/apache": "^1.0.0",
|
|
46
46
|
"@lando/mariadb": "^1.0.0",
|
|
47
|
-
"@lando/memcached": "^1.
|
|
47
|
+
"@lando/memcached": "^1.1.0",
|
|
48
48
|
"@lando/mssql": "^1.0.0",
|
|
49
49
|
"@lando/mysql": "^1.0.0",
|
|
50
50
|
"@lando/nginx": "^1.0.0",
|
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
"@babel/eslint-parser": "^7.23.10",
|
|
58
58
|
"@lando/leia": "^0.6.7",
|
|
59
59
|
"@lando/vitepress-theme-default-plus": "^1.0.0-beta.39",
|
|
60
|
-
"chai": "
|
|
60
|
+
"chai": "^4.3.4",
|
|
61
61
|
"command-line-test": "^1.0.10",
|
|
62
62
|
"eslint": "^8.56.0",
|
|
63
63
|
"eslint-config-google": "^0.14.0",
|
|
@@ -79,9 +79,9 @@
|
|
|
79
79
|
"lodash"
|
|
80
80
|
],
|
|
81
81
|
"dist": {
|
|
82
|
-
"integrity": "sha512-
|
|
83
|
-
"shasum": "
|
|
84
|
-
"filename": "lando-symfony-1.
|
|
85
|
-
"unpackedSize":
|
|
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":1869,"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":1708454999186,"ppid":1858,"coverageFilename":"/home/runner/work/symfony/symfony/.nyc_output/299cac68-dbb8-4b24-acd2-8012b3571371.json","externalId":"","uuid":"299cac68-dbb8-4b24-acd2-8012b3571371","files":[]}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"parent":null,"pid":1858,"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":1708454999032,"ppid":1857,"coverageFilename":"/home/runner/work/symfony/symfony/.nyc_output/6ba1ad2c-83ba-4626-aa89-18af23056190.json","externalId":"","uuid":"6ba1ad2c-83ba-4626-aa89-18af23056190","files":[]}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|