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

Add categoryScore Model #58

Merged
merged 53 commits into from
Apr 18, 2023

Commits on Jul 23, 2022

  1. Fetching and using the bearer token

    Every time I want to start up this project, I spend 30 or so minutes figuring out authorization. Instead, I figured it would be easier to put an example in the documentation to cut setup time and enable more commits in the future!
    emilkovacev authored Jul 23, 2022
    Configuration menu
    Copy the full SHA
    8c3b8a3 View commit details
    Browse the repository at this point in the history
  2. Create postman-setup.md

    Postman is an invaluable resource for new developers on this api. Having a pre-configured json file for postman will allow developers to understand exactly what a request looks like, and how they can make that request. Another option would be to host that json config file somewhere in this repo, so that we can make updates as we develop new endpoints.
    emilkovacev authored Jul 23, 2022
    Configuration menu
    Copy the full SHA
    4891453 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    76ba7bd View commit details
    Browse the repository at this point in the history

Commits on Sep 21, 2022

  1. Delete .DS_Store

    Why is this file in the repo???
    emilkovacev authored Sep 21, 2022
    Configuration menu
    Copy the full SHA
    af15826 View commit details
    Browse the repository at this point in the history

Commits on Sep 22, 2022

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

Commits on Sep 28, 2022

  1. Added non-implemented schema members

    * Added a menu for the schema members
    * Added comments for new members
    * I suggest we replace comments with types, since "foreign key"
    seems easier to follow
    emilkovacev committed Sep 28, 2022
    Configuration menu
    Copy the full SHA
    9a379cc View commit details
    Browse the repository at this point in the history
  2. added types to schema doc

    emilkovacev committed Sep 28, 2022
    Configuration menu
    Copy the full SHA
    f94bfb5 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    c5284c0 View commit details
    Browse the repository at this point in the history
  4. Merge pull request makeopensource#5 from emilkovacev/master

    Updated Schema Documentation
    jessehartloff authored Sep 28, 2022
    Configuration menu
    Copy the full SHA
    01e41dc View commit details
    Browse the repository at this point in the history
  5. Merge pull request #1 from emilkovacev/postman-setup-docs

    Postman Setup Docs
    jessehartloff authored Sep 28, 2022
    Configuration menu
    Copy the full SHA
    e65a160 View commit details
    Browse the repository at this point in the history
  6. Merge pull request #2 from emilkovacev/setup-auth-docs

    Fetching and using the bearer token
    jessehartloff authored Sep 28, 2022
    Configuration menu
    Copy the full SHA
    086614b View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    1a18285 View commit details
    Browse the repository at this point in the history
  8. Merge pull request makeopensource#6 from makeopensource/documentation

    Minor updates to the schema
    emilkovacev authored Sep 28, 2022
    Configuration menu
    Copy the full SHA
    b4200ef View commit details
    Browse the repository at this point in the history

Commits on Oct 5, 2022

  1. [Dependencies] Update deps to resolve vulns

    This resolves all vulnerabilities reported by `npm audit`,
    including the breaking change to `passport` from `^0.4.1` to `^0.6.0`.
    All tests still pass with these updates.
    
    Fixes makeopensource#15
    WeirdAlex03 committed Oct 5, 2022
    Configuration menu
    Copy the full SHA
    e451fba View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    a1e5c9a View commit details
    Browse the repository at this point in the history

Commits on Oct 12, 2022

  1. Configuration menu
    Copy the full SHA
    c811186 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    7fe5c18 View commit details
    Browse the repository at this point in the history
  3. Merge pull request makeopensource#16 from WeirdAlex03/WeirdAlex03/iss…

    …ue15
    
    [Dependencies] Update deps to resolve vulns
    jessehartloff authored Oct 12, 2022
    Configuration menu
    Copy the full SHA
    cd05c24 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    77d57c0 View commit details
    Browse the repository at this point in the history
  5. Bump passport-saml from 3.2.1 to 3.2.2

    Bumps [passport-saml](https://github.com/node-saml/passport-saml) from 3.2.1 to 3.2.2.
    - [Release notes](https://github.com/node-saml/passport-saml/releases)
    - [Changelog](https://github.com/node-saml/passport-saml/blob/master/CHANGELOG.md)
    - [Commits](node-saml/passport-saml@v3.2.1...v3.2.2)
    
    ---
    updated-dependencies:
    - dependency-name: passport-saml
      dependency-type: direct:production
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored Oct 12, 2022
    Configuration menu
    Copy the full SHA
    15deaab View commit details
    Browse the repository at this point in the history
  6. ci(GH Actions): Initial basic build & test

    Pretty much just default Node.js config, just changed to only run on PRs
    (instead of pushes and PRs targetting "master")
    WeirdAlex03 committed Oct 12, 2022
    Configuration menu
    Copy the full SHA
    6e078f5 View commit details
    Browse the repository at this point in the history
  7. ci(GH Actions): Remove Node v14 from tests

    package.json defines requirement node >= 16
    WeirdAlex03 committed Oct 12, 2022
    Configuration menu
    Copy the full SHA
    ab6cf9e View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    e1445e1 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    9220a68 View commit details
    Browse the repository at this point in the history
  10. ci(GH Actions): Add Docker setup to build and test

    No idea if this will Just Work (TM), but I guess we'll find out soon!
    WeirdAlex03 committed Oct 12, 2022
    Configuration menu
    Copy the full SHA
    43fcf4b View commit details
    Browse the repository at this point in the history
  11. ci(GH Actions): Edit docker run command

    GH concats it all into one line so escaping the line breaks isnt needed
    WeirdAlex03 committed Oct 12, 2022
    Configuration menu
    Copy the full SHA
    cb5c42a View commit details
    Browse the repository at this point in the history

Commits on Oct 13, 2022

  1. ci(GH Actions): Separate test, add annotations

    This uses incorporates mattallty/jest-github-action to add annotations
    in the test files on the failing tests, making it easier to
    identify the problems
    WeirdAlex03 committed Oct 13, 2022
    Configuration menu
    Copy the full SHA
    0f47927 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    02d5519 View commit details
    Browse the repository at this point in the history

Commits on Oct 14, 2022

  1. ci(GH Actions): Restructure actions into one file

    Test and Format now rely on Build, reducing duplicate code
    (if this works the way I think it will)
    WeirdAlex03 committed Oct 14, 2022
    Configuration menu
    Copy the full SHA
    e675f11 View commit details
    Browse the repository at this point in the history
  2. ci(GH Actions): Fix actions again

    Last commit:
    > Test and Format now rely on Build, reducing duplicate code
    > (if this works the way I think it will)
    
    It did not. They're still unique environments,
    so it still has to be set up for each action
    WeirdAlex03 committed Oct 14, 2022
    Configuration menu
    Copy the full SHA
    a2624cf View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    16e4c42 View commit details
    Browse the repository at this point in the history
  4. test(GH Actions): Ex. of failing test, formatting

    Intentionally failing a test and messing up file formatting
    to see how the actions deal with that
    WeirdAlex03 committed Oct 14, 2022
    Configuration menu
    Copy the full SHA
    ddc6ce6 View commit details
    Browse the repository at this point in the history

Commits on Oct 17, 2022

  1. Bump @xmldom/xmldom from 0.7.5 to 0.7.6

    Bumps [@xmldom/xmldom](https://github.com/xmldom/xmldom) from 0.7.5 to 0.7.6.
    - [Release notes](https://github.com/xmldom/xmldom/releases)
    - [Changelog](https://github.com/xmldom/xmldom/blob/master/CHANGELOG.md)
    - [Commits](xmldom/xmldom@0.7.5...0.7.6)
    
    ---
    updated-dependencies:
    - dependency-name: "@xmldom/xmldom"
      dependency-type: indirect
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored Oct 17, 2022
    Configuration menu
    Copy the full SHA
    810bf9a View commit details
    Browse the repository at this point in the history

Commits on Oct 19, 2022

  1. Merge pull request makeopensource#25 from makeopensource/dependabot/n…

    …pm_and_yarn/xmldom/xmldom-0.7.6
    
    Bump @xmldom/xmldom from 0.7.5 to 0.7.6
    jessehartloff authored Oct 19, 2022
    Configuration menu
    Copy the full SHA
    eeb7386 View commit details
    Browse the repository at this point in the history
  2. Merge pull request makeopensource#19 from WeirdAlex03/WeirdAlex03/iss…

    …ue18
    
    [Documentation] Fix project referred to as example
    jessehartloff authored Oct 19, 2022
    Configuration menu
    Copy the full SHA
    fe8665d View commit details
    Browse the repository at this point in the history
  3. Merge pull request makeopensource#20 from makeopensource/dependabot/n…

    …pm_and_yarn/passport-saml-3.2.2
    
    Bump passport-saml from 3.2.1 to 3.2.2
    jessehartloff authored Oct 19, 2022
    Configuration menu
    Copy the full SHA
    7254b05 View commit details
    Browse the repository at this point in the history
  4. Merge pull request makeopensource#26 from UBAutograding/master

    Add GitHub user jessehartloff as a code owner with the authority to a…
    emilkovacev authored Oct 19, 2022
    Configuration menu
    Copy the full SHA
    052d51b View commit details
    Browse the repository at this point in the history
  5. ci(GH Actions): Formatter needs to commit results

    I won't tell it to actually commit yet, first I'll review the output
    to make sure it isn't committing too much
    WeirdAlex03 committed Oct 19, 2022
    Configuration menu
    Copy the full SHA
    46c88c0 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    3e7a255 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    5412e59 View commit details
    Browse the repository at this point in the history
  8. Merge 5412e59 into b4200ef

    WeirdAlex03 authored Oct 19, 2022
    Configuration menu
    Copy the full SHA
    c2e2b25 View commit details
    Browse the repository at this point in the history
  9. style: run formatter

    WeirdAlex03 committed Oct 19, 2022
    Configuration menu
    Copy the full SHA
    2f80b8a View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    a2f07be View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    0c35121 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    bec0ff1 View commit details
    Browse the repository at this point in the history
  13. test(GH Actions): It works, undo broken test

    This reverts the failing test intentionally added in
    ddc6ce6
    WeirdAlex03 committed Oct 19, 2022
    Configuration menu
    Copy the full SHA
    c84da63 View commit details
    Browse the repository at this point in the history
  14. ci(GH Actions): Formatter needs to commit results

    I won't tell it to actually commit yet, first I'll review the output
    to make sure it isn't committing too much
    WeirdAlex03 committed Oct 19, 2022
    Configuration menu
    Copy the full SHA
    66084d4 View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    20e571a View commit details
    Browse the repository at this point in the history

Commits on Oct 26, 2022

  1. Merge pull request makeopensource#23 from WeirdAlex03/issue22

    [GitHub Actions] Set up GitHub Actions to automatically build, test, and format
    jessehartloff authored Oct 26, 2022
    Configuration menu
    Copy the full SHA
    641e9da View commit details
    Browse the repository at this point in the history

Commits on Nov 17, 2022

  1. Added to docs

    - Added postman file config
    - Edited docs for postman file
    emilkovacev committed Nov 17, 2022
    Configuration menu
    Copy the full SHA
    b422558 View commit details
    Browse the repository at this point in the history

Commits on Nov 30, 2022

  1. Merge pull request makeopensource#42 from emilkovacev/master

    Revised Postman Documentation
    jessehartloff authored Nov 30, 2022
    Configuration menu
    Copy the full SHA
    a59642b View commit details
    Browse the repository at this point in the history

Commits on Mar 28, 2023

  1. Add categoryScore Model

    alans-42 committed Mar 28, 2023
    Configuration menu
    Copy the full SHA
    8a21ad3 View commit details
    Browse the repository at this point in the history

Commits on Apr 11, 2023

  1. Removed Letter Grade

    Removed the letter grade enum from the model
    alans-42 authored Apr 11, 2023
    Configuration menu
    Copy the full SHA
    e258d00 View commit details
    Browse the repository at this point in the history