From e34f7477617a7e8d16ce7feafac352f9e6adca5b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Orhun=20Parmaks=C4=B1z?= Date: Tue, 12 Dec 2023 21:30:08 +0300 Subject: [PATCH] chore(release): prepare for v0.14.3 --- CHANGELOG.md | 10 ++++++++++ Cargo.lock | 2 +- Cargo.toml | 4 ++-- 3 files changed, 13 insertions(+), 3 deletions(-) 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 }