diff --git a/CHANGELOG.md b/CHANGELOG.md index 3db2063a8099fff085963b2be9bde8ef9d2105cb..a9ec3f39ec61bdaee453ef1c6701457406e12a60 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,24 +12,30 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] ### Added -- A graph which details the breakdown of requests over time was added to the lab statistics page. [@hpage](https://gitlab.ewi.tudelft.nl/hpage) -- Enqueueing for a slot can now be restricted after a slot starts. [@hpage](https://gitlab.ewi.tudelft.nl/hpage) -- Allow feedback to be flagged as inappropriate + - Allow users to report unnapropariate behavior. [@cedricwilleken](https://gitlab.ewi.tudelft.nl/cedricwilleken) + +### Changed + +### Fixed + +## [2.3.2] + +### Added +- A requests-over-time graph has been added to the session statistics page. [@hpage](https://gitlab.ewi.tudelft.nl/hpage) +- Enqueueing for a slot can now be restricted, such that students cannot enqueue after a time slot has started. [@hpage](https://gitlab.ewi.tudelft.nl/hpage) +- Given feedback can now be flagged as inappropriate. This will remove the feedback item from your feedback page and submit it to be reviewed. @cedricwilleken - Greet users with our code of conduct once every academic year. [@cedricwilleken](https://gitlab.ewi.tudelft.nl/cedricwilleken) -- Allow feedback to be flagged as inappropriate. [@cedricwilleken](https://gitlab.ewi.tudelft.nl/cedricwilleken) -- Allow users to report unnapropariate behavior. [@cedricwilleken](https://gitlab.ewi.tudelft.nl/cedricwilleken) -- A revoke button on the request info page which allows course staff to revoke requests. [@hpage](https://gitlab.ewi.tudelft.nl/hpage) +- Course staff can now revoke requests. [@hpage](https://gitlab.ewi.tudelft.nl/hpage) ### Changed -- Feedback with deleted requests can now be seen by TAs. Course managers can not see this. -- Deleted feedback can now be seen by admins. +- Deleting a session no longer deletes the feedback in that session. +- Slotted sessions no longer have any restrictions on the exact distribution of their time slots. + This means that slotted sessions can now span multiple days, can have breaks with no slots in between blocks of slots, and can have overlapping slots. ### Fixed -- Deleted information now does not stop certain pages from rendering. [@hpage](https://gitlab.ewi.tudelft.nl/hpage) -- Claim request button now can't be seen when the request is already claimed. [@hpage](https://gitlab.ewi.tudelft.nl/hpage) -- Assistant stats on edition status page no longer stops working if there are deleted requests. [@hpage](https://gitlab.ewi.tudelft.nl/hpage) -- CTRL + click on a request in the lab view now opens the request in a new tab. [@mmadara](https://gitlab.ewi.tudelft.nl/mmadara) -- Assistant stats on edition status page no longer stops working if there are deleted requests. [@hpage](https://gitlab.ewi.tudelft.nl/hpage) +- Deleted information would stop certain pages from rendering. [@hpage](https://gitlab.ewi.tudelft.nl/hpage) +- The claim request button would appear when a request was already claimed. [@hpage](https://gitlab.ewi.tudelft.nl/hpage) +- CTRL + click on a request in the session view did not work. [@mmadara](https://gitlab.ewi.tudelft.nl/mmadara) ## [2.3.1] diff --git a/build.gradle.kts b/build.gradle.kts index 1e1e1128f955c101143ac04dac8340a30eaa59cb..b659932bb75b5bc4bdf6b143c7e2f5d3aaad112c 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -6,7 +6,7 @@ import org.springframework.boot.gradle.tasks.run.BootRun import java.nio.file.Files group = "nl.tudelft.ewi.queue" -version = "2.3.0" +version = "2.3.1" val javaVersion = JavaVersion.VERSION_17