Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: send events directly to Kafka #332

Merged
merged 29 commits into from
May 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
4d393b4
fix: enable keep alive for HTTP requests made by the quoting service …
kalinkrustev Apr 19, 2024
8b190d0
chore(release): 15.7.1 [skip ci]
Apr 19, 2024
d0d6d41
chore: deps
kalinkrustev Apr 30, 2024
6ce57ed
chore: deps
kalinkrustev Apr 30, 2024
8efed3d
chore: deps
kalinkrustev Apr 30, 2024
2310b57
fix: excessive logging of http agent properties
kalinkrustev May 3, 2024
51db374
chore: deps
kalinkrustev May 4, 2024
c59055e
chore: deps
kalinkrustev May 7, 2024
a2bbb53
fix: error log
kalinkrustev May 8, 2024
1f2fe56
fix: stack overflow
kalinkrustev May 10, 2024
cdb794d
fix: report error stack
kalinkrustev May 10, 2024
248bf79
chore: deps
kalinkrustev May 20, 2024
c5a7d8d
fix: audit tags
kalinkrustev May 23, 2024
2392875
chore: build
kalinkrustev May 23, 2024
1220b56
chore: build
kalinkrustev May 23, 2024
2e76033
chore: build
kalinkrustev May 23, 2024
eaadeff
chore: build
kalinkrustev May 23, 2024
7653006
chore: build
kalinkrustev May 23, 2024
7b97356
fix: tags
kalinkrustev May 23, 2024
26f1b02
fix: tags
kalinkrustev May 23, 2024
73d3299
fix: remove repetitive auditing
kalinkrustev May 24, 2024
c36893a
fix: remove repetitive auditing
kalinkrustev May 24, 2024
af0567c
chore: deps
kalinkrustev May 24, 2024
65ab2f4
chore: deps
kalinkrustev May 28, 2024
6521833
fix: logging
kalinkrustev May 28, 2024
ac331fb
chore: deps
kalinkrustev May 28, 2024
c2465d6
chore: audit
kalinkrustev May 28, 2024
4570b43
Merge branch 'feat/fx-impl' into feat/event-kafka
kalinkrustev May 28, 2024
d151c0b
chore: upgrade node
kalinkrustev May 28, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ executors:
BASH_ENV: /etc/profile ## Ref: https://circleci.com/docs/env-vars/#alpine-linux
NVM_ARCH_UNOFFICIAL_OVERRIDE: x64-musl ## Ref: https://github.com/nvm-sh/nvm/issues/1102#issuecomment-550572252
docker:
- image: node:lts-alpine # Ref: https://hub.docker.com/_/node?tab=tags&page=1&name=alpine
- image: node:18.20.3-alpine3.19 # Ref: https://hub.docker.com/_/node/tags?name=18.20.3-alpine3.19

default-machine:
working_directory: *WORKING_DIR
Expand Down Expand Up @@ -372,8 +372,8 @@ jobs:
name: Build Docker local image
command: |
source ~/.profile
export DOCKER_NODE_VERSION="$NVMRC_VERSION-alpine"
echo "export DOCKER_NODE_VERSION=$NVMRC_VERSION-alpine" >> $BASH_ENV
export DOCKER_NODE_VERSION="$NVMRC_VERSION-alpine3.19"
echo "export DOCKER_NODE_VERSION=$NVMRC_VERSION-alpine3.19" >> $BASH_ENV
echo "Building Docker image: ${DOCKER_ORG:-mojaloop}/$CIRCLE_PROJECT_REPONAME:local --build-arg NODE_VERSION=$DOCKER_NODE_VERSION"
docker build -t ${DOCKER_ORG:-mojaloop}/$CIRCLE_PROJECT_REPONAME:local --build-arg NODE_VERSION=$DOCKER_NODE_VERSION .
- run:
Expand Down Expand Up @@ -584,7 +584,7 @@ jobs:
at: /tmp
- run:
name: Load the pre-built docker image from workspace
command: |
command: |
docker load -i /tmp/docker-image.tar
- run:
name: Login to Docker Hub
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
18.17.1
18.20.3
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

### [15.7.1](https://github.com/mojaloop/quoting-service/compare/v15.7.0...v15.7.1) (2024-04-19)


### Bug Fixes

* enable keep alive for HTTP requests made by the quoting service ([#330](https://github.com/mojaloop/quoting-service/issues/330)) ([4d393b4](https://github.com/mojaloop/quoting-service/commit/4d393b4b557556cc83fde1bcc314a80cffb91ef3))

## [15.7.0](https://github.com/mojaloop/quoting-service/compare/v15.6.0...v15.7.0) (2024-02-23)


Expand Down
2 changes: 2 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ x-quoting-service: &quotingServiceBase
cache_from:
- mojaloop/quoting-service
- quoting-service
args:
- NODE_VERSION=18-alpine3.19
environment:
- LOG_LEVEL=debug
- CSL_LOG_TRANSPORT=file
Expand Down
Loading