Builder changelog
This page contains the changelog for the builder. It is updated with each new release of the builder. The changelog is organized by version and date.
Version 1.51.0 and 1.52.0
- GS-25717 Service and app routes now support app routes navigation. It also supports navigation by template route alone if the app route is not provided.
- GS-25581 Adds targeted loads fallback capability to service builds, so application builds would not lose functionality when built there. This is currenctly experimental and will likely receive further changes for its behaviour.
- Adds helpers to be available
dtSinceandindexOfStringSlice - Adds tools helper to be available
{{ .Tools.GetStaticNavPath "my-page" }} - Adds helper
- GS-25845 Adjusted
toTitlebehaviour to match that of the server - Added new tools helper to list all applications and v2 modules that have been added to the build
{{ .Tools.ListV2Modules }} - Build flow improvements: fixed an issue where the new flow would reach command line length limits on large applications.
- GS-25834 Adds new tools helpers (for use in functions only) for B2B authentication (B2BLogin, B2BLogout, B2BLoginRegister, B2BRequestPasswordReset and B2BConfirmPasswordReset)
- All take in the same json instruction as the corresponding calls on the api
{{ .Tools.B2BLogin{“username”: “”, “password”: “”, “authDriver”: “password”}}}. The template field is filled automatically.
- All take in the same json instruction as the corresponding calls on the api
- GS-25894 Adds new helpers to generate local bcrypt hashes and verify them
{{ bcryptHash "my-password" }}and{{ bcryptVerify "my-password" "the-hash" }} - GS-25232
RunQueryV2is now supported on service and wasm builds - Adds support for
ApiLogFilesapi in integrated dynamic api’s - GS-25602 Adds an option to render js scripts as per-template scripts (same as the server and service does) instead of the single blob. This is experimental and will likely break applications that have already been built with the default single blob setting.