-
Notifications
You must be signed in to change notification settings - Fork 3
feat: Release V2.1.0 #235
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
Merged
feat: Release V2.1.0 #235
Changes from all commits
Commits
Show all changes
28 commits
Select commit
Hold shift + click to select a range
a7cdcc4
fix: use typology cfg and add completion log
Lenbkr 4dc944a
build: update log level for docker
Lenbkr a3263b8
Merge pull request #202 from frmscoe/endlog
Lenbkr fbacf99
feat(imports): add efrup features from new library
Lenbkr ffba348
ci(workflow): use new scope
Lenbkr a84790d
ci(workflow): use new token
Lenbkr 8b0b954
Merge pull request #216 from tazama-lf/feat/efrup
Justus-at-Tazama 61e37a2
chore(deps-dev): bump typescript from 5.5.3 to 5.6.2
dependabot[bot] 7945051
chore(deps-dev): bump micromatch from 4.0.7 to 4.0.8
dependabot[bot] 43e1a3c
feat: Env/validation (#226)
cshezi c669b74
Merge pull request #215 from tazama-lf/dependabot/npm_and_yarn/microm…
Justus-at-Tazama 6e329ab
Merge pull request #221 from tazama-lf/dependabot/npm_and_yarn/typesc…
Justus-at-Tazama ff67cdb
refactor: apply cache option environment variable split
cshezi da3da8a
test: add mock of the local cache vars
cshezi 28b2d51
Merge pull request #231 from tazama-lf/split-cache-options
cshezi 3ffb7e8
build: remove unused deps
2ce4444
Merge pull request #233 from tazama-lf/deps
rtkay123 89b3939
refactor: abstract service configs
651d847
test: mock env
d976f49
test: remove unused modules
faf38ba
build: update env
4ce6dae
build: bump lib ver
989a49a
Merge pull request #237 from tazama-lf/encapsulation
rtkay123 fa2d564
feat: updated networkcache
JeanPierreNell c3798e3
feat: updated tests
JeanPierreNell d191ad2
Merge pull request #246 from tazama-lf/multi-currency
JeanPierreNell e70193e
build: update libs (#255)
rtkay123 305a4ab
ci: sync workflows from central-workflows Signed-off-by: Scott <busin…
scott45 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,49 +1,56 @@ | ||
| # SPDX-License-Identifier: Apache-2.0 | ||
| NODE_TLS_REJECT_UNAUTHORIZED='0' | ||
|
|
||
| FUNCTION_NAME=transaction-aggregation-decisioning-processor | ||
| NODE_ENV=production | ||
| SERVER_URL=0.0.0.0:4222 | ||
| SIDECAR_HOST=0.0.0.0:4222 | ||
| NODE_ENV=dev | ||
| MAX_CPU= | ||
|
|
||
| # Redis | ||
| REDIS_DB=0 | ||
| REDIS_DATABASE=0 | ||
| REDIS_AUTH="exampleAuth" | ||
| REDIS_SERVERS='[{"host":"127.0.0.1", "port":6379}, {"host":"127.0.0.1", "port":6380}]' | ||
| REDIS_IS_CLUSTER=false | ||
| DISTRIBUTED_CACHETTL=300 | ||
| DISTRIBUTED_CACHE_ENABLED=true | ||
|
|
||
| # NODE CACHE | ||
| LOCAL_CACHETTL=300 | ||
| LOCAL_CACHE_ENABLED=true | ||
|
|
||
| # Database | ||
| TRANSACTION_HISTORY_DATABASE_CERT_PATH= | ||
| TRANSACTION_HISTORY_DATABASE_URL= | ||
| TRANSACTION_HISTORY_DATABASE_USER= | ||
| TRANSACTION_HISTORY_DATABASE_PASSWORD= | ||
| TRANSACTION_HISTORY_DATABASE= | ||
|
|
||
| CONFIG_DATABASE_CERT_PATH= | ||
| CONFIG_DATABASE_URL= | ||
| CONFIG_DATABASE_USER= | ||
| CONFIG_DATABASE_PASSWORD= | ||
| CONFIG_DATABASE= | ||
|
|
||
| TRANSACTION_DATABASE_CERT_PATH= | ||
| TRANSACTION_DATABASE_URL= | ||
| TRANSACTION_DATABASE_USER= | ||
| TRANSACTION_DATABASE_PASSWORD= | ||
| TRANSACTION_DATABASE= | ||
| TRANSACTION_HISTORY_DATABASE_URL=http://0.0.0.0:18529 | ||
| TRANSACTION_HISTORY_DATABASE_USER='root' | ||
| TRANSACTION_HISTORY_DATABASE_PASSWORD='' | ||
| TRANSACTION_HISTORY_DATABASE='transactionHistory' | ||
|
|
||
| CONFIGURATION_DATABASE_CERT_PATH= | ||
| CONFIGURATION_DATABASE_URL=http://0.0.0.0:18529 | ||
| CONFIGURATION_DATABASE_USER='root' | ||
| CONFIGURATION_DATABASE_PASSWORD='' | ||
| CONFIGURATION_DATABASE='configuration' | ||
|
|
||
| EVALUATION_DATABASE_CERT_PATH= | ||
| EVALUATION_DATABASE_URL=http://0.0.0.0:18529 | ||
| EVALUATION_DATABASE_USER='root' | ||
| EVALUATION_DATABASE_PASSWORD='' | ||
| EVALUATION_DATABASE='evaluationResults' | ||
|
|
||
| # Alert | ||
| SUPPRESS_ALERTS=false | ||
|
|
||
| # Apm | ||
| APM_ACTIVE=true | ||
| APM_SERVICE_NAME=transaction-aggregation-decisioning-processor | ||
| APM_ACTIVE=false | ||
| APM_URL=http://apm-server.development:8200 | ||
| APM_SECRET_TOKEN= | ||
|
|
||
| # Logstash | ||
| LOGSTASH_HOST=logstash.development | ||
| LOGSTASH_PORT=8080 | ||
| LOGSTASH_LEVEL='info' | ||
| SIDECAR_HOST=0.0.0.0:5000 | ||
|
|
||
| # Nats | ||
| PRODUCER_STREAM= | ||
| PRODUCER_STREAM=TEMP | ||
| STARTUP_TYPE=nats | ||
| SERVER_URL=0.0.0.0:4222 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,57 @@ | ||
| # SPDX-License-Identifier: Apache-2.0 | ||
|
|
||
| # This GitHub Actions workflow checks that all commits in a pull request (PR) have a "Signed-off-by" line to ensure Developer Certificate of Origin (DCO) compliance. | ||
|
|
||
| # Please do not attempt to edit this flow without the direct consent from the DevOps team. This file is managed centrally. | ||
|
|
||
| name: DCO | ||
|
|
||
| # Trigger the workflow on pull request events | ||
| on: [pull_request] | ||
|
|
||
| jobs: | ||
| dco: | ||
| if: github.actor != 'dependabot[bot]' && github.actor != 'dependabot-preview[bot]' | ||
| # Define the runner environment | ||
| runs-on: ubuntu-latest | ||
|
|
||
| steps: | ||
| # Step to check out the repository | ||
| - uses: actions/checkout@v4 | ||
| with: | ||
| fetch-depth: 0 # Fetch all history for all branches to ensure complete commit history is available | ||
|
|
||
| - name: Set up environment variables | ||
|
||
| run: | | ||
| echo "BASE_BRANCH=${{ github.event.pull_request.base.ref }}" >> $GITHUB_ENV | ||
| echo "HEAD_BRANCH=${{ github.event.pull_request.head.ref }}" >> $GITHUB_ENV | ||
|
|
||
| # Step to check each commit in the pull request for a Signed-off-by line | ||
| - name: Check for DCO Sign-off | ||
| run: | | ||
| # Get the base branch and head branch of the pull request | ||
| base_branch=$BASE_BRANCH | ||
| head_branch=$HEAD_BRANCH | ||
|
|
||
| # Get the list of commit hashes between the head branch and base branch | ||
| commits=$(git log --pretty=format:%H origin/${head_branch}..origin/${base_branch}) | ||
| non_compliant_commits="" | ||
|
|
||
| # Loop through each commit and check for the Signed-off-by line | ||
| for commit in $commits; do | ||
| # Check if the commit message contains the Signed-off-by line | ||
| if ! git show --quiet --format=%B $commit | grep -q "^Signed-off-by: "; then | ||
| # If not, add the commit hash to the list of non-compliant commits | ||
| non_compliant_commits="$non_compliant_commits $commit" | ||
| fi | ||
| done | ||
|
|
||
| # If there are any non-compliant commits, output their hashes and fail the job | ||
| if [ -n "$non_compliant_commits" ]; then | ||
| echo "The following commits do not have a Signed-off-by line:" | ||
| for commit in $non_compliant_commits; do | ||
| echo "- $commit" | ||
| done | ||
| exit 1 | ||
| fi | ||
| shell: bash | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,52 @@ | ||
| # SPDX-License-Identifier: Apache-2.0 | ||
|
|
||
| # This workflow uses actions that are not certified by GitHub. | ||
| # They are provided by a third-party and are governed by | ||
| # separate terms of service, privacy policy, and support | ||
| # documentation. | ||
| # hadoint is a Dockerfile linter written in Haskell | ||
| # that helps you build best practice Docker images. | ||
| # More details at https://github.com/hadolint/hadolint | ||
|
|
||
| # Please do not attempt to edit this flow without the direct consent from the DevOps team. This file is managed centrally. | ||
|
|
||
| name: Hadolint | ||
|
|
||
| on: | ||
| push: | ||
| branches: [ "dev", "main" ] | ||
| pull_request: | ||
| # The branches below must be a subset of the branches above | ||
| branches: [ "dev" ] | ||
| schedule: | ||
| - cron: '17 13 * * 0' | ||
|
|
||
| permissions: | ||
| contents: read | ||
|
|
||
| jobs: | ||
| hadolint: | ||
| if: github.actor != 'dependabot[bot]' && github.actor != 'dependabot-preview[bot]' | ||
| name: Run hadolint scanning | ||
| runs-on: ubuntu-latest | ||
| permissions: | ||
| contents: read # for actions/checkout to fetch code | ||
| security-events: write # for github/codeql-action/upload-sarif to upload SARIF results | ||
| actions: read # only required for a private repository by github/codeql-action/upload-sarif to get the Action run status | ||
| steps: | ||
| - name: Checkout code | ||
| uses: actions/checkout@v4 | ||
|
|
||
| - name: Run hadolint | ||
| uses: hadolint/hadolint-action@f988afea3da57ee48710a9795b6bb677cc901183 | ||
| with: | ||
| dockerfile: ./Dockerfile | ||
| format: sarif | ||
| output-file: hadolint-results.sarif | ||
| no-fail: true | ||
|
|
||
| - name: Upload analysis results to GitHub | ||
| uses: github/codeql-action/upload-sarif@v3 | ||
| with: | ||
| sarif_file: hadolint-results.sarif | ||
| wait-for-processing: true |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.