diff --git a/ReleaseNotes.html b/ReleaseNotes.html index 7b598e440..4ee9a8a8b 100644 --- a/ReleaseNotes.html +++ b/ReleaseNotes.html @@ -20,23 +20,22 @@

Wt Release notes

the way you build Wt, the way you configure Wt or the Wt API and behaviour. -

Release 4.10.0 (TBD)

+

Release 4.10.0 (May 30, 2023)

+ +

+ Wt 4.10.0 mainly features back-end improvements and some new features that provide some convenience. + There were some issues with persisting dates and time in Sqlite3. +

+ +

+ In some cases user will have to change some things about their CMake set-up: + If users wish to use OpenGL, they may need to provide a GLEW installation with GLEW_ROOT, + since GLEW is no longer bundled with Wt. +

+ +

New features

+ +

Other improvements

+ + + +

Bug fixes

+ + -
  • - WServer::addResource() - can now take a shared_ptr instead of a raw pointer, - enforcing that the resource lives at least as long as the server, unless removed with - WServer::removeEntryPoint(). - The overload that takes a raw pointer is now deprecated. - This also fixes issue #11301, where there - could be a use-after-free in test.http. -
  • Issue #11578: fixed an issue with the Dbo forms not correctly validating @@ -137,9 +160,15 @@

    Release 4.10.0 (TBD)

    correct it before saving the form.
  • - Issue #11604: - added a virtual destructor to WAbstractFormDelegate - to ensure proper deletion and explicitly removed the copy and move constructor and assignment operator. + Issue #11377: + when using wtisapi with WebSockets enabled in the wt_config.xml, Wt would + try and fail to establish a WebSockets connection (this is not supported by ISAPI). Wt + now disables WebSockets (and notifies this in the logs) when using ISAPI. +
  • +
  • + Issue #11423: + WResource::internalPath() + now returns the empty string for static resources, since it doesn't make sense for static resources.
  • Issue #10485: @@ -150,14 +179,8 @@

    Release 4.10.0 (TBD)

    The GLEW_ROOT CMake variable can be used if it is installed elsewhere.
  • - Issue #11562: - The tutorials - (Wt, - Dbo, and - Auth) - were updated to be built with Asciidoctor instead of the legacy Python implementation, - its style was updated to match the JWt website style, and the text was brought up to - date a bit. The blog example was likewise updated to use Asciidoctor. + Issue #11376: + fixed an issue with redirects when using wtfcgi.