From 2a1e159425b0d2de8803d2bc667878924b044e0d Mon Sep 17 00:00:00 2001 From: Github Actions Date: Mon, 2 Dec 2024 11:44:45 +0000 Subject: [PATCH 1/2] Version bump --- changelog.md | 6 +++++- gradle.properties | 6 +++--- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/changelog.md b/changelog.md index 4114daa..284422c 100644 --- a/changelog.md +++ b/changelog.md @@ -9,6 +9,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.0.0-beta24] - 2024-12-02 + ## [1.0.0-beta23] - 2024-11-23 ## [1.0.0-beta22] - 2024-11-15 @@ -58,7 +60,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Upgraded to Undertow latest due to security fix - First iteration of this module -[Unreleased]: https://github.com/ortus-boxlang/boxlang-miniserver/compare/v1.0.0-beta23...HEAD +[Unreleased]: https://github.com/ortus-boxlang/boxlang-miniserver/compare/v1.0.0-beta24...HEAD + +[1.0.0-beta24]: https://github.com/ortus-boxlang/boxlang-miniserver/compare/v1.0.0-beta23...v1.0.0-beta24 [1.0.0-beta23]: https://github.com/ortus-boxlang/boxlang-miniserver/compare/v1.0.0-beta22...v1.0.0-beta23 diff --git a/gradle.properties b/gradle.properties index 29d5317..abdfecd 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ -#Sat Nov 23 12:54:43 UTC 2024 -boxlangVersion=1.0.0-beta24 +#Mon Dec 02 11:44:43 UTC 2024 +boxlangVersion=1.0.0-beta25 jdkVersion=21 -version=1.0.0-beta24 +version=1.0.0-beta25 group=ortus.boxlang From 95b931f064aa16d185952600f5556c3047c23802 Mon Sep 17 00:00:00 2001 From: Jon Clausen Date: Wed, 4 Dec 2024 22:22:35 -0600 Subject: [PATCH 2/2] add test App.cfc for sessions --- src/test/www/Application.bx | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 src/test/www/Application.bx diff --git a/src/test/www/Application.bx b/src/test/www/Application.bx new file mode 100644 index 0000000..d323cf5 --- /dev/null +++ b/src/test/www/Application.bx @@ -0,0 +1,9 @@ +class{ + this.sessionManagement = true; + this.sessionCookie = { + secure: true, + httpOnly: true, + sameSite: true, + timeout: createTimeSpan( 0, 0, 20, 0 ) + } +} \ No newline at end of file