diff --git a/CHANGELOG.md b/CHANGELOG.md index 808b3a1..c53e8d0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,16 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.14.3] - 2023-12-12 + +### Added + +### Changed + +- Return `404` for not exposed endpoints instead of `403` +- Disallow blank `delete_tokens` and `auth_tokens` +- Bump dependencies + ## [0.14.2] - 2023-12-05 ### Added diff --git a/Cargo.lock b/Cargo.lock index 2cd59d1..91ea2bc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2242,7 +2242,7 @@ checksum = "7ffc183a10b4478d04cbbbfc96d0873219d962dd5accaff2ffbd4ceb7df837f4" [[package]] name = "rustypaste" -version = "0.14.2" +version = "0.14.3" dependencies = [ "actix-files", "actix-multipart", diff --git a/Cargo.toml b/Cargo.toml index 90b87da..c757913 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rustypaste" -version = "0.14.2" +version = "0.14.3" edition = "2021" description = "A minimal file upload/pastebin service" authors = ["Orhun Parmaksız "] @@ -20,7 +20,7 @@ shuttle = ["dep:shuttle-actix-web", "dep:shuttle-runtime", "dep:tokio"] [dependencies] actix-web = { version = "4.4.0" } -actix-web-grants = { version = "4.0.3" } +actix-web-grants = { version = "4.0.3" } actix-multipart = "0.6.1" actix-files = "0.6.2" shuttle-actix-web = { version = "0.35.0", optional = true }