Skip to content

Commit aff5ffd

Browse files
committed
feat!: add elasticsearch, kibana and rabbitmq services
Patch function breaks functionality with the `WRONGTYPE` error: `WRONGTYPE Operation against a key holding the wrong kind of value` BREAKING CHANGE: patch functionality has a bug and is not working. This will be fixed in future releases.
1 parent 22f7857 commit aff5ffd

20 files changed

+1917
-1361
lines changed

.eslintrc.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,11 @@ module.exports = {
2424
'guard-for-in': 'off',
2525
'no-await-in-loop': 'off',
2626
'no-param-reassign': 'off',
27+
'no-return-await': 'off',
28+
'no-use-before-define': 'warn',
29+
'prefer-const': 'off',
30+
'new-cap': 'warn',
31+
'no-extra-boolean-cast': 'off',
32+
'no-restricted-globals': 'warn',
2733
},
2834
}

.releaserc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
{
1919
"assets": [
2020
"package.json",
21+
"package-lock.json",
2122
"CHANGELOG.md"
2223
],
2324
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"

docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: '3.0'
22
services:
33
elasticsearch:
44
container_name: elastic-container
5-
image: docker.elastic.co/elasticsearch/elasticsearch:8.11.1
5+
image: docker.elastic.co/elasticsearch/elasticsearch:7.12.0
66
restart: always
77
environment:
88
- xpack.security.enabled=false
@@ -13,7 +13,7 @@ services:
1313
- '9200:9200'
1414
kibana:
1515
container_name: kibana-container
16-
image: 'docker.elastic.co/kibana/kibana:8.11.1'
16+
image: 'docker.elastic.co/kibana/kibana:7.12.0'
1717
environment:
1818
- 'ELASTICSEARCH_HOSTS=http://elastic-container:9200'
1919
networks:

package-lock.json

Lines changed: 1266 additions & 951 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,13 @@
1414
"test:dev": "mocha --require @babel/register './tests/*.test.js' --watch"
1515
},
1616
"dependencies": {
17-
"@elastic/elasticsearch": "^8.10.0",
17+
"ajv": "^8.12.0",
1818
"amqplib": "^0.10.3",
1919
"app-root-path": "^3.1.0",
20-
"crypto": "^1.0.1",
2120
"dotenv": "^16.3.1",
21+
"elasticsearch": "^16.7.3",
2222
"express": "^4.18.2",
2323
"google-auth-library": "^9.2.0",
24-
"jsonschema": "^1.4.1",
2524
"redis": "^4.6.10",
2625
"winston": "^3.10.0"
2726
},

0 commit comments

Comments
 (0)