Campus hiring and training automation platform.

Overview

opencampus

Supported Use Cases

  • Student register themselves on the portal
  • Student fills details in their academic profile
  • Student opt for campus hiring / internship
  • Student opt for specific company interview
  • TPO creates placement notification for companies
  • Student/volunteer update status of a student
  • Students get personalized job notification through email
  • TPO generates report(s)

🛠 Building

  • Prerequiste: Node 14.xx or later, Yarn package manager
  • Install dependencies: yarn install
  • Start development server: yarn dev

Making Changes

  • Before committing any code, always run yarn format
Comments
  • Create Work Experience form.

    Create Work Experience form.

    Create Work Experience form in /src/pages/dashboard/SettingsPage.tsx within WorkExperienceForm component.

    Add the following fields in the form -

    • have_exp - Do you have prior work experience? (CheckBox)
    • company - Pervious Company (Input)
    • start_date_exp - Start date (Input)
    • end_date_exp - End date (Input)
    • last_salary - Last Salary (Input)

    Effected file: /src/pages/dashboard/SettingsPage.tsx Scope: WorkExperienceForm

    Follow the layout of BasicDetailsForm.

    high priority 
    opened by asimbera 4
  • Add license scan report and status

    Add license scan report and status

    Your FOSSA integration was successful! Attached in this PR is a badge and license report to track scan status in your README.

    Below are docs for integrating FOSSA license checks into your CI:

    opened by fossabot 3
  • Bump @hookform/resolvers from 2.8.8 to 2.9.1

    Bump @hookform/resolvers from 2.8.8 to 2.9.1

    Bumps @hookform/resolvers from 2.8.8 to 2.9.1.

    Release notes

    Sourced from @​hookform/resolvers's releases.

    v2.9.1

    2.9.1 (2022-06-10)

    Bug Fixes

    • ajv resolver to work with unlimited layers of nesting (#412) (692fe65)

    v2.9.0

    2.9.0 (2022-06-03)

    Features

    import { useForm } from 'react-hook-form';
    import { ajvResolver } from '@hookform/resolvers/ajv';
    

    // must use minLength: 1 to implement required field const schema = { type: 'object', properties: { username: { type: 'string', minLength: 1, errorMessage: { minLength: 'username field is required' }, }, password: { type: 'string', minLength: 1, errorMessage: { minLength: 'password field is required' }, }, }, required: ['username', 'password'], additionalProperties: false, };

    const App = () => { const { register, handleSubmit, formState: { errors }, } = useForm({ resolver: ajvResolver(schema), });

    return ( <form onSubmit={handleSubmit((data) => console.log(data))}> </tr></table>

    ... (truncated)

    Commits
    • 115db62 build(deps-dev): bump @​typescript-eslint/parser from 5.16.0 to 5.27.0 (#410)
    • 692fe65 fix: ajv resolver to work with unlimited layers of nesting (#412)
    • 0cad904 feat: add ajv (#408)
    • c560af3 fix: update for other resolvers with new option (#404)
    • 259b4dc fix(zod): add ability to skip zod's parsing (#401)
    • 350d255 build(deps-dev): bump @​types/react from 17.0.38 to 17.0.43 (#381)
    • 9017a82 build(deps-dev): bump zod from 3.14.1 to 3.14.3 (#383)
    • 1085de1 build(deps-dev): bump react-hook-form from 7.27.1 to 7.29.0 (#384)
    • f191368 build(deps-dev): bump @​typescript-eslint/eslint-plugin (#385)
    • 873baac build(deps-dev): bump prettier from 2.5.1 to 2.6.0 (#377)
    • Additional commits viewable in compare view

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies 
    opened by dependabot[bot] 3
  • Bump @types/react from 18.0.9 to 18.0.12

    Bump @types/react from 18.0.9 to 18.0.12

    Bumps @types/react from 18.0.9 to 18.0.12.

    Commits

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies 
    opened by dependabot[bot] 3
  • Validate `Add Company` in CompaniesPage

    Validate `Add Company` in CompaniesPage

    Add form validation functionality to Add Company modal in Companies Page

    Effected file: ./src/pages/dashboard/college/CompaniesPage.tsx

    N.B Don't work on this until #49 is resolved

    enhancement 
    opened by thatsuman 3
  • Bump @hookform/resolvers from 2.8.8 to 2.9.9

    Bump @hookform/resolvers from 2.8.8 to 2.9.9

    Bumps @hookform/resolvers from 2.8.8 to 2.9.9.

    Release notes

    Sourced from @​hookform/resolvers's releases.

    v2.9.9

    2.9.9 (2022-10-14)

    Bug Fixes

    v2.9.8

    2.9.8 (2022-09-11)

    Bug Fixes

    v2.9.7

    2.9.7 (2022-07-26)

    Bug Fixes

    • #396 remove unnecessary 'browser' exports to fix Jest integration (#435) (99703e6)

    v2.9.6

    2.9.6 (2022-07-15)

    Bug Fixes

    • yup: yup wrong import statement assuming default export (#427) (928afae)

    v2.9.5

    2.9.5 (2022-07-08)

    Bug Fixes

    • renamed private packages to avoid ambiguity with existing official packages. (#424) (18ae921)

    v2.9.4

    2.9.4 (2022-07-07)

    Bug Fixes

    v2.9.3

    2.9.3 (2022-06-24)

    ... (truncated)

    Commits
    • 4afc03b fix(io-ts resolver): types (#455)
    • 467b6ac fix: globals name (#449)
    • 99703e6 fix: #396 remove unnecessary 'browser' exports to fix Jest integration (#435)
    • 928afae fix(yup): yup wrong import statement assuming default export (#427)
    • eebd258 build(deps): bump shell-quote from 1.7.2 to 1.7.3 (#418)
    • 18ae921 fix: renamed private packages to avoid ambiguity with existing official packa...
    • fd1b2a7 fix(computed-types): nested schema (#425)
    • 52a6e07 fix: compile error with UnpackNestedValue BREAKING CHANGE: This change will ...
    • 7951951 fix: exchange fp-ts/Either over fp-ts/lib/Either (#419)
    • ad4ae4a close #414
    • Additional commits viewable in compare view

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies 
    opened by dependabot[bot] 2
  • Bump @hookform/resolvers from 2.8.8 to 2.9.8

    Bump @hookform/resolvers from 2.8.8 to 2.9.8

    Bumps @hookform/resolvers from 2.8.8 to 2.9.8.

    Release notes

    Sourced from @​hookform/resolvers's releases.

    v2.9.8

    2.9.8 (2022-09-11)

    Bug Fixes

    v2.9.7

    2.9.7 (2022-07-26)

    Bug Fixes

    • #396 remove unnecessary 'browser' exports to fix Jest integration (#435) (99703e6)

    v2.9.6

    2.9.6 (2022-07-15)

    Bug Fixes

    • yup: yup wrong import statement assuming default export (#427) (928afae)

    v2.9.5

    2.9.5 (2022-07-08)

    Bug Fixes

    • renamed private packages to avoid ambiguity with existing official packages. (#424) (18ae921)

    v2.9.4

    2.9.4 (2022-07-07)

    Bug Fixes

    v2.9.3

    2.9.3 (2022-06-24)

    Breaking Change

    • compile error with UnpackNestedValue

    BREAKING CHANGE: This change will update package dependency with react-hook-form to 7.33.0 above (52a6e07)

    ... (truncated)

    Commits
    • 467b6ac fix: globals name (#449)
    • 99703e6 fix: #396 remove unnecessary 'browser' exports to fix Jest integration (#435)
    • 928afae fix(yup): yup wrong import statement assuming default export (#427)
    • eebd258 build(deps): bump shell-quote from 1.7.2 to 1.7.3 (#418)
    • 18ae921 fix: renamed private packages to avoid ambiguity with existing official packa...
    • fd1b2a7 fix(computed-types): nested schema (#425)
    • 52a6e07 fix: compile error with UnpackNestedValue BREAKING CHANGE: This change will ...
    • 7951951 fix: exchange fp-ts/Either over fp-ts/lib/Either (#419)
    • ad4ae4a close #414
    • 115db62 build(deps-dev): bump @​typescript-eslint/parser from 5.16.0 to 5.27.0 (#410)
    • Additional commits viewable in compare view

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies 
    opened by dependabot[bot] 2
  • Bump @hookform/resolvers from 2.8.8 to 2.9.7

    Bump @hookform/resolvers from 2.8.8 to 2.9.7

    Bumps @hookform/resolvers from 2.8.8 to 2.9.7.

    Release notes

    Sourced from @​hookform/resolvers's releases.

    v2.9.7

    2.9.7 (2022-07-26)

    Bug Fixes

    • #396 remove unnecessary 'browser' exports to fix Jest integration (#435) (99703e6)

    v2.9.6

    2.9.6 (2022-07-15)

    Bug Fixes

    • yup: yup wrong import statement assuming default export (#427) (928afae)

    v2.9.5

    2.9.5 (2022-07-08)

    Bug Fixes

    • renamed private packages to avoid ambiguity with existing official packages. (#424) (18ae921)

    v2.9.4

    2.9.4 (2022-07-07)

    Bug Fixes

    v2.9.3

    2.9.3 (2022-06-24)

    Breaking Change

    • compile error with UnpackNestedValue

    BREAKING CHANGE: This change will update package dependency with react-hook-form to 7.33.0 above (52a6e07)

    v2.9.2

    2.9.2 (2022-06-23)

    Bug Fixes

    ... (truncated)

    Commits
    • 99703e6 fix: #396 remove unnecessary 'browser' exports to fix Jest integration (#435)
    • 928afae fix(yup): yup wrong import statement assuming default export (#427)
    • eebd258 build(deps): bump shell-quote from 1.7.2 to 1.7.3 (#418)
    • 18ae921 fix: renamed private packages to avoid ambiguity with existing official packa...
    • fd1b2a7 fix(computed-types): nested schema (#425)
    • 52a6e07 fix: compile error with UnpackNestedValue BREAKING CHANGE: This change will ...
    • 7951951 fix: exchange fp-ts/Either over fp-ts/lib/Either (#419)
    • ad4ae4a close #414
    • 115db62 build(deps-dev): bump @​typescript-eslint/parser from 5.16.0 to 5.27.0 (#410)
    • 692fe65 fix: ajv resolver to work with unlimited layers of nesting (#412)
    • Additional commits viewable in compare view

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies 
    opened by dependabot[bot] 2
  • Bump @hookform/resolvers from 2.8.8 to 2.9.6

    Bump @hookform/resolvers from 2.8.8 to 2.9.6

    Bumps @hookform/resolvers from 2.8.8 to 2.9.6.

    Release notes

    Sourced from @​hookform/resolvers's releases.

    v2.9.6

    2.9.6 (2022-07-15)

    Bug Fixes

    • yup: yup wrong import statement assuming default export (#427) (928afae)

    v2.9.5

    2.9.5 (2022-07-08)

    Bug Fixes

    • renamed private packages to avoid ambiguity with existing official packages. (#424) (18ae921)

    v2.9.4

    2.9.4 (2022-07-07)

    Bug Fixes

    v2.9.3

    2.9.3 (2022-06-24)

    Breaking Change

    • compile error with UnpackNestedValue

    BREAKING CHANGE: This change will update package dependency with react-hook-form to 7.33.0 above (52a6e07)

    v2.9.2

    2.9.2 (2022-06-23)

    Bug Fixes

    • exchange fp-ts/Either over fp-ts/lib/Either (#419) (7951951)

    v2.9.1

    2.9.1 (2022-06-10)

    Bug Fixes

    ... (truncated)

    Commits
    • 928afae fix(yup): yup wrong import statement assuming default export (#427)
    • eebd258 build(deps): bump shell-quote from 1.7.2 to 1.7.3 (#418)
    • 18ae921 fix: renamed private packages to avoid ambiguity with existing official packa...
    • fd1b2a7 fix(computed-types): nested schema (#425)
    • 52a6e07 fix: compile error with UnpackNestedValue BREAKING CHANGE: This change will ...
    • 7951951 fix: exchange fp-ts/Either over fp-ts/lib/Either (#419)
    • ad4ae4a close #414
    • 115db62 build(deps-dev): bump @​typescript-eslint/parser from 5.16.0 to 5.27.0 (#410)
    • 692fe65 fix: ajv resolver to work with unlimited layers of nesting (#412)
    • 0cad904 feat: add ajv (#408)
    • Additional commits viewable in compare view

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies 
    opened by dependabot[bot] 2
  • Bump @hookform/resolvers from 2.8.8 to 2.9.5

    Bump @hookform/resolvers from 2.8.8 to 2.9.5

    Bumps @hookform/resolvers from 2.8.8 to 2.9.5.

    Release notes

    Sourced from @​hookform/resolvers's releases.

    v2.9.5

    2.9.5 (2022-07-08)

    Bug Fixes

    • renamed private packages to avoid ambiguity with existing official packages. (#424) (18ae921)

    v2.9.4

    2.9.4 (2022-07-07)

    Bug Fixes

    v2.9.3

    2.9.3 (2022-06-24)

    Breaking Change

    • compile error with UnpackNestedValue

    BREAKING CHANGE: This change will update package dependency with react-hook-form to 7.33.0 above (52a6e07)

    v2.9.2

    2.9.2 (2022-06-23)

    Bug Fixes

    • exchange fp-ts/Either over fp-ts/lib/Either (#419) (7951951)

    v2.9.1

    2.9.1 (2022-06-10)

    Bug Fixes

    • ajv resolver to work with unlimited layers of nesting (#412) (692fe65)

    v2.9.0

    2.9.0 (2022-06-03)

    Features

    ... (truncated)

    Commits
    • eebd258 build(deps): bump shell-quote from 1.7.2 to 1.7.3 (#418)
    • 18ae921 fix: renamed private packages to avoid ambiguity with existing official packa...
    • fd1b2a7 fix(computed-types): nested schema (#425)
    • 52a6e07 fix: compile error with UnpackNestedValue BREAKING CHANGE: This change will ...
    • 7951951 fix: exchange fp-ts/Either over fp-ts/lib/Either (#419)
    • ad4ae4a close #414
    • 115db62 build(deps-dev): bump @​typescript-eslint/parser from 5.16.0 to 5.27.0 (#410)
    • 692fe65 fix: ajv resolver to work with unlimited layers of nesting (#412)
    • 0cad904 feat: add ajv (#408)
    • c560af3 fix: update for other resolvers with new option (#404)
    • Additional commits viewable in compare view

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies 
    opened by dependabot[bot] 2
  • Bump @hookform/resolvers from 2.8.8 to 2.9.4

    Bump @hookform/resolvers from 2.8.8 to 2.9.4

    Bumps @hookform/resolvers from 2.8.8 to 2.9.4.

    Release notes

    Sourced from @​hookform/resolvers's releases.

    v2.9.4

    2.9.4 (2022-07-07)

    Bug Fixes

    v2.9.3

    2.9.3 (2022-06-24)

    Breaking Change

    • compile error with UnpackNestedValue

    BREAKING CHANGE: This change will update package dependency with react-hook-form to 7.33.0 above (52a6e07)

    v2.9.2

    2.9.2 (2022-06-23)

    Bug Fixes

    • exchange fp-ts/Either over fp-ts/lib/Either (#419) (7951951)

    v2.9.1

    2.9.1 (2022-06-10)

    Bug Fixes

    • ajv resolver to work with unlimited layers of nesting (#412) (692fe65)

    v2.9.0

    2.9.0 (2022-06-03)

    Features

    import { useForm } from 'react-hook-form';
    import { ajvResolver } from '@hookform/resolvers/ajv';
    

    // must use minLength: 1 to implement required field </tr></table>

    ... (truncated)

    Commits
    • fd1b2a7 fix(computed-types): nested schema (#425)
    • 52a6e07 fix: compile error with UnpackNestedValue BREAKING CHANGE: This change will ...
    • 7951951 fix: exchange fp-ts/Either over fp-ts/lib/Either (#419)
    • ad4ae4a close #414
    • 115db62 build(deps-dev): bump @​typescript-eslint/parser from 5.16.0 to 5.27.0 (#410)
    • 692fe65 fix: ajv resolver to work with unlimited layers of nesting (#412)
    • 0cad904 feat: add ajv (#408)
    • c560af3 fix: update for other resolvers with new option (#404)
    • 259b4dc fix(zod): add ability to skip zod's parsing (#401)
    • 350d255 build(deps-dev): bump @​types/react from 17.0.38 to 17.0.43 (#381)
    • Additional commits viewable in compare view

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies 
    opened by dependabot[bot] 2
  • Bump @hookform/resolvers from 2.8.8 to 2.9.10

    Bump @hookform/resolvers from 2.8.8 to 2.9.10

    Bumps @hookform/resolvers from 2.8.8 to 2.9.10.

    Release notes

    Sourced from @​hookform/resolvers's releases.

    v2.9.10

    2.9.10 (2022-10-20)

    Bug Fixes

    • ajv: undefined props validate structure error (#457) (0f39c20)

    v2.9.9

    2.9.9 (2022-10-14)

    Bug Fixes

    v2.9.8

    2.9.8 (2022-09-11)

    Bug Fixes

    v2.9.7

    2.9.7 (2022-07-26)

    Bug Fixes

    • #396 remove unnecessary 'browser' exports to fix Jest integration (#435) (99703e6)

    v2.9.6

    2.9.6 (2022-07-15)

    Bug Fixes

    • yup: yup wrong import statement assuming default export (#427) (928afae)

    v2.9.5

    2.9.5 (2022-07-08)

    Bug Fixes

    • renamed private packages to avoid ambiguity with existing official packages. (#424) (18ae921)

    v2.9.4

    2.9.4 (2022-07-07)

    ... (truncated)

    Commits
    • 0f39c20 fix(ajv): undefined props validate structure error (#457)
    • 5fde07d Update stale.yml
    • 39812d6 Create lock-issue.yml
    • 4afc03b fix(io-ts resolver): types (#455)
    • 467b6ac fix: globals name (#449)
    • 99703e6 fix: #396 remove unnecessary 'browser' exports to fix Jest integration (#435)
    • 928afae fix(yup): yup wrong import statement assuming default export (#427)
    • eebd258 build(deps): bump shell-quote from 1.7.2 to 1.7.3 (#418)
    • 18ae921 fix: renamed private packages to avoid ambiguity with existing official packa...
    • fd1b2a7 fix(computed-types): nested schema (#425)
    • Additional commits viewable in compare view

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies 
    opened by dependabot[bot] 1
  • Bump react and @types/react

    Bump react and @types/react

    Bumps react and @types/react. These dependencies needed to be updated together. Updates react from 18.1.0 to 18.2.0

    Release notes

    Sourced from react's releases.

    18.2.0 (June 14, 2022)

    React DOM

    React DOM Server

    • Pass information about server errors to the client. (@​salazarm and @​gnoff in #24551 and #24591)
    • Allow to provide a reason when aborting the HTML stream. (@​gnoff in #24680)
    • Eliminate extraneous text separators in the HTML where possible. (@​gnoff in #24630)
    • Disallow complex children inside <title> elements to match the browser constraints. (@​gnoff in #24679)
    • Fix buffering in some worker environments by explicitly setting highWaterMark to 0. (@​jplhomer in #24641)

    Server Components (Experimental)

    Changelog

    Sourced from react's changelog.

    18.2.0 (June 14, 2022)

    React DOM

    React DOM Server

    • Pass information about server errors to the client. (@​salazarm and @​gnoff in #24551 and #24591)
    • Allow to provide a reason when aborting the HTML stream. (@​gnoff in #24680)
    • Eliminate extraneous text separators in the HTML where possible. (@​gnoff in #24630)
    • Disallow complex children inside <title> elements to match the browser constraints. (@​gnoff in #24679)
    • Fix buffering in some worker environments by explicitly setting highWaterMark to 0. (@​jplhomer in #24641)

    Server Components (Experimental)

    Commits
    Maintainer changes

    This version was pushed to npm by gnoff, a new releaser for react since your current version.


    Updates @types/react from 18.0.9 to 18.0.14

    Commits

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies 
    opened by dependabot[bot] 1
A new generation GUI automation framework for Web and Desktop Application Testing and Automation.

Clicknium-docs Clicknium is a new generation GUI automation framework for all types of applications. It provides easy and smooth developer experience

null 109 Dec 19, 2022
🧙 Mage is an open-source data management platform that helps you clean data and prepare it for training AI/ML models.

Intro Mage is an open-source data management platform that helps you clean data and prepare it for training AI/ML models. What does this do? The curre

Mage 2.5k Jan 4, 2023
Xtreme1 - The Next GEN Platform for Multisensory Training Data.

Intro BasicAI Xtreme1 is an open-source suite that speedily develops and iterates your datasets and models. The built-in AI-assisted tools take your l

BasicAI 248 Dec 30, 2022
ChainJet is a workflow automation platform specialized in blockchain and cloud infrastructure.

A workflow automation platform specialized on blockchain, with more than 300 integrations. Description ChainJet is a workflow automation platform spec

ChainJet 38 Dec 24, 2022
Kustomizegoat - Vulnerable Kustomize Kubernetes templates for training and education

KustomizeGoat - Vulnerable by design Kustomize deployment Demonstrating secure a

Bridgecrew 38 Nov 1, 2022
A tool to build courses and training decks.

Training platform ?? You can read more about this project on our blog ???? Quick start pipenv shell # Start infrastructure (database, local email ser

Premier Octet 13 Nov 23, 2022
Odoo Javascript Framework Training (public version)

Introduction to JS framework Introduction For this training, we will put ourselves in the shoes of the IT staff for the fictional Awesome T-Shirt comp

Géry Debongnie 26 Dec 16, 2022
This repository contains a basic example on how to set up and run test automation jobs with CircleCI and report results to Testmo.

CircleCI test automation example This repository contains a basic example on how to set up and run test automation jobs with CircleCI and report resul

Testmo 2 Dec 23, 2021
Service Installer for VMware Tanzu is a one-click automation solution that enables VMware field engineers to easily and rapidly install, configure, and operate VMware Tanzu services across a variety of cloud infrastructures.

Service Installer for VMware Tanzu Service Installer for VMware Tanzu seeks to provide a one-click automation solution to enable our VMware engineers

VMware Tanzu 42 Dec 1, 2022
Android ROM device support and bringup tool, designed for maximum automation and speed.

adevtool Android ROM device support and bringup tool, designed for maximum automation and speed. Features This tool automates the following tasks for

Danny Lin 186 Dec 21, 2022
A demo for E2E build piplelines in Design Systems using monorepo's and automation :zap:.

Design System Pipelines demo What is it? A working demonstration for end-to-end build piplelines in Design Systems using Primer Primitives, Primer CSS

Rez 7 Oct 20, 2022
BI, API and Automation layer for your Engineering Operations data

Faros Community Edition Faros Community Edition (CE) is an open-source engineering operations platform that connects the dots between all your operati

Faros AI 272 Dec 23, 2022
Minimalistic, opinionated, and predictable release automation tool.

Release Minimalistic, opinionated, and predictable release automation tool. General idea Think Prettier but for automated releases: minimalistic, opin

Open Source: JavaScript 173 Dec 18, 2022
Boilerplate project to run MOBILE Test Automation with WebdriverIO v7, Mocha, Appium, Allure reporting and Momentum Suite cloud device farm support

WebdriverIO Mocha Appium Momentumsuite WebdriverIO Integration with local or Momentum Suite real mobile farm devices Supports Native or Hybrid Android

Momentum Suite 21 Dec 5, 2022
Relay setup automation for CRA, Next.js and Vite

create-relay-app Easy configuration of Relay.js for existing projects Motivation Setting up Relay can be quite time consuming, since there are many se

Tobias Tengler 39 Dec 19, 2022
An unofficial companion tool created for use alongside PhotoPrism to enable API endpoints and automation.

PhotoPrism Helper PhotoPrism Helper is an unofficial companion tool created for use alongside PhotoPrism. This project isn't associated with the Photo

Ryan Miller 9 Dec 25, 2022
This repo contains utility tools for manipulating files, process images and automation.

utility-tools-cli This repo contains utility tools which makes life lil bit easier. Features Rename Files in a Folder with the convention you want. Re

Wasim Raja 4 Nov 4, 2022
Solana blockchain candy machine app boilerplate on top of Metaplex Candy Machine. NextJS, Tailwind, Anchor, SolanaLabs.React, dev/mainnet automation scripts.

NFT Candy Factory NOTE: This repo will prob only work on unix-based environments. The NFT Candy Factory project is designed to let users fork, customi

Kevin Faveri 261 Dec 30, 2022
Tools for the openHAB JavaScript Automation Add-On.

openHAB JS Automation Tools This library provides some utilites for the openHAB JS Scripting Add-On. The JavaScript Add-On is using the NodeJS version

Florian Hotze 4 Oct 18, 2022