Skip to content

Commit 8e10f18

Browse files
committed
update deps and optimize for midcore
1 parent be1025f commit 8e10f18

27 files changed

+2192
-1921
lines changed

.eslintrc.json

Lines changed: 16 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,36 @@
11
{
22
"env": {
33
"node": true,
4-
"mocha": true
4+
"mocha": true,
5+
"es2021": true
56
},
67
"parser": "@babel/eslint-parser",
78
"parserOptions": {
89
"sourceType": "module",
910
"ecmaVersion": 8,
1011
"requireConfigFile": false
1112
},
12-
"extends": "google",
13+
"extends": [
14+
"eslint:recommended",
15+
"google"
16+
],
1317
"rules": {
1418
"arrow-parens": ["error",
1519
"as-needed"
1620
],
1721
"max-len": ["error", {
18-
"code": 120,
22+
"code": 140,
1923
"ignoreComments": true
2024
}],
25+
"no-empty": ["error", {
26+
"allowEmptyCatch": true
27+
}],
28+
"no-unused-vars": ["error", {
29+
"vars": "all",
30+
"args": "after-used",
31+
"ignoreRestSiblings": false
32+
}],
33+
2134
"require-jsdoc": ["error", {
2235
"require": {
2336
"FunctionDeclaration": true,

.github/workflows/pr-docs-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
os:
1212
- ubuntu-24.04
1313
node-version:
14-
- '18'
14+
- '20'
1515
steps:
1616
# Install deps and cache
1717
- name: Checkout code

.github/workflows/pr-linter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
os:
1212
- ubuntu-24.04
1313
node-version:
14-
- '18'
14+
- '20'
1515
steps:
1616
# Install deps and cache
1717
- name: Checkout code

.github/workflows/pr-symfony-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@ jobs:
2424
- examples/symfony-mysql8
2525
- examples/symfony-nginx
2626
lando-version:
27-
- 3-edge-slim
27+
- 3-edge
2828
os:
2929
- ubuntu-24.04
3030
node-version:
31-
- '18'
31+
- '20'
3232
steps:
3333

3434
- name: Checkout code

.github/workflows/pr-unit-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- ubuntu-24.04
1414
- macos-14
1515
node-version:
16-
- '18'
16+
- '20'
1717
steps:
1818
# Install deps and cache
1919
- name: Checkout code

.node-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
18
1+
20

.npmignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
.github
2+
.nyc_output
3+
coverage
24
docs
35
examples
46
guides

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
## {{ UNRELEASED_VERSION }} - [{{ UNRELEASED_DATE }}]({{ UNRELEASED_LINK }})
22

3+
* Optimized for `midcore`
4+
* Removed unneeded dep `@lando/apache`
5+
* Updated to [@lando/mariadb@1.6.3](https://github.com/lando/mariadb/releases/tag/v1.6.3).
6+
* Updated to [@lando/memcached@1.3.3](https://github.com/lando/mariadb/memcached/tag/v1.3.3).
7+
* Updated to [@lando/mssql@1.4.3](https://github.com/lando/mssql/releases/tag/v1.4.3).
8+
* Updated to [@lando/mysql@1.4.4](https://github.com/lando/mysql/releases/tag/v1.4.4).
9+
* Updated to [@lando/php@1.6.3](https://github.com/lando/php/releases/tag/v1.6.3).
10+
* Updated to [@lando/postgres@1.4.4](https://github.com/lando/postgres/releases/tag/v1.4.4).
11+
* Updated to [@lando/redis@1.2.3](https://github.com/lando/redis/releases/tag/v1.2.3).
12+
313
## v1.8.3 - [December 6, 2024](https://github.com/lando/symfony/releases/tag/v1.8.3)
414

515
* Updated the version index.md to get Docuverse page to build correctly.

builders/symfony-mariadb.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ const LandoMariadb = require('./../node_modules/@lando/mariadb/builders/mariadb.
77
module.exports = {
88
name: 'symfony-mariadb',
99
parent: '_service',
10-
builder: (parent, config) => class SymfonyMariadb extends LandoMariadb.builder(parent, LandoMariadb.config) {
10+
builder: parent => class SymfonyMariadb extends LandoMariadb.builder(parent, LandoMariadb.config) {
1111
constructor(id, options = {}) {
1212
super(id, options, {services: _.set({}, options.name)});
13-
};
13+
}
1414
},
1515
};

builders/symfony-memcached.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ const LandoMemcached = require('@lando/memcached/builders/memcached.js');
77
module.exports = {
88
name: 'symfony-memcached',
99
parent: '_service',
10-
builder: (parent, config) => class SymfonyMemcached extends LandoMemcached.builder(parent, LandoMemcached.config) {
10+
builder: parent => class SymfonyMemcached extends LandoMemcached.builder(parent, LandoMemcached.config) {
1111
constructor(id, options = {}) {
1212
super(id, options, {services: _.set({}, options.name)});
13-
};
13+
}
1414
},
1515
};

0 commit comments

Comments
 (0)