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

For 3.9.4 #111

Merged
merged 34 commits into from
Jun 17, 2021
Merged

For 3.9.4 #111

merged 34 commits into from
Jun 17, 2021

Commits on Mar 26, 2021

  1. feat(mongoDB): create service for db operations

    - util.js for commonly used utility functions that are consumed by database service
    - jsDOC for each method added, with references to mongoDB documentation for respective functions
    - all database operations encapsulated into one parent class
    - single point connector that provides connection instances to entire project
    - kills application process if connection fails
    - provision to support multiple database connections
    YashKumarVerma committed Mar 26, 2021
    Configuration menu
    Copy the full SHA
    06007a0 View commit details
    Browse the repository at this point in the history
  2. refactor(handler): integrate db service, callback->async-await

    - transform callbacks to async-await syntax
    - replace direct database calls with db-service calls
    - refactor monitor to eliminate redundant code
    YashKumarVerma committed Mar 26, 2021
    Configuration menu
    Copy the full SHA
    43da6cb View commit details
    Browse the repository at this point in the history

Commits on Mar 27, 2021

  1. Configuration menu
    Copy the full SHA
    18fcc0d View commit details
    Browse the repository at this point in the history

Commits on Apr 1, 2021

  1. Configuration menu
    Copy the full SHA
    7a50ef5 View commit details
    Browse the repository at this point in the history
  2. test(db): add unit tests for db service

    - unit tests for connector
    - unit tests for util
    - log functions for db service methods
    - handle cases with invalid ObjectID
    YashKumarVerma committed Apr 1, 2021
    Configuration menu
    Copy the full SHA
    41e742b View commit details
    Browse the repository at this point in the history

Commits on Apr 12, 2021

  1. Configuration menu
    Copy the full SHA
    383ac1f View commit details
    Browse the repository at this point in the history

Commits on Apr 13, 2021

  1. chore(setup): add setup script to initialize project

    - generates keys by calling keys/make_key.sh if not exists
    - install node modules if not exists
    - generates a routes.json file from routes.json.example if not exists
    - generates .env file from .env.example if not exists
    - downloads latest seeding script from distro repo and runs against user database
    - allows custom database name and host during run
    YashKumarVerma committed Apr 13, 2021
    Configuration menu
    Copy the full SHA
    9793afa View commit details
    Browse the repository at this point in the history
  2. Merge pull request #93 from YashKumarVerma/issue/92/setup-script

    chore(setup): add setup script to initialize project
    birm authored Apr 13, 2021
    Configuration menu
    Copy the full SHA
    d0c68cb View commit details
    Browse the repository at this point in the history

Commits on Apr 15, 2021

  1. Configuration menu
    Copy the full SHA
    f91a9a6 View commit details
    Browse the repository at this point in the history

Commits on Apr 19, 2021

  1. Merge pull request #90 from YashKumarVerma/database-separation

    Add service for single point of interaction with database
    birm authored Apr 19, 2021
    Configuration menu
    Copy the full SHA
    e442030 View commit details
    Browse the repository at this point in the history

Commits on Apr 26, 2021

  1. ignore node_modules in docker

    birm authored Apr 26, 2021
    Configuration menu
    Copy the full SHA
    6d9786f View commit details
    Browse the repository at this point in the history

Commits on Apr 28, 2021

  1. fix typo in pubkey check

    birm authored Apr 28, 2021
    Configuration menu
    Copy the full SHA
    8221a6f View commit details
    Browse the repository at this point in the history

Commits on Apr 29, 2021

  1. hotfix ci build

    birm committed Apr 29, 2021
    Configuration menu
    Copy the full SHA
    ff4fc58 View commit details
    Browse the repository at this point in the history
  2. ignore node_modules in docker

    birm committed Apr 29, 2021
    Configuration menu
    Copy the full SHA
    51a2ef2 View commit details
    Browse the repository at this point in the history
  3. fix typo in pubkey check

    birm committed Apr 29, 2021
    Configuration menu
    Copy the full SHA
    8ab1baa View commit details
    Browse the repository at this point in the history
  4. Merge pull request #97 from camicroscope/master

    Master into dev
    birm authored Apr 29, 2021
    Configuration menu
    Copy the full SHA
    cdc0959 View commit details
    Browse the repository at this point in the history

Commits on May 3, 2021

  1. Configuration menu
    Copy the full SHA
    2261887 View commit details
    Browse the repository at this point in the history

Commits on May 4, 2021

  1. update setup_script

    siddhanth339 committed May 4, 2021
    Configuration menu
    Copy the full SHA
    05bd6cc View commit details
    Browse the repository at this point in the history

Commits on May 5, 2021

  1. Update README.md

    siddhanth339 authored May 5, 2021
    Configuration menu
    Copy the full SHA
    39348d8 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b3d441a View commit details
    Browse the repository at this point in the history
  3. Merge branch 'backup-dev' of https://github.com/siddhanth339/Caracal

    …into backup-dev
    
    updated setup script
    siddhanth339 committed May 5, 2021
    Configuration menu
    Copy the full SHA
    76c4ac9 View commit details
    Browse the repository at this point in the history

Commits on May 7, 2021

  1. fix(db): await before dataTransformationHandler call

    - wait for database to initialize before calling dataTransformationHandler
    YashKumarVerma committed May 7, 2021
    Configuration menu
    Copy the full SHA
    a986e1b View commit details
    Browse the repository at this point in the history
  2. update dependencies

    birm committed May 7, 2021
    Configuration menu
    Copy the full SHA
    faa16df View commit details
    Browse the repository at this point in the history
  3. Merge pull request #98 from YashKumarVerma/issue/96/fix

    wait for database to initialize before db calls
    birm authored May 7, 2021
    Configuration menu
    Copy the full SHA
    7067762 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    ea2b00c View commit details
    Browse the repository at this point in the history
  5. Merge pull request #101 from siddhanth339/backup-dev

    Update setup_script to fetch landing page
    birm authored May 7, 2021
    Configuration menu
    Copy the full SHA
    1d7e113 View commit details
    Browse the repository at this point in the history

Commits on May 9, 2021

  1. test(database): unit tests for remaining functions

    - initialize connection inside test file (#104)
    - tests for @todo items
    - .aggregate()
    - .delete()
    - .find()
    - .update()
    - .distinct()
    YashKumarVerma committed May 9, 2021
    Configuration menu
    Copy the full SHA
    557ecdc View commit details
    Browse the repository at this point in the history

Commits on May 10, 2021

  1. Bump lodash from 4.17.19 to 4.17.21

    Bumps [lodash](https://github.com/lodash/lodash) from 4.17.19 to 4.17.21.
    - [Release notes](https://github.com/lodash/lodash/releases)
    - [Commits](lodash/lodash@4.17.19...4.17.21)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] authored May 10, 2021
    Configuration menu
    Copy the full SHA
    7fa2025 View commit details
    Browse the repository at this point in the history

Commits on May 14, 2021

  1. Merge pull request #106 from YashKumarVerma/database-tests-todo

    Add connection, remaining database tests
    birm authored May 14, 2021
    Configuration menu
    Copy the full SHA
    725e00c View commit details
    Browse the repository at this point in the history

Commits on May 19, 2021

  1. Merge pull request #103 from camicroscope/backup-dev

    Reintroduce Backup Dev into Dev
    birm authored May 19, 2021
    Configuration menu
    Copy the full SHA
    feeea61 View commit details
    Browse the repository at this point in the history

Commits on May 20, 2021

  1. Merge pull request #107 from camicroscope/dependabot/npm_and_yarn/lod…

    …ash-4.17.21
    
    Bump lodash from 4.17.19 to 4.17.21
    birm authored May 20, 2021
    Configuration menu
    Copy the full SHA
    921d540 View commit details
    Browse the repository at this point in the history

Commits on Jun 7, 2021

  1. try node 16

    birm committed Jun 7, 2021
    Configuration menu
    Copy the full SHA
    16787ae View commit details
    Browse the repository at this point in the history

Commits on Jun 11, 2021

  1. Bump glob-parent from 5.1.1 to 5.1.2

    Bumps [glob-parent](https://github.com/gulpjs/glob-parent) from 5.1.1 to 5.1.2.
    - [Release notes](https://github.com/gulpjs/glob-parent/releases)
    - [Changelog](https://github.com/gulpjs/glob-parent/blob/main/CHANGELOG.md)
    - [Commits](gulpjs/glob-parent@v5.1.1...v5.1.2)
    
    ---
    updated-dependencies:
    - dependency-name: glob-parent
      dependency-type: indirect
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] authored Jun 11, 2021
    Configuration menu
    Copy the full SHA
    bbec015 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #110 from camicroscope/dependabot/npm_and_yarn/glo…

    …b-parent-5.1.2
    
    Bump glob-parent from 5.1.1 to 5.1.2
    birm authored Jun 11, 2021
    Configuration menu
    Copy the full SHA
    4525c9a View commit details
    Browse the repository at this point in the history