Skip to content

Commit

Permalink
feat(2151): helm-release-v12.1.0 (#223)
Browse files Browse the repository at this point in the history
- Bump to patch version
- Updated dependencies
- 'allow.auto.create.topics=true' had been added to Kafka Consumer configs. This will enable Kafka Consumers to trigger auto creation of topics, ref: https://github.com/edenhill/librdkafka/releases/tag/v1.5.0.
- Aligned package.json to Mojaloop sandards
- Fixed lint issues
  • Loading branch information
mdebarros authored Jun 7, 2021
1 parent 58d5ef2 commit d053097
Show file tree
Hide file tree
Showing 17 changed files with 1,498 additions and 1,555 deletions.
48 changes: 46 additions & 2 deletions audit-resolve.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,9 @@
"madeAt": 1598601559668
},
"1500|@mojaloop/central-services-shared>widdershins>yargs>yargs-parser": {
"decision": "postpone",
"madeAt": 1612867926240
"decision": "ignore",
"madeAt": 1623059277945,
"expiresAt": 1623664030727
},
"1179|faucet>minimist": {
"decision": "postpone",
Expand All @@ -31,6 +32,49 @@
"1500|@mojaloop/central-services-health>@mojaloop/central-services-shared>widdershins>yargs>yargs-parser": {
"decision": "postpone",
"madeAt": 1612867926240
},
"1654|@mojaloop/central-services-shared>widdershins>yargs>y18n": {
"decision": "fix",
"madeAt": 1623059258191
},
"1654|@mojaloop/event-sdk>grpc>protobufjs>yargs>y18n": {
"decision": "fix",
"madeAt": 1623059262777
},
"1673|@mojaloop/central-services-shared>data-urls>whatwg-url>lodash": {
"decision": "fix",
"madeAt": 1623059274382
},
"1673|@mojaloop/central-services-shared>openapi-backend>lodash": {
"decision": "fix",
"madeAt": 1623059274382
},
"1673|@mojaloop/central-services-shared>openapi-backend>mock-json-schema>lodash": {
"decision": "fix",
"madeAt": 1623059274382
},
"1673|@mojaloop/central-services-shared>shins>sanitize-html>lodash": {
"decision": "fix",
"madeAt": 1623059274382
},
"1673|request-promise>request-promise-core>lodash": {
"decision": "fix",
"madeAt": 1623059274382
},
"1675|@mojaloop/central-services-shared>shins>sanitize-html": {
"decision": "ignore",
"madeAt": 1623059280034,
"expiresAt": 1623664030727
},
"1676|@mojaloop/central-services-shared>shins>sanitize-html": {
"decision": "ignore",
"madeAt": 1623059280034,
"expiresAt": 1623664030727
},
"1693|@mojaloop/central-services-shared>shins>sanitize-html>postcss": {
"decision": "ignore",
"madeAt": 1623059281965,
"expiresAt": 1623664030727
}
},
"rules": {},
Expand Down
1 change: 1 addition & 0 deletions config/default.json
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@
"enable.auto.commit": false,
"auto.commit.interval.ms": 200,
"socket.keepalive.enable": true,
"allow.auto.create.topics": true,
"socket.max.fails": 1
},
"topicConf": {
Expand Down
1 change: 1 addition & 0 deletions docker/central-event-processor/default.json
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@
"enable.auto.commit": false,
"auto.commit.interval.ms": 200,
"socket.keepalive.enable": true,
"allow.auto.create.topics": true,
"socket.max.fails": 1
},
"topicConf": {
Expand Down
15 changes: 10 additions & 5 deletions docker/central-ledger/default.json
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,8 @@
"client.id": "cl-con-transfer-prepare",
"group.id": "cl-group-transfer-prepare",
"metadata.broker.list": "kafka:9092",
"socket.keepalive.enable": true
"socket.keepalive.enable": true,
"allow.auto.create.topics": true
},
"topicConf": {
"auto.offset.reset": "earliest"
Expand All @@ -111,7 +112,8 @@
"client.id": "cl-con-transfer-get",
"group.id": "cl-group-transfer-get",
"metadata.broker.list": "kafka:9092",
"socket.keepalive.enable": true
"socket.keepalive.enable": true,
"allow.auto.create.topics": true
},
"topicConf": {
"auto.offset.reset": "earliest"
Expand All @@ -134,7 +136,8 @@
"client.id": "cl-con-transfer-fulfil",
"group.id": "cl-group-transfer-fulfil",
"metadata.broker.list": "kafka:9092",
"socket.keepalive.enable": true
"socket.keepalive.enable": true,
"allow.auto.create.topics": true
},
"topicConf": {
"auto.offset.reset": "earliest"
Expand All @@ -157,7 +160,8 @@
"client.id": "cl-con-transfer-position",
"group.id": "cl-group-transfer-position",
"metadata.broker.list": "kafka:9092",
"socket.keepalive.enable": true
"socket.keepalive.enable": true,
"allow.auto.create.topics": true
},
"topicConf": {
"auto.offset.reset": "earliest"
Expand All @@ -182,7 +186,8 @@
"client.id": "cl-con-transfer-admin",
"group.id": "cl-group-transfer-admin",
"metadata.broker.list": "kafka:9092",
"socket.keepalive.enable": true
"socket.keepalive.enable": true,
"allow.auto.create.topics": true
},
"topicConf": {
"auto.offset.reset": "earliest"
Expand Down
Loading

0 comments on commit d053097

Please sign in to comment.