Skip to content

Commit

Permalink
fix: upgrade microfleet/knex, normalize account (#143)
Browse files Browse the repository at this point in the history
* fix: upgrade microfleet/knex, normalize account
* fix: toLowerCase() on meta
* fix: test postgres 15
  • Loading branch information
AVVS authored Feb 11, 2024
1 parent e449cba commit f417840
Show file tree
Hide file tree
Showing 4 changed files with 955 additions and 904 deletions.
21 changes: 12 additions & 9 deletions .mdeprc.cjs
Original file line number Diff line number Diff line change
@@ -1,19 +1,22 @@
require('dotenv').config()

module.exports = {
"node": "20.11",
"auto_compose": true,
"with_local_compose": true,
"test_framework": 'c8 /src/node_modules/.bin/mocha',
"services": [
node: "20.11",
auto_compose: true,
with_local_compose: true,
test_framework: 'c8 /src/node_modules/.bin/mocha',
services: [
"redisCluster",
"rabbitmq",
"postgres"
],
"extras": {
"tester": {
"environment": {
"NCONF_FILE_PATH": JSON.stringify(['/src/test/configs/config.js']),
extras: {
postgres: {
image: 'postgres:15-alpine'
},
tester: {
environment: {
NCONF_FILE_PATH: JSON.stringify(['/src/test/configs/config.js']),
}
}
},
Expand Down
43 changes: 22 additions & 21 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,42 +17,43 @@
"dependencies": {
"@fastify/deepmerge": "^1.3.0",
"@hapi/boom": "^10.0.1",
"@hapi/hapi": "^21.3.2",
"@microfleet/core": "^20.0.5",
"@microfleet/core-types": "^3.0.5",
"@microfleet/plugin-amqp": "^3.0.5",
"@microfleet/plugin-hapi": "^3.0.5",
"@microfleet/plugin-knex": "^5.0.5",
"@microfleet/plugin-logger": "^3.0.5",
"@microfleet/plugin-prometheus": "^3.0.5",
"@microfleet/plugin-router": "^3.0.5",
"@microfleet/plugin-router-amqp": "^3.0.5",
"@microfleet/plugin-router-hapi": "^3.0.5",
"@microfleet/plugin-validator": "^3.0.5",
"@hapi/hapi": "^21.3.3",
"@microfleet/core": "^20.1.2",
"@microfleet/core-types": "^3.1.2",
"@microfleet/plugin-amqp": "^3.1.2",
"@microfleet/plugin-hapi": "^3.1.2",
"@microfleet/plugin-knex": "^5.1.2",
"@microfleet/plugin-logger": "^3.1.2",
"@microfleet/plugin-prometheus": "^3.1.2",
"@microfleet/plugin-router": "^3.1.2",
"@microfleet/plugin-router-amqp": "^3.1.2",
"@microfleet/plugin-router-hapi": "^3.1.2",
"@microfleet/plugin-validator": "^3.1.2",
"@microfleet/transport-amqp": "^17.8.1",
"@microfleet/utils": "^3.0.5",
"@microfleet/utils": "^3.1.2",
"@microfleet/validation": "^12.0.0",
"@sentry/node": "^7.94.1",
"@sentry/node": "^7.100.1",
"bluebird": "^3.7.2",
"bn.js": "^5.2.1",
"common-errors": "^1.2.0",
"debug": "^4.3.4",
"get-value": "^3.0.1",
"glob": "^10.3.10",
"hwp": "^0.3.0",
"is": "^3.3.0",
"joi": "^17.12.0",
"joi": "^17.12.1",
"lodash": "^4.17.21",
"moment": "^2.30.1",
"ms-conf": "^8.2.1",
"p-limit": "^3.1.0",
"pg": "^8.11.3",
"pino": "^8.17.2",
"pino": "^8.18.0",
"prom-client": "^15.1.0",
"request": "^2.88.2",
"request-promise": "^4.2.6",
"retry": "^0.13.1",
"twitter": "^1.7.1",
"undici": "^6.4.0",
"undici": "^6.6.2",
"uuid": "^9.0.1",
"yargs": "^17.7.2"
},
Expand All @@ -66,18 +67,18 @@
"c8": "^9.1.0",
"chance": "^1.1.11",
"cross-env": "^7.0.3",
"dotenv": "^16.3.2",
"dotenv": "^16.4.2",
"eslint": "^8.56.0",
"eslint-config-makeomatic": "^6.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-mocha": "^10.2.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-unicorn": "^50.0.1",
"eslint-plugin-unicorn": "^51.0.1",
"json": "^11.0.0",
"mocha": "^10.2.0",
"mocha": "^10.3.0",
"rimraf": "^5.0.5",
"semantic-release": "^23.0.0",
"semantic-release": "^23.0.2",
"sinon": "^17.0.1"
},
"files": [
Expand Down
Loading

0 comments on commit f417840

Please sign in to comment.