-
Notifications
You must be signed in to change notification settings - Fork 16
merge: Sync changes from qa to main #307
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
Merged
Changes from all commits
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
c91011c
feat: added support for otel and signoz
tipusinghaw ddcb500
refactor: added comment
tipusinghaw c7b255e
refactor: resolved sonarcloud issues
tipusinghaw 73233d6
refactor: resolve trace issue
tipusinghaw 3acbd7e
Merge pull request #278 from credebl/feat/otel-and-signoz-integration
ajile-in 151d17f
refactor: changes env endpoint
tipusinghaw 4f62739
Merge pull request #279 from credebl/feat/otel-and-signoz-integration
tipusinghaw 09933b1
feat: update taskef for ARM arch (#290)
KambleSahil3 5ee6873
refactor: updated fargate taskdef for ARM arch (#292)
KambleSahil3 bd23cbd
feat: token mgmt and removal of duplicate routes . Updating Credo ver…
GHkrishna f63e261
fix: added patch for getFormatData
tipusinghaw 75d4f74
Merge pull request #293 from credebl/fix/error-handling-in-get-format…
tipusinghaw aa15ccb
fix: scopes for polygon controller to allow estimation of transaction…
GHkrishna edae4a3
feat: update dockerfile and workflow file to support multi arch (#294)
KambleSahil3 d8be6ac
fix: DCO remediation ability (#298)
GHkrishna 81cf411
Third-Party DCO Remediation Commit for Sahil Kamble <sahil.kamble@aya…
GHkrishna 272c17e
Merge pull request #296 from credebl/develop
KambleSahil3 5b159b4
fix: agent tenant auth health (#300)
GHkrishna eabc778
fix: Non wallet badge issuance error due to datatype check on api (#306)
sujitaw c7daf19
fix/verify credentials api
sujitaw a2dd44e
fix/verify credentials api (#308)
sujitaw aa38e9d
Third-Party DCO Remediation Commit for sujitaw <sujit.sutar@ayanworks…
sujitaw 795cfc2
Merge pull request #311 from credebl/fix/dco_issue_through_remediation
sujitaw b90cbaf
Merge pull request #309 from credebl/develop
sujitaw 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
This file was deleted.
Oops, something went wrong.
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,3 @@ | ||
| allowRemediationCommits: | ||
| individual: true | ||
| thirdParty: true |
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
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,6 +1,9 @@ | ||
| #!/usr/bin/env node | ||
| /* eslint-disable @typescript-eslint/no-var-requires, no-undef */ | ||
|
|
||
| const { runCliServer } = require('../build/cli') | ||
|
|
||
| runCliServer() | ||
| import('../build/cli.js') | ||
| .then((module) => { | ||
| module.runCliServer() | ||
| }) | ||
| .catch((err) => { | ||
| console.error('Error starting CLI server:', err) | ||
| process.exit(1) | ||
| }) |
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,98 @@ | ||
| import { fileURLToPath } from 'url'; | ||
| import { dirname } from 'path'; | ||
| import eslintPluginImport from 'eslint-plugin-import'; | ||
| import eslintPluginPrettier from 'eslint-plugin-prettier'; | ||
| import eslintPluginTypescript from '@typescript-eslint/eslint-plugin'; | ||
| import parser from '@typescript-eslint/parser'; | ||
|
|
||
| const __filename = fileURLToPath(import.meta.url); | ||
| const __dirname = dirname(__filename); | ||
|
|
||
| export default [ | ||
| { | ||
| ignores: [ | ||
| '**/tests/*', | ||
| '**/build/**', | ||
| '**/*.js', | ||
| '**/*.d.ts', | ||
| ], | ||
| files: ['**/*.ts'], | ||
| languageOptions: { | ||
| parser, | ||
| parserOptions: { | ||
| tsconfigRootDir: __dirname, | ||
| project: ['./tsconfig.eslint.json'], | ||
| sourceType: 'module', | ||
| }, | ||
| globals: { | ||
| console: false, // no-console rule | ||
| }, | ||
| }, | ||
| plugins: { | ||
| '@typescript-eslint': eslintPluginTypescript, | ||
| import: eslintPluginImport, | ||
| prettier: eslintPluginPrettier, | ||
| }, | ||
| rules: { | ||
| 'no-constant-condition': 'warn', | ||
| '@typescript-eslint/no-explicit-any': 'warn', | ||
| '@typescript-eslint/explicit-function-return-type': 'off', | ||
| '@typescript-eslint/explicit-module-boundary-types': 'off', | ||
| '@typescript-eslint/no-use-before-define': ['error', { functions: false, classes: false, variables: true }], | ||
| '@typescript-eslint/explicit-member-accessibility': 'error', | ||
| 'no-console': 'error', | ||
| '@typescript-eslint/ban-ts-comment': 'warn', | ||
| '@typescript-eslint/consistent-type-imports': 'error', | ||
| 'import/no-cycle': 'error', | ||
| 'import/order': [ | ||
| 'error', | ||
| { | ||
| groups: ['type', ['builtin', 'external'], 'parent', 'sibling', 'index'], | ||
| alphabetize: { | ||
| order: 'asc', | ||
| }, | ||
| 'newlines-between': 'always', | ||
| }, | ||
| ], | ||
| 'import/no-extraneous-dependencies': [ | ||
| 'error', | ||
| { | ||
| devDependencies: false, | ||
| }, | ||
| ], | ||
| 'prettier/prettier': 'error', | ||
| }, | ||
| }, | ||
| { | ||
| files: ['jest.config.ts', 'eslint.config.js'], | ||
| languageOptions: { | ||
| parserOptions: { | ||
| sourceType: 'commonjs', | ||
| }, | ||
| globals: { | ||
| require: true, | ||
| module: true, | ||
| __dirname: true, | ||
| }, | ||
| }, | ||
| }, | ||
| { | ||
| files: ['*.test.ts', '**/__tests__/**', '**/tests/**', 'jest.*.ts', '**/samples/**'], | ||
| languageOptions: { | ||
| globals: { | ||
| describe: true, | ||
| test: true, | ||
| expect: true, | ||
| jest: true, | ||
| }, | ||
| }, | ||
| rules: { | ||
| 'import/no-extraneous-dependencies': [ | ||
| 'error', | ||
| { | ||
| devDependencies: true, | ||
| }, | ||
| ], | ||
| }, | ||
| }, | ||
| ]; |
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
💡 Verification agent
🧩 Analysis chain
Node 20 + ubuntu-24.04 — pin Yarn via Corepack and tighten installs
To avoid Yarn version drift and improve reproducibility:
Detect Yarn setup:
Suggested steps:
- name: Setup node v20 uses: actions/setup-node@v4 with: node-version: 20 cache: 'yarn' + + - name: Enable Corepack + run: corepack enable + - name: Install dependencies - run: yarn install + run: | + if [ -f ".yarnrc.yml" ]; then yarn install --immutable; else yarn install --frozen-lockfile; fi🏁 Script executed:
Length of output: 209
Enable Corepack and enforce frozen lockfile
Add a Corepack‐enable step immediately after setting up Node, and use
yarn install --frozen-lockfilefor deterministic installs:- name: Setup node v20 uses: actions/setup-node@v4 with: node-version: 20 cache: 'yarn' + + - name: Enable Corepack + run: corepack enable📝 Committable suggestion
🧰 Tools
🪛 GitHub Check: CodeQL
[warning] 16-38: Workflow does not contain permissions
Actions job or workflow does not limit the permissions of the GITHUB_TOKEN. Consider setting an explicit permissions block, using the following as a minimal starting point: {{contents: read}}
🤖 Prompt for AI Agents