increase some form limits and cut a new release #24
5 changed files with 12 additions and 6 deletions
2
Cargo.lock
generated
2
Cargo.lock
generated
|
|
@ -1204,7 +1204,7 @@ checksum = "1aab8fc367588b89dcee83ab0fd66b72b50b72fa1904d7095045ace2b0c81c35"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "jobboerse"
|
name = "jobboerse"
|
||||||
version = "0.1.5"
|
version = "0.1.6"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"actix-files",
|
"actix-files",
|
||||||
"actix-multipart",
|
"actix-multipart",
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "jobboerse"
|
name = "jobboerse"
|
||||||
version = "0.1.5"
|
version = "0.1.6"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
rust-version = "1.58"
|
rust-version = "1.58"
|
||||||
repository = "https://www.fs-infmath.uni-kiel.de/git/FS-InfMath/Jobboerse"
|
repository = "https://www.fs-infmath.uni-kiel.de/git/FS-InfMath/Jobboerse"
|
||||||
|
|
|
||||||
|
|
@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
## [0.1.6] (2022-05-26)
|
||||||
|
|
||||||
|
### Change
|
||||||
|
- increase some form limits
|
||||||
|
|
||||||
## [0.1.5] (2022-05-26)
|
## [0.1.5] (2022-05-26)
|
||||||
|
|
||||||
### Change
|
### Change
|
||||||
|
|
@ -66,6 +71,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
- Overview Page of Dependency licenses
|
- Overview Page of Dependency licenses
|
||||||
|
|
||||||
[Unreleased]: https://www.fs-infmath.uni-kiel.de/git/FS-InfMath/Jobboerse/src/main
|
[Unreleased]: https://www.fs-infmath.uni-kiel.de/git/FS-InfMath/Jobboerse/src/main
|
||||||
|
[0.1.6]: https://www.fs-infmath.uni-kiel.de/git/FS-InfMath/Jobboerse/src/version-0.1.6
|
||||||
[0.1.5]: https://www.fs-infmath.uni-kiel.de/git/FS-InfMath/Jobboerse/src/version-0.1.5
|
[0.1.5]: https://www.fs-infmath.uni-kiel.de/git/FS-InfMath/Jobboerse/src/version-0.1.5
|
||||||
[0.1.4]: https://www.fs-infmath.uni-kiel.de/git/FS-InfMath/Jobboerse/src/version-0.1.4
|
[0.1.4]: https://www.fs-infmath.uni-kiel.de/git/FS-InfMath/Jobboerse/src/version-0.1.4
|
||||||
[0.1.3]: https://www.fs-infmath.uni-kiel.de/git/FS-InfMath/Jobboerse/src/version-0.1.3
|
[0.1.3]: https://www.fs-infmath.uni-kiel.de/git/FS-InfMath/Jobboerse/src/version-0.1.3
|
||||||
|
|
|
||||||
2
dist/arch/PKGBUILD
vendored
2
dist/arch/PKGBUILD
vendored
|
|
@ -9,7 +9,7 @@ _reponame=Jobboerse
|
||||||
_pkgname="${_reponame,,}"
|
_pkgname="${_reponame,,}"
|
||||||
_features=()
|
_features=()
|
||||||
pkgname="${_reponame,,}"
|
pkgname="${_reponame,,}"
|
||||||
pkgver=0.1.5
|
pkgver=0.1.6
|
||||||
pkgrel=1
|
pkgrel=1
|
||||||
pkgdesc="FS-InfMath Job-Offer Page"
|
pkgdesc="FS-InfMath Job-Offer Page"
|
||||||
arch=('x86_64') # Other architectures may work
|
arch=('x86_64') # Other architectures may work
|
||||||
|
|
|
||||||
|
|
@ -338,9 +338,9 @@ impl JobOfferSubmitForm {
|
||||||
const BACKDATE: &str = "backdate";
|
const BACKDATE: &str = "backdate";
|
||||||
|
|
||||||
match field.name() {
|
match field.name() {
|
||||||
TITLE => once_field(field, TITLE, &mut title, 128).await?,
|
TITLE => once_field(field, TITLE, &mut title, 512).await?,
|
||||||
OFFERING_PARTY => {
|
OFFERING_PARTY => {
|
||||||
once_field(field, OFFERING_PARTY, &mut offering_party, 128).await?
|
once_field(field, OFFERING_PARTY, &mut offering_party, 512).await?
|
||||||
}
|
}
|
||||||
// Technically the local part can be 64 octets and the domain part can be 254 octets
|
// Technically the local part can be 64 octets and the domain part can be 254 octets
|
||||||
// resulting in 320 octets including the `@` see RFC 2821
|
// resulting in 320 octets including the `@` see RFC 2821
|
||||||
|
|
@ -395,7 +395,7 @@ impl JobOfferSubmitForm {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
LINK_TITLES => {
|
LINK_TITLES => {
|
||||||
multi_field(field, LINK_TITLES, &mut link_titles, 128, Some(20)).await?
|
multi_field(field, LINK_TITLES, &mut link_titles, 512, Some(20)).await?
|
||||||
}
|
}
|
||||||
LINK_URLS => multi_field(field, LINK_URLS, &mut link_urls, 2048, Some(20)).await?,
|
LINK_URLS => multi_field(field, LINK_URLS, &mut link_urls, 2048, Some(20)).await?,
|
||||||
BACKDATE => {
|
BACKDATE => {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue