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

Human APP backend - 2nd milestone #1751

Merged
merged 20 commits into from
May 13, 2024
Merged

Commits on Mar 21, 2024

  1. Merge pull request #17 from blockydevs/error_handling

    Error handling - exception filters
    MWBlocky authored and BartoszSolkaBD committed Mar 21, 2024
    Configuration menu
    Copy the full SHA
    969973d View commit details
    Browse the repository at this point in the history
  2. Merge pull request #15 from blockydevs/10-jobs-discovery

    Endpoint to fetch jobs discovery
    MWBlocky authored and BartoszSolkaBD committed Mar 21, 2024
    Configuration menu
    Copy the full SHA
    10ef69b View commit details
    Browse the repository at this point in the history
  3. Merge pull request #16 from blockydevs/11-job-assignment

    Endpoint to assign a job to user and to retrieve assigned jobs
    MWBlocky authored and BartoszSolkaBD committed Mar 21, 2024
    Configuration menu
    Copy the full SHA
    bbeb5ad View commit details
    Browse the repository at this point in the history
  4. Merge pull request #18 from blockydevs/authorization-token-handling

    Middleware to pass the auth token
    MWBlocky authored and BartoszSolkaBD committed Mar 21, 2024
    Configuration menu
    Copy the full SHA
    964c586 View commit details
    Browse the repository at this point in the history
  5. Merge pull request #21 from blockydevs/unit_tests_fix

    fix: unit tests
    MWBlocky authored and BartoszSolkaBD committed Mar 21, 2024
    Configuration menu
    Copy the full SHA
    8d04a7d View commit details
    Browse the repository at this point in the history
  6. Merge pull request #14 from blockydevs/#13-Oracles-discovery

    Oracles-discovery
    macnablocky authored and BartoszSolkaBD committed Mar 21, 2024
    Configuration menu
    Copy the full SHA
    7b924e8 View commit details
    Browse the repository at this point in the history
  7. Merge pull request #20 from blockydevs/#Statistics-Exchange-oracle

    # Statistics exchange oracle
    macnablocky authored and BartoszSolkaBD committed Mar 21, 2024
    Configuration menu
    Copy the full SHA
    0c1f48b View commit details
    Browse the repository at this point in the history
  8. Naming covention alignemnt (#27)

    * Alignment of naming convention and endpoint structure
    
    * Alignment of naming convention and endpoint structure
    
    * ExchangeOracleApi->ExchangeOracle
    
    * externalApiGateway-> gateway
    
    * Coverage improvement
    macnablocky authored and BartoszSolkaBD committed Mar 21, 2024
    Configuration menu
    Copy the full SHA
    ee5e300 View commit details
    Browse the repository at this point in the history

Commits on Mar 22, 2024

  1. CI/CD workflow

    MWBlocky committed Mar 22, 2024
    Configuration menu
    Copy the full SHA
    9c3c6dd View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    7fd8cc6 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #28 from blockydevs/22-ci_cd_from_develop

    CI/CD workflow
    MWBlocky authored Mar 22, 2024
    Configuration menu
    Copy the full SHA
    0239b96 View commit details
    Browse the repository at this point in the history

Commits on Apr 18, 2024

  1. Merge branch 'refs/heads/develop-human' into human-mainrepo-update

    # Conflicts:
    #	yarn.lock
    macnablocky committed Apr 18, 2024
    Configuration menu
    Copy the full SHA
    8ade9ab View commit details
    Browse the repository at this point in the history
  2. Merge pull request #51 from blockydevs/human-mainrepo-update

    Human mainrepo update
    macnablocky authored Apr 18, 2024
    Configuration menu
    Copy the full SHA
    885168a View commit details
    Browse the repository at this point in the history

Commits on Apr 23, 2024

  1. Alignment after testing with stage exchange oracle (#29)

    * Fixes after check
    
    * Removes unnecessary comment
    
    * Fixes SDK limitation
    
    * Removes unnecessary interceptor, changes Body to Query in request for oracle discovery
    
    * Adds statistics related DTO interfaces with api mapping
    
    * Changes in interface naming convention of received data
    
    * Review fixes
    
    * Review fixes
    
    * Review fixes
    
    * Review fixes
    
    * Changes logic of calling exchange oracle: url is obtained based on the address provided in the enpoint. Adds CORS
    
    * Adds test coverage
    
    * Adds test coverage
    
    * Adds kv store to the modules that use it
    
    * minor fixes
    
    * minor fixes
    
    * Alignment of the swagger and interface used in the project
    
    * Minor fixes
    
    * Minor fixes
    
    * Minor fixes
    
    * Minor fixes
    
    * Removes todo
    
    * Review fixes
    
    * Review fixes
    
    * Review fixes
    
    * Review fixes
    macnablocky authored Apr 23, 2024
    Configuration menu
    Copy the full SHA
    2cdff35 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    10c4579 View commit details
    Browse the repository at this point in the history

Commits on May 9, 2024

  1. Fixes after code review (2024-05-07) (#75)

    * File `global-common.interface.ts` has been renamed to `global-common.ts`.
    
    * Renamed and moved EnvironmentVariableMissingError class.
    
    * Renamed and moved Pageable classes to utils directory.
    
    * Remove unused import in exchange-oracle.gateway.spec.ts
    
    * Remove console.log from fetchAssignedJobs method.
    
    * Update dependencies in package.json.
    
    * Update terminology in README.md
    
    * Remove unused Headers import from job-assignment.controller.ts
    
    * Removed OnModuleInit import from kv-store-gateway.service.ts
    
    * Corrected the data types for REDIS_PORT and REDIS_HOST in .env.example file.
    
    * Remove redundant volume configuration in Docker-compose
    
    * Add RPC_URL environment variable to docker-compose
    
    * Replace hardcoded URL_KEY in KvStoreGateway with imported constant.
    
    * fix: Update KVStoreClient import and test in KvStoreGateway
    
    * Add Reputation Oracle address to .env and refactor Oracle Discovery.
    
    * Add token authentication for Oracle statistics.
    
    * Remove manual environment variable check.
    
    * Refactor address to use escrowAddress in job assignment service.
    
    * Ensure environment variables validation takes place before module loading.
    
    * Revert "Add token authentication for Oracle statistics."
    
    * Update terminology from 'Interfaces' to 'Model' in README
    
    * Refactor PageableClasses to PageableDto and the file renamed from pageable-classes.ts to pageable.model.ts
    
    * Update KV store gateway test to use actual SDK.
    
    * Added REPUTATION_ORACLE_ADDRESS in app configuration and docker compose file.
    
    * Integrate and use EscrowUtils for job assignment processing.
    
    * Added chainId parameter to `getExchangeOracleAddressByEscrowAddress` method.
    
    * Remove redundant code KV-store gateway test
    
    * Update EscrowUtilsGateway tests.
    
    * Add mock ConfigService to oracle-discovery service test.
    
    * Revert "Add mock ConfigService to oracle-discovery service test."
    
    This reverts commit a2134ad.
    
    * Update oracle-discovery.service.spec.ts tests.
    MWBlocky authored May 9, 2024
    Configuration menu
    Copy the full SHA
    e7db099 View commit details
    Browse the repository at this point in the history

Commits on May 10, 2024

  1. Fixes CR 2024-05-10 (#78)

    * The KVStoreKeys.url constant is now directly called.
    
    * Changed Redis data volume path and updated gitignore.
    
    * Refactor oracle discovery and statistics modules.
    
    * Add CHAIN_IDS_ENABLED to .env.example
    MWBlocky authored May 10, 2024
    Configuration menu
    Copy the full SHA
    df518b3 View commit details
    Browse the repository at this point in the history

Commits on May 13, 2024

  1. Configuration menu
    Copy the full SHA
    9362c89 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #80 from blockydevs/fix_typo

    Fix typo in oracle-discovery.service file name and references
    MWBlocky authored May 13, 2024
    Configuration menu
    Copy the full SHA
    7d18e7f View commit details
    Browse the repository at this point in the history
  3. Merge develop

    MWBlocky committed May 13, 2024
    Configuration menu
    Copy the full SHA
    1fee79a View commit details
    Browse the repository at this point in the history