Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Bump react-router-dom from 6.3.0 to 6.22.2 in /client #145

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 4, 2024

Bumps react-router-dom from 6.3.0 to 6.22.2.

Release notes

Sourced from react-router-dom's releases.

v6.4.4

What's Changed

  • Throw an error if an action/loader function returns undefined as revalidations need to know whether the loader has previously been executed. undefined also causes issues during SSR stringification for hydration. You should always ensure your loader/action returns a value, and you may return null if you don't wish to return anything. (#9511)
  • Properly handle redirects to external domains (#9590, #9654)
  • Preserve the HTTP method on 307/308 redirects (#9597)
  • Support basename in static data routers (#9591)
  • Enhanced ErrorResponse bodies to contain more descriptive text in internal 403/404/405 scenarios
  • Fix issues with encoded characters in NavLink and descendant <Routes> (#9589, #9647)
  • Properly serialize/deserialize ErrorResponse instances when using built-in hydration (#9593)
  • Support basename in static data routers (#9591)
  • Updated dependencies:
    • @remix-run/router@1.0.4
    • react-router@6.4.4

Full Changelog: https://github.com/remix-run/react-router/compare/react-router-dom@6.4.3...react-router-dom@6.4.4

react-router-dom@6.4.0-pre.15

Patch Changes

  • fix: remove internal router singleton (#9227)

    This change removes the internal module-level routerSingleton we create and maintain inside our data routers since it was causing a number of headaches for non-simple use cases:

    • Unit tests are a pain because you need to find a way to reset the singleton in-between tests
      • Use use a _resetModuleScope singleton for our tests
      • ...but this isn't exposed to users who may want to do their own tests around our router
    • The JSX children <Route> objects cause non-intuitive behavior based on idiomatic react expectations
      • Conditional runtime <Route>'s won't get picked up
      • Adding new <Route>'s during local dev won't get picked up during HMR
      • Using external state in your elements doesn't work as one might expect (see #9225)

    Instead, we are going to lift the singleton out into user-land, so that they create the router singleton and manage it outside the react tree - which is what react 18 is encouraging with useSyncExternalStore anyways! This also means that since users create the router - there's no longer any difference in the rendering aspect for memory/browser/hash routers (which only impacts router/history creation) - so we can get rid of those and trim to a simple RouterProvider

    // Before
    function App() {
      <DataBrowserRouter>
        <Route path="/" element={<Layout />}>
          <Route index element={<Home />}>
        </Route>
      <DataBrowserRouter>
    }
    // After
    let router = createBrowserRouter([{
    path: "/",
    element: <Layout />,
    children: [{
    index: true,

... (truncated)

Changelog

Sourced from react-router-dom's changelog.

6.22.2

Patch Changes

  • Updated dependencies:
    • @remix-run/router@1.15.2
    • react-router@6.22.2

6.22.1

Patch Changes

  • Updated dependencies:
    • react-router@6.22.1
    • @remix-run/router@1.15.1

6.22.0

Minor Changes

  • Include a window__reactRouterVersion tag for CWV Report detection (#11222)

Patch Changes

  • Updated dependencies:
    • @remix-run/router@1.15.0
    • react-router@6.22.0

6.21.3

Patch Changes

  • Fix NavLink isPending when a basename is used (#11195)
  • Remove leftover unstable_ prefix from Blocker/BlockerFunction types (#11187)
  • Updated dependencies:
    • react-router@6.21.3

6.21.2

Patch Changes

  • Leverage useId for internal fetcher keys when available (#11166)
  • Updated dependencies:
    • @remix-run/router@1.14.2
    • react-router@6.21.2

6.21.1

Patch Changes

... (truncated)

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 show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @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)

Bumps [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom) from 6.3.0 to 6.22.2.
- [Release notes](https://github.com/remix-run/react-router/releases)
- [Changelog](https://github.com/remix-run/react-router/blob/main/packages/react-router-dom/CHANGELOG.md)
- [Commits](https://github.com/remix-run/react-router/commits/react-router-dom@6.22.2/packages/react-router-dom)

---
updated-dependencies:
- dependency-name: react-router-dom
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot requested a review from a team March 4, 2024 02:00
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Mar 4, 2024
Copy link
Member

@nilsstreedain nilsstreedain left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Compatible changes, tested locally

@nilsstreedain nilsstreedain added this pull request to the merge queue Mar 8, 2024
Merged via the queue into dev with commit 4d23db7 Mar 8, 2024
2 checks passed
@nilsstreedain nilsstreedain deleted the dependabot/npm_and_yarn/client/dev/react-router-dom-6.22.2 branch March 8, 2024 02:24
nilsstreedain pushed a commit that referenced this pull request Mar 15, 2024
Bumps [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom) from 6.3.0 to 6.22.2.
- [Release notes](https://github.com/remix-run/react-router/releases)
- [Changelog](https://github.com/remix-run/react-router/blob/main/packages/react-router-dom/CHANGELOG.md)
- [Commits](https://github.com/remix-run/react-router/commits/react-router-dom@6.22.2/packages/react-router-dom)

---
updated-dependencies:
- dependency-name: react-router-dom
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
nilsstreedain added a commit that referenced this pull request Mar 15, 2024
* Update GitHub Actions for Merge Queue (#79)

* Update codeql.yml

* Update codeql.yml

* Cleanup Client/Server Setup Documentation and Process (#113)

* Rename .env.example to .env

* Update and rename .env.example to .env

* Update .env

* Update README.md

* Update .env

* Update README.md

* Update and rename .env to .env.example

Set log level to debug and renamed to .env.example

* Rename .env to .env.example

* Update README.md

* Update README.md

* Update README.md

* Cleanup CSRF Token Handling (#123)

* Cleaned up auth.js, need to fix tests

* Adjusted tests for auth.js and fixed broken test

* Adjusted code based on comments

---------

Co-authored-by: sirtinyhead <sirtinyhead@gmail.com>

* force a refresh after usr clicks log out (#127)

* fix small DOM bug (#142)

* Bump bcrypt from 5.1.0 to 5.1.1 in /server (#88)

Bumps [bcrypt](https://github.com/kelektiv/node.bcrypt.js) from 5.1.0 to 5.1.1.
- [Release notes](https://github.com/kelektiv/node.bcrypt.js/releases)
- [Changelog](https://github.com/kelektiv/node.bcrypt.js/blob/master/CHANGELOG.md)
- [Commits](kelektiv/node.bcrypt.js@v5.1.0...v5.1.1)

---
updated-dependencies:
- dependency-name: bcrypt
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Optimized csrf validation to only search database for session using current user (#149)

* Move Project Documentation to GitHub Wiki (#150)

* Moved API Doc to GitHub Wiki

* Move prd.md to GitHub Wiki

* Move sda.md to GitHub Wiki

* Move sdp.md to GitHub Wiki

* Update README.md

* Bump mysql2 from 2.3.3 to 3.7.0 in /server (#107)

Bumps [mysql2](https://github.com/sidorares/node-mysql2) from 2.3.3 to 3.7.0.
- [Release notes](https://github.com/sidorares/node-mysql2/releases)
- [Changelog](https://github.com/sidorares/node-mysql2/blob/master/Changelog.md)
- [Commits](sidorares/node-mysql2@v2.3.3...v3.7.0)

---
updated-dependencies:
- dependency-name: mysql2
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Nils Streedain <tannins_berets_0@icloud.com>

* Bump sequelize from 6.35.0 to 6.37.1 in /server (#133)

Bumps [sequelize](https://github.com/sequelize/sequelize) from 6.35.0 to 6.37.1.
- [Release notes](https://github.com/sequelize/sequelize/releases)
- [Commits](sequelize/sequelize@v6.35.0...v6.37.1)

---
updated-dependencies:
- dependency-name: sequelize
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump nodemon from 2.0.20 to 3.1.0 in /server (#137)

Bumps [nodemon](https://github.com/remy/nodemon) from 2.0.20 to 3.1.0.
- [Release notes](https://github.com/remy/nodemon/releases)
- [Commits](remy/nodemon@v2.0.20...v3.1.0)

---
updated-dependencies:
- dependency-name: nodemon
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump mysql2 from 2.3.3 to 3.9.2 in /server (#144)

Bumps [mysql2](https://github.com/sidorares/node-mysql2) from 2.3.3 to 3.9.2.
- [Release notes](https://github.com/sidorares/node-mysql2/releases)
- [Changelog](https://github.com/sidorares/node-mysql2/blob/master/Changelog.md)
- [Commits](sidorares/node-mysql2@v2.3.3...v3.9.2)

---
updated-dependencies:
- dependency-name: mysql2
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump caniuse-lite from 1.0.30001565 to 1.0.30001596 in /server (#151)

Bumps [caniuse-lite](https://github.com/browserslist/caniuse-lite) from 1.0.30001565 to 1.0.30001596.
- [Commits](browserslist/caniuse-lite@1.0.30001565...1.0.30001596)

---
updated-dependencies:
- dependency-name: caniuse-lite
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump es5-ext from 0.10.62 to 0.10.64 in /server (#139)

Bumps [es5-ext](https://github.com/medikoo/es5-ext) from 0.10.62 to 0.10.64.
- [Release notes](https://github.com/medikoo/es5-ext/releases)
- [Changelog](https://github.com/medikoo/es5-ext/blob/main/CHANGELOG.md)
- [Commits](medikoo/es5-ext@v0.10.62...v0.10.64)

---
updated-dependencies:
- dependency-name: es5-ext
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Nils Streedain <tannins_berets_0@icloud.com>

* Bump follow-redirects from 1.15.2 to 1.15.4 in /client (#101)

Bumps [follow-redirects](https://github.com/follow-redirects/follow-redirects) from 1.15.2 to 1.15.4.
- [Release notes](https://github.com/follow-redirects/follow-redirects/releases)
- [Commits](follow-redirects/follow-redirects@v1.15.2...v1.15.4)

---
updated-dependencies:
- dependency-name: follow-redirects
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Nils Streedain <tannins_berets_0@icloud.com>

* Bump react-calendar from 4.6.1 to 4.8.0 in /client (#106)

Bumps [react-calendar](https://github.com/wojtekmaj/react-calendar/tree/HEAD/packages/react-calendar) from 4.6.1 to 4.8.0.
- [Release notes](https://github.com/wojtekmaj/react-calendar/releases)
- [Commits](https://github.com/wojtekmaj/react-calendar/commits/v4.8.0/packages/react-calendar)

---
updated-dependencies:
- dependency-name: react-calendar
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump latest-version from 6.0.0 to 9.0.0 in /client (#146)

Bumps [latest-version](https://github.com/sindresorhus/latest-version) from 6.0.0 to 9.0.0.
- [Release notes](https://github.com/sindresorhus/latest-version/releases)
- [Commits](sindresorhus/latest-version@v6.0.0...v9.0.0)

---
updated-dependencies:
- dependency-name: latest-version
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Nils Streedain <tannins_berets_0@icloud.com>

* Bump react-router-dom from 6.3.0 to 6.22.2 in /client (#145)

Bumps [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom) from 6.3.0 to 6.22.2.
- [Release notes](https://github.com/remix-run/react-router/releases)
- [Changelog](https://github.com/remix-run/react-router/blob/main/packages/react-router-dom/CHANGELOG.md)
- [Commits](https://github.com/remix-run/react-router/commits/react-router-dom@6.22.2/packages/react-router-dom)

---
updated-dependencies:
- dependency-name: react-router-dom
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump react-bootstrap from 2.2.2 to 2.10.1 in /client (#126)

Bumps [react-bootstrap](https://github.com/react-bootstrap/react-bootstrap) from 2.2.2 to 2.10.1.
- [Release notes](https://github.com/react-bootstrap/react-bootstrap/releases)
- [Changelog](https://github.com/react-bootstrap/react-bootstrap/blob/master/CHANGELOG.md)
- [Commits](react-bootstrap/react-bootstrap@v2.2.2...v2.10.1)

---
updated-dependencies:
- dependency-name: react-bootstrap
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump ip from 1.1.5 to 1.1.9 in /client (#135)

Bumps [ip](https://github.com/indutny/node-ip) from 1.1.5 to 1.1.9.
- [Commits](indutny/node-ip@v1.1.5...v1.1.9)

---
updated-dependencies:
- dependency-name: ip
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Nils Streedain <tannins_berets_0@icloud.com>

* Bump bootstrap from 5.1.3 to 5.3.3 in /client (#138)

Bumps [bootstrap](https://github.com/twbs/bootstrap) from 5.1.3 to 5.3.3.
- [Release notes](https://github.com/twbs/bootstrap/releases)
- [Commits](twbs/bootstrap@v5.1.3...v5.3.3)

---
updated-dependencies:
- dependency-name: bootstrap
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* added semicolons and a small change to a route (#154)

* Redesign react (#140)

* updated navBar and cleaned related code

* redesigned login page TODO: comments

* added comments that seem neccesary

* Changed routing to always allow logged in users to get back to courses page, including nav buttons at the top of all pages

* added 1 image from /public

* Added UI images from client/public/

* Redid # page

* updated # navbar and left side text

* enabled navigation between home, #, and login, set up # to handle isTeacher

* changes app.js to be consistent with current version after changes

* added arrow-left-solid.svg

* Update Homepage and Remove Old Pages/Components (#155)

* Cleaned up Home.js to eb more applicable to the project this year

* Removed old pages/components

* Teacher student prem (#134)

* reject teacher from joinig own course + add is teacher checkbox

* serve two different interfaces based on premissions

* modify tests to pass with isTeacher

* Update users.js

Fix indentation inconsistency

* remove comment in seeder

---------

Co-authored-by: Nils Streedain <tannins_berets_0@icloud.com>

* CSS cleanup and merged CSS files for redesign/refactoring (#166)

* Updated top navbar so that users not logged in can access every page

* Removed empty app.css

* Cleanup old components.css file before rewrite

* Initial cleanup of pages.css

* Initial login CSS cleanup

* Removed unused/legacy CSS selectors

* Combined styles for refactor

* Additional cleanup and fixed # slider

* Combine login/# styles

* Combine unessesary margin/padding in CSS

* Fixed #41

---------

Co-authored-by: sirtinyhead <sirtinyhead@gmail.com>

* Reduce dependencies (#167)

* Removed frontend dependancies with no references. Tested locally

* Removed backend dependancies with no references. Tested locally

---------

Co-authored-by: Elijah Durbin <89661058+Durbin-Elijah@users.noreply.github.com>

* Bump @mui/material from 5.14.18 to 5.15.13 in /client (#168)

Bumps [@mui/material](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material) from 5.14.18 to 5.15.13.
- [Release notes](https://github.com/mui/material-ui/releases)
- [Changelog](https://github.com/mui/material-ui/blob/master/CHANGELOG.md)
- [Commits](https://github.com/mui/material-ui/commits/v5.15.13/packages/mui-material)

---
updated-dependencies:
- dependency-name: "@mui/material"
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump react-loader-spinner from 5.4.5 to 6.1.6 in /client (#163)

Bumps [react-loader-spinner](https://github.com/mhnpd/react-loader-spinner) from 5.4.5 to 6.1.6.
- [Release notes](https://github.com/mhnpd/react-loader-spinner/releases)
- [Commits](mhnpd/react-loader-spinner@v5.4.5...v6.1.6)

---
updated-dependencies:
- dependency-name: react-loader-spinner
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump dotenv from 16.3.1 to 16.4.5 in /server (#160)

Bumps [dotenv](https://github.com/motdotla/dotenv) from 16.3.1 to 16.4.5.
- [Changelog](https://github.com/motdotla/dotenv/blob/master/CHANGELOG.md)
- [Commits](motdotla/dotenv@v16.3.1...v16.4.5)

---
updated-dependencies:
- dependency-name: dotenv
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump winston from 3.11.0 to 3.12.0 in /server (#159)

Bumps [winston](https://github.com/winstonjs/winston) from 3.11.0 to 3.12.0.
- [Release notes](https://github.com/winstonjs/winston/releases)
- [Changelog](https://github.com/winstonjs/winston/blob/master/CHANGELOG.md)
- [Commits](winstonjs/winston@v3.11.0...v3.12.0)

---
updated-dependencies:
- dependency-name: winston
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump moment from 2.29.4 to 2.30.1 in /server (#156)

Bumps [moment](https://github.com/moment/moment) from 2.29.4 to 2.30.1.
- [Changelog](https://github.com/moment/moment/blob/develop/CHANGELOG.md)
- [Commits](moment/moment@2.29.4...2.30.1)

---
updated-dependencies:
- dependency-name: moment
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump winston-daily-rotate-file from 4.7.1 to 5.0.0 in /server (#158)

Bumps [winston-daily-rotate-file](https://github.com/winstonjs/winston-daily-rotate-file) from 4.7.1 to 5.0.0.
- [Release notes](https://github.com/winstonjs/winston-daily-rotate-file/releases)
- [Changelog](https://github.com/winstonjs/winston-daily-rotate-file/blob/master/CHANGELOG.md)
- [Commits](winstonjs/winston-daily-rotate-file@v4.7.1...v5.0.0)

---
updated-dependencies:
- dependency-name: winston-daily-rotate-file
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump @trycourier/courier from 5.7.0 to 6.1.0 in /server (#157)

Bumps [@trycourier/courier](https://github.com/trycourier/courier-node) from 5.7.0 to 6.1.0.
- [Release notes](https://github.com/trycourier/courier-node/releases)
- [Changelog](https://github.com/trycourier/courier-node/blob/master/CHANGELOG.md)
- [Commits](trycourier/courier-node@v5.7.0...v6.1.0)

---
updated-dependencies:
- dependency-name: "@trycourier/courier"
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Update dependabot.yml (#177)

Update dependabot assignees for new repo path

* Update CODEOWNERS (#176)

Update repo code owners for new path

* Bump axios from 1.6.2 to 1.6.7 in /client (#175)

Bumps [axios](https://github.com/axios/axios) from 1.6.2 to 1.6.7.
- [Release notes](https://github.com/axios/axios/releases)
- [Changelog](https://github.com/axios/axios/blob/v1.x/CHANGELOG.md)
- [Commits](axios/axios@v1.6.2...v1.6.7)

---
updated-dependencies:
- dependency-name: axios
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump @mui/icons-material from 5.14.19 to 5.15.13 in /client (#174)

Bumps [@mui/icons-material](https://github.com/mui/material-ui/tree/HEAD/packages/mui-icons-material) from 5.14.19 to 5.15.13.
- [Release notes](https://github.com/mui/material-ui/releases)
- [Changelog](https://github.com/mui/material-ui/blob/master/CHANGELOG.md)
- [Commits](https://github.com/mui/material-ui/commits/v5.15.13/packages/mui-icons-material)

---
updated-dependencies:
- dependency-name: "@mui/icons-material"
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Update readme paths (#178)

* Update README.md

* Update README.md

* Bump react and react-dom in /client (#173)

Bumps [react](https://github.com/facebook/react/tree/HEAD/packages/react) and [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom). These dependencies needed to be updated together.

Updates `react` from 17.0.2 to 18.2.0
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/v18.2.0/packages/react)

Updates `react-dom` from 17.0.2 to 18.2.0
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/v18.2.0/packages/react-dom)

---
updated-dependencies:
- dependency-name: react
  dependency-type: direct:production
  update-type: version-update:semver-major
- dependency-name: react-dom
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump redux from 4.2.1 to 5.0.1 in /client (#172)

Bumps [redux](https://github.com/reduxjs/redux) from 4.2.1 to 5.0.1.
- [Release notes](https://github.com/reduxjs/redux/releases)
- [Changelog](https://github.com/reduxjs/redux/blob/master/CHANGELOG.md)
- [Commits](reduxjs/redux@v4.2.1...v5.0.1)

---
updated-dependencies:
- dependency-name: redux
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump supertest from 6.3.3 to 6.3.4 in /server (#171)

Bumps [supertest](https://github.com/ladjs/supertest) from 6.3.3 to 6.3.4.
- [Release notes](https://github.com/ladjs/supertest/releases)
- [Commits](ladjs/supertest@v6.3.3...v6.3.4)

---
updated-dependencies:
- dependency-name: supertest
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump react-router-dom from 6.22.2 to 6.22.3 in /client (#170)

Bumps [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom) from 6.22.2 to 6.22.3.
- [Release notes](https://github.com/remix-run/react-router/releases)
- [Changelog](https://github.com/remix-run/react-router/blob/main/packages/react-router-dom/CHANGELOG.md)
- [Commits](https://github.com/remix-run/react-router/commits/react-router-dom@6.22.3/packages/react-router-dom)

---
updated-dependencies:
- dependency-name: react-router-dom
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump express from 4.18.2 to 4.18.3 in /server (#169)

Bumps [express](https://github.com/expressjs/express) from 4.18.2 to 4.18.3.
- [Release notes](https://github.com/expressjs/express/releases)
- [Changelog](https://github.com/expressjs/express/blob/master/History.md)
- [Commits](expressjs/express@4.18.2...4.18.3)

---
updated-dependencies:
- dependency-name: express
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: sirtinyhead <sirtinyhead@gmail.com>
Co-authored-by: karinocheretny <102639509+karinocheretny@users.noreply.github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Justin <40401142+Justin-Fernbaugh@users.noreply.github.com>
Co-authored-by: Elijah Durbin <89661058+Durbin-Elijah@users.noreply.github.com>
karinocheretny added a commit that referenced this pull request May 27, 2024
* Update GitHub Actions for Merge Queue (#79)

* Update codeql.yml

* Update codeql.yml

* Cleanup Client/Server Setup Documentation and Process (#113)

* Rename .env.example to .env

* Update and rename .env.example to .env

* Update .env

* Update README.md

* Update .env

* Update README.md

* Update and rename .env to .env.example

Set log level to debug and renamed to .env.example

* Rename .env to .env.example

* Update README.md

* Update README.md

* Update README.md

* Cleanup CSRF Token Handling (#123)

* Cleaned up auth.js, need to fix tests

* Adjusted tests for auth.js and fixed broken test

* Adjusted code based on comments

---------

Co-authored-by: sirtinyhead <sirtinyhead@gmail.com>

* force a refresh after usr clicks log out (#127)

* fix small DOM bug (#142)

* Bump bcrypt from 5.1.0 to 5.1.1 in /server (#88)

Bumps [bcrypt](https://github.com/kelektiv/node.bcrypt.js) from 5.1.0 to 5.1.1.
- [Release notes](https://github.com/kelektiv/node.bcrypt.js/releases)
- [Changelog](https://github.com/kelektiv/node.bcrypt.js/blob/master/CHANGELOG.md)
- [Commits](kelektiv/node.bcrypt.js@v5.1.0...v5.1.1)

---
updated-dependencies:
- dependency-name: bcrypt
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Optimized csrf validation to only search database for session using current user (#149)

* Move Project Documentation to GitHub Wiki (#150)

* Moved API Doc to GitHub Wiki

* Move prd.md to GitHub Wiki

* Move sda.md to GitHub Wiki

* Move sdp.md to GitHub Wiki

* Update README.md

* Bump mysql2 from 2.3.3 to 3.7.0 in /server (#107)

Bumps [mysql2](https://github.com/sidorares/node-mysql2) from 2.3.3 to 3.7.0.
- [Release notes](https://github.com/sidorares/node-mysql2/releases)
- [Changelog](https://github.com/sidorares/node-mysql2/blob/master/Changelog.md)
- [Commits](sidorares/node-mysql2@v2.3.3...v3.7.0)

---
updated-dependencies:
- dependency-name: mysql2
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Nils Streedain <tannins_berets_0@icloud.com>

* Bump sequelize from 6.35.0 to 6.37.1 in /server (#133)

Bumps [sequelize](https://github.com/sequelize/sequelize) from 6.35.0 to 6.37.1.
- [Release notes](https://github.com/sequelize/sequelize/releases)
- [Commits](sequelize/sequelize@v6.35.0...v6.37.1)

---
updated-dependencies:
- dependency-name: sequelize
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump nodemon from 2.0.20 to 3.1.0 in /server (#137)

Bumps [nodemon](https://github.com/remy/nodemon) from 2.0.20 to 3.1.0.
- [Release notes](https://github.com/remy/nodemon/releases)
- [Commits](remy/nodemon@v2.0.20...v3.1.0)

---
updated-dependencies:
- dependency-name: nodemon
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump mysql2 from 2.3.3 to 3.9.2 in /server (#144)

Bumps [mysql2](https://github.com/sidorares/node-mysql2) from 2.3.3 to 3.9.2.
- [Release notes](https://github.com/sidorares/node-mysql2/releases)
- [Changelog](https://github.com/sidorares/node-mysql2/blob/master/Changelog.md)
- [Commits](sidorares/node-mysql2@v2.3.3...v3.9.2)

---
updated-dependencies:
- dependency-name: mysql2
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump caniuse-lite from 1.0.30001565 to 1.0.30001596 in /server (#151)

Bumps [caniuse-lite](https://github.com/browserslist/caniuse-lite) from 1.0.30001565 to 1.0.30001596.
- [Commits](browserslist/caniuse-lite@1.0.30001565...1.0.30001596)

---
updated-dependencies:
- dependency-name: caniuse-lite
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump es5-ext from 0.10.62 to 0.10.64 in /server (#139)

Bumps [es5-ext](https://github.com/medikoo/es5-ext) from 0.10.62 to 0.10.64.
- [Release notes](https://github.com/medikoo/es5-ext/releases)
- [Changelog](https://github.com/medikoo/es5-ext/blob/main/CHANGELOG.md)
- [Commits](medikoo/es5-ext@v0.10.62...v0.10.64)

---
updated-dependencies:
- dependency-name: es5-ext
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Nils Streedain <tannins_berets_0@icloud.com>

* Bump follow-redirects from 1.15.2 to 1.15.4 in /client (#101)

Bumps [follow-redirects](https://github.com/follow-redirects/follow-redirects) from 1.15.2 to 1.15.4.
- [Release notes](https://github.com/follow-redirects/follow-redirects/releases)
- [Commits](follow-redirects/follow-redirects@v1.15.2...v1.15.4)

---
updated-dependencies:
- dependency-name: follow-redirects
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Nils Streedain <tannins_berets_0@icloud.com>

* Bump react-calendar from 4.6.1 to 4.8.0 in /client (#106)

Bumps [react-calendar](https://github.com/wojtekmaj/react-calendar/tree/HEAD/packages/react-calendar) from 4.6.1 to 4.8.0.
- [Release notes](https://github.com/wojtekmaj/react-calendar/releases)
- [Commits](https://github.com/wojtekmaj/react-calendar/commits/v4.8.0/packages/react-calendar)

---
updated-dependencies:
- dependency-name: react-calendar
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump latest-version from 6.0.0 to 9.0.0 in /client (#146)

Bumps [latest-version](https://github.com/sindresorhus/latest-version) from 6.0.0 to 9.0.0.
- [Release notes](https://github.com/sindresorhus/latest-version/releases)
- [Commits](sindresorhus/latest-version@v6.0.0...v9.0.0)

---
updated-dependencies:
- dependency-name: latest-version
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Nils Streedain <tannins_berets_0@icloud.com>

* Bump react-router-dom from 6.3.0 to 6.22.2 in /client (#145)

Bumps [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom) from 6.3.0 to 6.22.2.
- [Release notes](https://github.com/remix-run/react-router/releases)
- [Changelog](https://github.com/remix-run/react-router/blob/main/packages/react-router-dom/CHANGELOG.md)
- [Commits](https://github.com/remix-run/react-router/commits/react-router-dom@6.22.2/packages/react-router-dom)

---
updated-dependencies:
- dependency-name: react-router-dom
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump react-bootstrap from 2.2.2 to 2.10.1 in /client (#126)

Bumps [react-bootstrap](https://github.com/react-bootstrap/react-bootstrap) from 2.2.2 to 2.10.1.
- [Release notes](https://github.com/react-bootstrap/react-bootstrap/releases)
- [Changelog](https://github.com/react-bootstrap/react-bootstrap/blob/master/CHANGELOG.md)
- [Commits](react-bootstrap/react-bootstrap@v2.2.2...v2.10.1)

---
updated-dependencies:
- dependency-name: react-bootstrap
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump ip from 1.1.5 to 1.1.9 in /client (#135)

Bumps [ip](https://github.com/indutny/node-ip) from 1.1.5 to 1.1.9.
- [Commits](indutny/node-ip@v1.1.5...v1.1.9)

---
updated-dependencies:
- dependency-name: ip
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Nils Streedain <tannins_berets_0@icloud.com>

* Bump bootstrap from 5.1.3 to 5.3.3 in /client (#138)

Bumps [bootstrap](https://github.com/twbs/bootstrap) from 5.1.3 to 5.3.3.
- [Release notes](https://github.com/twbs/bootstrap/releases)
- [Commits](twbs/bootstrap@v5.1.3...v5.3.3)

---
updated-dependencies:
- dependency-name: bootstrap
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* added semicolons and a small change to a route (#154)

* Redesign react (#140)

* updated navBar and cleaned related code

* redesigned login page TODO: comments

* added comments that seem neccesary

* Changed routing to always allow logged in users to get back to courses page, including nav buttons at the top of all pages

* added 1 image from /public

* Added UI images from client/public/

* Redid # page

* updated # navbar and left side text

* enabled navigation between home, #, and login, set up # to handle isTeacher

* changes app.js to be consistent with current version after changes

* added arrow-left-solid.svg

* Update Homepage and Remove Old Pages/Components (#155)

* Cleaned up Home.js to eb more applicable to the project this year

* Removed old pages/components

* Teacher student prem (#134)

* reject teacher from joinig own course + add is teacher checkbox

* serve two different interfaces based on premissions

* modify tests to pass with isTeacher

* Update users.js

Fix indentation inconsistency

* remove comment in seeder

---------

Co-authored-by: Nils Streedain <tannins_berets_0@icloud.com>

* CSS cleanup and merged CSS files for redesign/refactoring (#166)

* Updated top navbar so that users not logged in can access every page

* Removed empty app.css

* Cleanup old components.css file before rewrite

* Initial cleanup of pages.css

* Initial login CSS cleanup

* Removed unused/legacy CSS selectors

* Combined styles for refactor

* Additional cleanup and fixed # slider

* Combine login/# styles

* Combine unessesary margin/padding in CSS

* Fixed #41

---------

Co-authored-by: sirtinyhead <sirtinyhead@gmail.com>

* Reduce dependencies (#167)

* Removed frontend dependancies with no references. Tested locally

* Removed backend dependancies with no references. Tested locally

---------

Co-authored-by: Elijah Durbin <89661058+Durbin-Elijah@users.noreply.github.com>

* Bump @mui/material from 5.14.18 to 5.15.13 in /client (#168)

Bumps [@mui/material](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material) from 5.14.18 to 5.15.13.
- [Release notes](https://github.com/mui/material-ui/releases)
- [Changelog](https://github.com/mui/material-ui/blob/master/CHANGELOG.md)
- [Commits](https://github.com/mui/material-ui/commits/v5.15.13/packages/mui-material)

---
updated-dependencies:
- dependency-name: "@mui/material"
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump react-loader-spinner from 5.4.5 to 6.1.6 in /client (#163)

Bumps [react-loader-spinner](https://github.com/mhnpd/react-loader-spinner) from 5.4.5 to 6.1.6.
- [Release notes](https://github.com/mhnpd/react-loader-spinner/releases)
- [Commits](mhnpd/react-loader-spinner@v5.4.5...v6.1.6)

---
updated-dependencies:
- dependency-name: react-loader-spinner
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump dotenv from 16.3.1 to 16.4.5 in /server (#160)

Bumps [dotenv](https://github.com/motdotla/dotenv) from 16.3.1 to 16.4.5.
- [Changelog](https://github.com/motdotla/dotenv/blob/master/CHANGELOG.md)
- [Commits](motdotla/dotenv@v16.3.1...v16.4.5)

---
updated-dependencies:
- dependency-name: dotenv
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump winston from 3.11.0 to 3.12.0 in /server (#159)

Bumps [winston](https://github.com/winstonjs/winston) from 3.11.0 to 3.12.0.
- [Release notes](https://github.com/winstonjs/winston/releases)
- [Changelog](https://github.com/winstonjs/winston/blob/master/CHANGELOG.md)
- [Commits](winstonjs/winston@v3.11.0...v3.12.0)

---
updated-dependencies:
- dependency-name: winston
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump moment from 2.29.4 to 2.30.1 in /server (#156)

Bumps [moment](https://github.com/moment/moment) from 2.29.4 to 2.30.1.
- [Changelog](https://github.com/moment/moment/blob/develop/CHANGELOG.md)
- [Commits](moment/moment@2.29.4...2.30.1)

---
updated-dependencies:
- dependency-name: moment
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump winston-daily-rotate-file from 4.7.1 to 5.0.0 in /server (#158)

Bumps [winston-daily-rotate-file](https://github.com/winstonjs/winston-daily-rotate-file) from 4.7.1 to 5.0.0.
- [Release notes](https://github.com/winstonjs/winston-daily-rotate-file/releases)
- [Changelog](https://github.com/winstonjs/winston-daily-rotate-file/blob/master/CHANGELOG.md)
- [Commits](winstonjs/winston-daily-rotate-file@v4.7.1...v5.0.0)

---
updated-dependencies:
- dependency-name: winston-daily-rotate-file
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump @trycourier/courier from 5.7.0 to 6.1.0 in /server (#157)

Bumps [@trycourier/courier](https://github.com/trycourier/courier-node) from 5.7.0 to 6.1.0.
- [Release notes](https://github.com/trycourier/courier-node/releases)
- [Changelog](https://github.com/trycourier/courier-node/blob/master/CHANGELOG.md)
- [Commits](trycourier/courier-node@v5.7.0...v6.1.0)

---
updated-dependencies:
- dependency-name: "@trycourier/courier"
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Update dependabot.yml (#177)

Update dependabot assignees for new repo path

* Update CODEOWNERS (#176)

Update repo code owners for new path

* Bump axios from 1.6.2 to 1.6.7 in /client (#175)

Bumps [axios](https://github.com/axios/axios) from 1.6.2 to 1.6.7.
- [Release notes](https://github.com/axios/axios/releases)
- [Changelog](https://github.com/axios/axios/blob/v1.x/CHANGELOG.md)
- [Commits](axios/axios@v1.6.2...v1.6.7)

---
updated-dependencies:
- dependency-name: axios
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump @mui/icons-material from 5.14.19 to 5.15.13 in /client (#174)

Bumps [@mui/icons-material](https://github.com/mui/material-ui/tree/HEAD/packages/mui-icons-material) from 5.14.19 to 5.15.13.
- [Release notes](https://github.com/mui/material-ui/releases)
- [Changelog](https://github.com/mui/material-ui/blob/master/CHANGELOG.md)
- [Commits](https://github.com/mui/material-ui/commits/v5.15.13/packages/mui-icons-material)

---
updated-dependencies:
- dependency-name: "@mui/icons-material"
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Update readme paths (#178)

* Update README.md

* Update README.md

* Bump react and react-dom in /client (#173)

Bumps [react](https://github.com/facebook/react/tree/HEAD/packages/react) and [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom). These dependencies needed to be updated together.

Updates `react` from 17.0.2 to 18.2.0
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/v18.2.0/packages/react)

Updates `react-dom` from 17.0.2 to 18.2.0
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/v18.2.0/packages/react-dom)

---
updated-dependencies:
- dependency-name: react
  dependency-type: direct:production
  update-type: version-update:semver-major
- dependency-name: react-dom
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump redux from 4.2.1 to 5.0.1 in /client (#172)

Bumps [redux](https://github.com/reduxjs/redux) from 4.2.1 to 5.0.1.
- [Release notes](https://github.com/reduxjs/redux/releases)
- [Changelog](https://github.com/reduxjs/redux/blob/master/CHANGELOG.md)
- [Commits](reduxjs/redux@v4.2.1...v5.0.1)

---
updated-dependencies:
- dependency-name: redux
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump supertest from 6.3.3 to 6.3.4 in /server (#171)

Bumps [supertest](https://github.com/ladjs/supertest) from 6.3.3 to 6.3.4.
- [Release notes](https://github.com/ladjs/supertest/releases)
- [Commits](ladjs/supertest@v6.3.3...v6.3.4)

---
updated-dependencies:
- dependency-name: supertest
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump react-router-dom from 6.22.2 to 6.22.3 in /client (#170)

Bumps [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom) from 6.22.2 to 6.22.3.
- [Release notes](https://github.com/remix-run/react-router/releases)
- [Changelog](https://github.com/remix-run/react-router/blob/main/packages/react-router-dom/CHANGELOG.md)
- [Commits](https://github.com/remix-run/react-router/commits/react-router-dom@6.22.3/packages/react-router-dom)

---
updated-dependencies:
- dependency-name: react-router-dom
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump express from 4.18.2 to 4.18.3 in /server (#169)

Bumps [express](https://github.com/expressjs/express) from 4.18.2 to 4.18.3.
- [Release notes](https://github.com/expressjs/express/releases)
- [Changelog](https://github.com/expressjs/express/blob/master/History.md)
- [Commits](expressjs/express@4.18.2...4.18.3)

---
updated-dependencies:
- dependency-name: express
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: sirtinyhead <sirtinyhead@gmail.com>
Co-authored-by: karinocheretny <102639509+karinocheretny@users.noreply.github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Justin <40401142+Justin-Fernbaugh@users.noreply.github.com>
Co-authored-by: Elijah Durbin <89661058+Durbin-Elijah@users.noreply.github.com>
# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant