The web, with simplicity.
-
[Luca Guidi] Sensible default configuration for application logger, with per-environment defaults:
The defaults are:
- In production, log for level
info, send logs to$stdoutin JSON format without colours - In development, log for level
debug, send logs to$stdoutin single-line format with colours - In test, log for level
debug, send logs tolog/test.login single-line format without colours
To configure the logger:
module MyApp class Application < Hanami::Application config.logger.level = :info config.logger.stream = $stdout config.logger.stream = "/path/to/file" config.logger.stream = StringIO.new config.logger.format = :json config.logger.format = MyCustomFormatter.new config.logger.color = false # disable coloring config.logger.color = MyCustomColorizer.new config.logger.filters << "secret" # add config.logger.filters += ["yet", "another"] # add config.logger.filters = ["foo"] # replace # See https://ruby-doc.org/stdlib/libdoc/logger/rdoc/Logger.html config.logger.options = ["daily"] # time based log rotation config.logger.options = [0, 1048576] # size based log rotation end end
To configure the logger for specific environments:
module MyApp class Application < Hanami::Application config.environment(:staging) do config.logger.level = :info end end end
To assign a custom replacement logger object:
module MyApp class Application < Hanami::Application config.logger = MyCustomLogger.new end end
- In production, log for level
-
[Tim Riley] Comprehensive
config.source_dirssettingThis replaces the previous
component_dir_pathssetting, and contains two nested settings:config.source_dirs.component_dirs(backed byDry::System::Config::ComponentDirs), for directories of source files intended to be registered as componentsconfig.source_dirs.autoload_paths, for directories of source files not intended for registration as components, but still to be made accessible by the autoloader
To add and configure your own additional component dirs:
module MyApp class Application < Hanami::Application # Adding a simple component dir config.source_dirs.component_dirs.add "serializers" # Adding a component dir with custom configuration config.source_dirs.component_dirs.add "serializers" do |dir| dir.auto_register = proc { |component| !component.identifier.start_with?("structs") } end end end
To customize the configuration of the default component dirs ("lib", "actions", "repositories", "views"):
module MyApp class Application < Hanami::Application # Customising a default component dir config.source_dirs.component_dirs.dir("lib").auto_register = proc { |component| !component.identifier.start_with?("structs") } # Setting default config to apply to all component dirs config.source_dirs.component_dirs.auto_register = proc { |component| !component.identifier.start_with?("entities") } # Removing a default component dir config.source_dirs.component_dirs.delete("views") end end
To configure the autoload paths (defaulting to
["entities"]):module MyApp class Application < Hanami::Application # Adding your own autoload paths config.source_dirs.autoload_paths << "structs" # Or providing a full replacement config.source_dirs.autoload_paths = ["structs"] end end
-
[Tim Riley] Application router is lazy loaded (not requiring application to be fully booted) and now available via
Hanami.rack_apporHanami.application.rack_app, instead of the previousHanami.app(which required the app to be booted first).
-
[Luca Guidi] Manage Content Security Policy (CSP) with "zero-defaults" policy. New API to change CSP values and to disable the feature.
# Read a CSP value module MyApp class Application < Hanami::Application config.actions.content_security_policy[:base_uri] # => "'self'" end end
# Override a default CSP value module MyApp class Application < Hanami::Application # This line will generate the following CSP fragment # plugin-types ; config.actions.content_security_policy[:plugin_types] = nil end end
# Append to a default CSP value module MyApp class Application < Hanami::Application # This line will generate the following CSP fragment # script-src 'self' https://my.cdn.test; config.actions.content_security_policy[:script_src] += " https://my.cdn.test" end end
# Add a custom CSP key. Useful when CSP standard evolves. module MyApp class Application < Hanami::Application # This line will generate the following CSP fragment # my-custom-setting 'self'; config.actions.content_security_policy[:my-custom-setting] = "'self'" end end
# Delete a CSP key. module MyApp class Application < Hanami::Application config.actions.content_security_policy.delete(:object_src) end end
# Disable CSP feature. module MyApp class Application < Hanami::Application config.actions.content_security_policy = false end end
- [Luca Guidi] Added
Hanami.shutdownto stop all bootable components in the application container - [Tim Riley] Added
component_dir_pathsapplication setting to allow for components to be loaded from additional directories inside each slice directory. To begin with, this defaults to%w[actions repositories views]. Components inside these directories are expected to be namespaced to match the directory name; e.g. given amainslice,slices/main/actions/home.rbis expected to defineMain::Actions::Home, and will be registered in the slice container as"actions.home".
- [Tim Riley] A slice's classes can now be defined directly inside
slices/[slice_name]/lib/; e.g. given amainslice,slices/main/lib/example.rbis expected to defineMain::Example, and will be registered in the slice container as"example" - [Tim Riley] The root
lib/directory is no longer configured as a component dir, and classes insidelib/[app_namespace]/will no longer be auto-registered into the container. If you need to share components, create them in their own slices as appropriate, and import those slices into the other slices that require them. - [Tim Riley]
lib/[app_namespace]/is configured for autoloading, andlib/is added to$LOAD_PATHto support explicit requires for source files outsidelib/[app_namespace]/. - [Tim Riley] (Internal) Ported
Hanami::Configurationand related classes to use dry-configurable - [Tim Riley] Application inflector can be entirely replaced, if required, via
Hanami::Configuration#inflector=. Custom inflection rules can still be provided to the default inflector viaHanami::Configuration#inflections. - [Marc Busqué] App settings are defined within a concrete class rather than an anonymous block, to allow for users to leverage the typical behavior of Ruby classes, such as for defining their own types module to use for coercing setting values. This class also relies on dry-configurable for its settings implementation, so the standard dry-configurable
settingAPI is available, such as theconstructor:anddefault:options.# frozen_string_literal: true require "dry/types" require "hanami/application/settings" module TestApp class Settings < Hanami::Application::Settings # Example usage of a types module (previously not possible inside the anonymous block) Types = Dry.Types() setting :session_secret, constructor: Types::String.constrained(min_size: 20) setting :some_bool, constructor: Types::Params::Bool, default: false end end
- [Marc Busqué] Application
settings_loaderandsettings_loader_optionshave been replaced withsettings_store, which is an updated abstraction for providing setting values to work with the newHanami::Application::Settingsimplementation noted above (seeApplication::Settings::DotenvStorefor the default store, which provides the same behavior as previously) - [Marc Busqué] Routes are defined within a concrete class rather than an anonymous block, to provide consistency with the settings (noted above), as well a place for additional behavior (in future releases):
# frozen_string_literal: true require "hanami/application/routes" module MyApp class Routes < Hanami::Application::Routes define do slice :main, at: "/" do root to: "home.show" end end end end
- [Luca Guidi] Official support for Ruby: MRI 3.0
- [Tim Riley] Code autoloading via Zeitwerk
- [Tim Riley]
Hanami::Applicationsubclasses generate and configure aDry::System::Container, accessible via.containerandAppNamespace::Container, with several common container methods available directly via the application subclass (e.g.Bookshelf::Application["foo"]orHanami.application["foo"]) - [Tim Riley] Introduced
Hanami::Application.register_bootableto register custom components - [Tim Riley] Introduced
Hanami::Application.keysto get the list of resolved components - [Tim Riley] Dynamically create an auto-injection mixin (e.g.
Bookshelf::Deps)# frozen_string_literal: true module Bookshelf class CreateThing include Deps[service_client: "some_service.client"] def call(attrs) # Validate attrs, etc. service_client.create(attrs) end end end
- [Tim Riley] Introduced application settings. They are accessible via
Hanami.application.settingsinconfig/settings.rb - [Tim Riley] Introduced application slices to organise high-level application concerns. Slices are generated based on subdirectories of
slices/, and map onto corresponding ruby module namespaces, e.g.slices/main->Main, with the slice instance itself beingMain::Slice(as well as being accessible viaHanami.application.slices[:main]) - [Tim Riley] Each slice generates and configures has its own
Dry::System::Container, accessible via the slice instance (e.g.Main::Slice.container) as well as via its own constant (e.g.Main::Container) - [Tim Riley] Slice containers automatically import the application container, under the
"application"namespace - [Tim Riley] Allow slice containers to be imported by other slice containers
- [Luca Guidi] Drop support for Ruby: MRI 2.5
- [Tim Riley] Removed
config.cookiesin favor ofconfig.actions.cookies - [Tim Riley] Removed
config.sessionsin favor ofconfig.actions.sessions - [Tim Riley] Removed
config.securitysettings
- [Luca Guidi] Implemented from scratch
hanami version - [Luca Guidi] Implemented from scratch
hanami server - [Luca Guidi] Main configuration is opinionated: when a setting is not specified in generated code, it uses a framework default.
- [Luca Guidi] Main configuration setting
environment: to yield env based settings (e.g.config.environment(:production) { |c| c.logger = {...} }) - [Luca Guidi] Main configuration setting
base_url: to set the base URL of the app (e.g.config.base_url = "https://example.com") - [Luca Guidi] Main configuration setting
logger: to set the logger options (e.g.config.logger = { level: :info, format: :json }) - [Luca Guidi] Main configuration setting
routes: to set the path to routes file (e.g.config.routes = "path/to/routes") - [Luca Guidi] Main configuration setting
cookies: to set cookies options (e.g.config.cookies = { max_age: 300 }) - [Luca Guidi] Main configuration setting
sessions: to set session options (e.g.config.sessions = :cookie, { secret: "abc" }) - [Luca Guidi] Main configuration setting
default_request_format: to set the fallback for request format (aka MIME Type) (e.g.config.default_request_format = :json) - [Luca Guidi] Main configuration setting
default_response_format: to set the default response format (aka MIME Type) (e.g.config.default_response_format = :json) - [Luca Guidi] Main configuration setting
middlewareto mount Rack middleware (e.g.config.middleware.use MyMiddleware, "argument") - [Luca Guidi] Main configuration setting
securityto set security settings (see below) - [Luca Guidi] Main configuration setting
inflectionsto configure inflections (e.g.config.inflections { |i| i.plural "virus", "viruses" }) - [Luca Guidi] Main configuration security setting
x_frame_options: defaults to"deny"(e.g.config.security.x_frame_options = "sameorigin") - [Luca Guidi] Main configuration security setting
x_content_type_options: defaults to"nosniff"(e.g.config.security.x_content_type_options = nil) - [Luca Guidi] Main configuration security setting
x_xss_protection: defaults to"1; mode=block"(e.g.config.security.x_xss_protection = "1") - [Luca Guidi] Main configuration security setting
content_security_policy: defaults to"form-action 'self'; frame-ancestors 'self'; base-uri 'self'; default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self' https: data:; style-src 'self' 'unsafe-inline' https:; font-src 'self'; object-src 'none'; plugin-types application/pdf; child-src 'self'; frame-src 'self'; media-src 'self'"(e.g.config.security.content_security_policy[:style_src] += " https://my.cdn.example"to add another source) (e.g.config.security.content_security_policy[:plugin_types] = nilto override the settings)
- [Luca Guidi] Drop support for Ruby: MRI 2.3, and 2.4.
- [Luca Guidi]
Hanami::Applicationmust be used as superclass for main application underconfig/application.rb(e.g.Bookshelf::Application) - [Luca Guidi] Main configuration is available at
config/application.rbinstead ofconfig/enviroment.rb - [Luca Guidi] Removed
Hanami.configurein favor of main application configuration (e.g.Bookshelf::Application.config) - [Luca Guidi] Removed DSL syntax for main configuration (from
cookies max_age: 600toconfig.cookies = { max_age: 600 }) - [Luca Guidi] Per enviroment settings must be wrapped in a block (e.g.
config.enviroment(:production) { |c| c.logger = {} }) - [Luca Guidi] Concrete applications are no longer supported (e.g.
Web::Applicationinapps/web/application.rb) - [Luca Guidi] Main routes must be configured at
config/routes.rb:
# frozen_string_literal: true
Hanami.application.routes do
mount :web, at: "/" do
root to: "home#index"
end
mount :admin, at: "/admin" do
root to: "home#index"
end
end- [Luca Guidi] Per application routes are no longer supported (e.g.
apps/web/config/routes.rb) - [Luca Guidi] Removed
shotgunand code reloading from the core. Code reloading is implemented byhanami-reloadergem. - [Luca Guidi] Removed support for
.hanamirc
- [Slava Kardakov] Fix generated
config.rurequire_relativestatement - [Armin] Fix
Hanami::CommonLoggerelapsed time compatibility withrack2.1.0+ - [Adam Daniels] Fix generated tests compatibility with
minitest6.0+
- [Gray Manley] Standardize file loading for
.envfiles (see: https://github.com/bkeepers/dotenv#what-other-env-files-can-i-use)
- [Alfonso Uceda & Luca Guidi] Ensure to use
:hostoption when mounting an application in main router (e.g.mount Beta::Application.new, at: "/", host: "beta.hanami.test")
- [Luca Guidi] Support both
hanami-validations1 and 2
- [Wisnu Adi Nurcahyo] Ensure
hanami generatesyntax for Welcome page is compatible with ZSH - [Luca Guidi] Don't let
hanamito crash when called withoutbundle exec
- [Luca Guidi] Official support for Ruby: MRI 2.6
- [Luca Guidi] Support
bundler2.0+
- [Aidan Coyle] Remove from app generator support for deprecated
force_sslsetting - [Alessandro Caporrini] Remove from app generator support for deprecated
body_parserssetting - [Daphne Rouw & Sean Collins] Make app generator to work when code in
config/environment.rbuses double quotes
- [Luca Guidi] Automatically log body payload from body parsers
- [Luca Guidi] Generate correct syntax for layout unit tests
- [Vladislav Yashin] Fix concatenation of
PathnameandStringinHanami::CommonLogger
- [Sean Collins] Generate new projects with RSpec as default testing framework
- [Alfonso Uceda] Generate actions/views/mailers with nested module/class definition
- [Anton Davydov] Make possible to pass extra settings for custom logger instances (eg.
logger SemanticLogger.new, :foo, :bar) - [graywolf] Ensure
hanami generate appto work withoutrequire_relativeentries inconfig/environment.rb - [Makoto Tajitsu & Luca Guidi] Fixed regression for
hanami new .that used to generate a broken project
- [John Downey] Don't use thread unsafe
Dir.chdirto serve static assets
- [Kelsey Judson] Ensure to not reload code under
lib/whenshotgunisn't bundled
- [Luca Guidi] Raise meaningful error message when trying to access
sessionorflashwith disabled sessions - [Pistos] Print stack trace to standard output when a CLI command raises an error
- [Luca Guidi] HTTP/2 Early Hints
- [Alfonso Uceda] Render custom template if an exception is raised from a view or template
- [Luca Guidi] Official support for Ruby MRI 2.5+
- [Alfonso Uceda] Fixed regression for mailer generator: when using options like
--fromand--tothe generated Ruby code isn't valid as it was missing string quotes. - [Luca Guidi] Generate tests for views including
:formatinexposures. This fixes view unit tests when the associated template renders a partial.
- [Luca Guidi] Ensure
hanami db rollbacksteps to be a positive integer
- [Yuji Ueki] Generate RSpec tests with
:typemetadata (egtype: :action) - [Kirill] Add
--relationoption forhanami generate model(egbundle exec hanami generate model user --relation=accounts)
- [Luca Guidi] Don't require
:pluginsgroup when runninghanami new
- [Luca Guidi] Introduce
:pluginsgroup forGemfilein order enable Hanami plugin gems - [Alfonso Uceda] CLI:
hanami db rollbackto revert one or more migrations at once
- [Gabriel Gizotti] Fix generate/destroy for nested actions
- [Ben Johnson] Allow to use custom logger as
Hanami.logger(eg.Hanami.configure { logger Timber::Logger.new($stdout) }) - [akhramov] Generate spec file for application layout when generating a new app
- [Anton Davydov] Generate
README.mdfile for new projects - [Anton Davydov] Selectively boot apps via
HANAMI_APPS=web bundle exec hanami server - [Marion Duprey & Gabriel Gizotti] Log payload (params) for non-GET HTTP requests
- [Marion Duprey & Gabriel Gizotti] Filter sensitive data in logs
- [jarosluv] Ensure to remove the correct migration file when executing
hanami db destroy model - [sovetnik] Fix require path for Minitest spec helper
- [Luca Guidi] Allow
loggersetting inconfig/environment.rbto accept arbitrary arguments to makeHanami::Loggerto be compatible with Ruby'sLogger. (eg.logger 'daily', level: :info)
- [Luca Guidi] Ensure code reloading don't misconfigure mailer settings (regression from v1.0.0.beta3)
- [Luca Guidi] Ensure database disconnection to happen in the same thread of
Hanami.boot - [Luca Guidi] Ensure
mailerblock inconfig/environment.rbto be evaluated multiple times, according to the current Hanami environment - [Luca Guidi] Ensure a Hanami project to require only once the code under
lib/
- [Luca Guidi] Try to disconnect from database at the boot time. This is useful to prune stale connection during production deploys.
- [Tobias Sandelius] Don't mount
Hanami::CommonLoggermiddleware if logging is disabled for the project. - [Anton Davydov] Don't configure mailers, if it's mailing is disabled for the project.
- [Marcello Rocha] Ensure code reloading don't misconfigure mailer settings
- [Jimmy Börjesson] Make
apps/web/application.rbcode to wrap around the 80th column
- [Luca Guidi] Removed deprecated
ApplicationConfiguration#default_format. Use#default_request_formatinstead.
- [Luca Guidi] Official support for Ruby: MRI 2.4
- [yjukaku] CLI:
hanami generate modelnow also generates a migration - [Luca Guidi] Generate
config/boot.rbfor new Hanami projects. - [Luca Guidi] Introduced
Hanami.loggeras project logger - [Luca Guidi] Automatic logging of HTTP requests, migrations, and SQL queries
- [Luca Guidi] Introduced
environmentfor env specific settings inconfig/environment.rb
- [Marcello Rocha] Fix Hanami::Mailer loading
- [Kai Kuchenbecker] Serve only existing assets with
Hanami::Static - [Gabriel Gizotti] Ensure inline ENV vars to not be overwritten by
.env.*files - [Adrian Madrid] Ensure new Hanami projects to have the right
jdbcprefix for JRuby - [Luca Guidi] Fixed code reloading for objects under
lib/ - [Semyon Pupkov] Ensure generated mailer to respect the project name under
lib/ - [Semyon Pupkov] Fixed generation of mailer settings for new projects
- [Victor Franco] Fixed CLI subcommands help output
- [Ozawa Sakuro] Don't include
bundleras a dependencyGemfilefor new Hanami projects - [Luca Guidi] Make compatible with Rack 2.0 only
- [Luca Guidi] Removed
loggersettings from Hanami applications - [Luca Guidi] Removed logger for Hanami applications (eg
Web.logger) - [Luca Guidi] Changed mailer syntax in
config/environment.rb
- [The Crab] Mark unit tests/specs as pending for generated actions and views
- [Luca Guidi] Rake task
:environmentno longer depends on the removed:preloadtask - [Luca Guidi] Ensure force SSL to use the default port, or the configured one
- [Luca Guidi] Boot the project when other it's started without
hanami server(eg.pumaorrackup)
- [Luca Guidi] Ensure JSON body parser to not eval untrusted input
- [Christophe Philemotte] Introduced
hanami secretto generate and print a new sessions secret
- [Bruz Marzolf] Skip project code preloading when code reloading is enabled
- [Bruz Marzolf] Ensure to generate project in current directory when running
hanami new . - [Pascal Betz] Fix constant lookup within the project namespace
- [Sean Collins] Ensure consistent order of code loading across operating systems
- [Luca Guidi] Ensure to load the project configurations only once
- [Luca Guidi] Fix duplicated Rack middleware in single Hanami application stacks
- [Luca Guidi] Official support for Ruby MRI 2.3+
- [Luca Guidi] Removed support for "application" architecture
- [Luca Guidi] Removed
Hanami::Container.newin favor ofHanami.app - [Luca Guidi] Removed
Hanami::Container.configurein favor ofHanami.configure - [Luca Guidi] Configure model and mailer within
Hanami.configureblock inconfig/environment.rb - [Luca Guidi] Removed
mappingfrom model configuration - [Luca Guidi] Removed
Hanami::Application.preload!in favor ofHanami.boot - [Luca Guidi] Removed experimental code support for
entr(1) - [Luca Guidi & Sean Collins] Renamed assets configuration
digestintofingerprint
- [Luca Guidi] Generate new projects with Subresurce Integrity enabled in production (security).
- [Luca Guidi] Include
X-XSS-Protection: 1; mode=blockin default response headers (security). - [Luca Guidi] Include
X-Content-Type-Options: nosniffin default response headers (security). - [Trung Lê & Neil Matatall] Added support for Content Security Policy 1.1 and 2.0
- [Andrey Deryabin] Experimental code reloading with
entr(1) - [Anton Davydov] Introduced JSON logging formatter for production environment
- [Anton Davydov] Allow to set logging formatters per app and per environment
- [Anton Davydov] Allow to set logging levels per app and per environment
- [Anton Davydov] Application logging now can log to any stream: standard out, file,
IOandStringIOobjects. - [Andrey Deryabin] Allow new projects to be generated with
--templateCLI argument (eg.hanami new bookshelf --template=haml) - [Sean Collins] Add
--versionand-vforhanami versionCLI
- [Josh Bodah] Ensure consistent CLI messages
- [Andrey Morskov] Ensure consistent user experience and messages for generators
- [Luca Guidi] Fixed generators for camel case project names
- [Anton Davydov] Fixed model generator for camel case project names
- [Leonardo Saraiva] Fix
Rakefilegeneration to safely ignore missing RSpec in production - [Sean Collins] When generate an action, append routes to route file (instead of prepend)
- [Sean Collins] When an action is destroyed via CLI, ensure to remove the corresponding route
- [Bernardo Farah] Fix
require_relativepaths for nested generated actions and views unit tests - [Anton Davydov] If database and assets Rake tasks fails, ensure to exit the process with a non-successful code
- [Luca Guidi] remove
Shotgun::Staticin favor ofHanami::Assets::Staticfor development/test andHanami::Staticfor production - [Alexandr Subbotin] Load initializers in alphabetical order
- [Matt McFarland] Fix server side error when CSRF token is not sent
- [Erol Fornoles] Fix route generations for mounted apps
- [Mahesh] Fix destroy action for application architecture
- [Karim Tarek & akhramov] Reference rendering errors in Rack env's
rack.exceptionvariable. This enables compatibility with exception reporting SaaS. - [Luca Guidi] Detect assets dependencies changes in development (Sass/SCSS)
- [Luca Guidi & Lucas Amorim] Make model generator not dependendent on the current directory name, but to the project name stored in
.hanamirc
– [Luca Guidi] Drop support for Ruby 2.0 and 2.1
- [Trung Lê] Database env var is now
DATABASE_URL(without the project name prefix likeBOOKSHELF_DATABASE_URL - [Trung Lê]
lib/config/mapping.rbis no longer generated for new projects and no longer loaded. - [Anton Davydov] New generated projects will depend (in their
Gemfile) onhanamitiny version (~> 0.8') instead of patch version (0.8.0) - [Andrey Deryabin]
dotenvis now a soft dependency that will be added to theGemfile:developmentand:testgroups for new generated projects. - [Andrey Deryabin]
shotgunis now a soft dependency that will be added to theGemfile:developmentgroup for new generated projects. - [Anton Davydov] New logo in welcome page
- [Ozawa Sakuro] Remove
require 'rubygems'from generated code (projects, apps, routes, etc..) - [Eric Freese] Disable Ruby warnings in generated
Rakefilefor Minitest/RSpec tasks - [Luca Guidi] Allow views to render any HTTP status code. In actions use
halt(422)for default status page orself.status = 422for view rendering.
- [Pascal Betz] Use
Shotgun::Staticto serve static files in development mode and avoid to reload the env
- [Alfonso Uceda Pompa] Fixed routing issue when static assets server tried to hijack paths that are matching directories in public directory
- [Anton Davydov] Fixed routing issue when static assets server tried to hijack requests belonging to dynamic endpoints
- [Anatolii Didukh] Ensure to fallback to default engine for
hanami console
- [Luca Guidi] Renamed the project
- [Anton Davydov] Show the current app name in Welcome page (eg.
/adminshows instructions on how to generate an action forAdminapp) - [Anton Davydov] Fix project creation when name contains dashes (eg.
"awesome-project" => "AwesomeProject") - [Anton Davydov] Ensure to add assets related entries to
.gitignorewhen a project is generated with the--databaseflag - [deepj] Avoid blank lines in generated
Gemfile - [trexnix] Fix for
lotus destroy app: it doesn't cause a syntax error inconfig/application.rbanymore - [Serg Ikonnikov & Trung Lê] Ensure console to use the bundled engine
- [Luca Guidi] Introduced configurable assets compressors
- [Luca Guidi] Introduced "CDN mode" in order to serve static assets via Content Distribution Networks
- [Luca Guidi] Introduced "Digest mode" in production in order to generate and serve assets with checksum suffix
- [Luca Guidi] Introduced
lotus assets precompilecommand to precompile, minify and append checksum suffix to static assets - [Luca Guidi] Send
Content-CacheHTTP header when serving static assets in production mode - [Luca Guidi] Support new env var
SERVE_STATIC_ASSETS="true"in order to serve static assets for the entire project - [Luca Guidi] Generate new applications by including
Web::Assets::Helpersinview.prepareblock - [Luca Guidi] Introduced new Rake tasks
:preloadand:environment - [Luca Guidi] Introduced new Rake tasks
db:migrateandassets:precompilefor Rails/Heroku compatibility - [Tadeu Valentt & Lucas Allan Amorin] Added
lotus destroycommand for apps, models, actions, migrations and mailers - [Lucas Allan Amorim] Custom initializers (
apps/web/config/initializers) they are ran when the project is loaded and about to start - [Trung Lê] Generate mailer templates directory for new projects (eg.
lib/bookshelf/mailers/templates) - [Tadeu Valentt] Alias
--databaseas-dforlotus new - [Tadeu Valentt] Alias
--archas-aforlotus new - [Sean Collins] Let
lotus generate actionto guess HTTP method (--methodarg) according to RESTful conventions - [Gonzalo Rodríguez-Baltanás Díaz] Generate new applications with default favicon
- [Neil Matatall] Use "secure compare" for CSRF tokens in order to prevent timing attacks
- [Bernardo Farah] Fix support for chunked response body (via
Rack::Chunked::Body) - [Lucas Allan Amorim] Add
bundleras a runtime dependency - [Lucas Allan Amorim] Ensure to load properly Bundler dependencies when starting the application
- [Luca Guidi] Ensure sessions to be always available for other middleware in Rack stack of single applications
- [Ken Gullaksen] Ensure to specify
LOTUS_PORTenv var from.env - [Andrey Deryabin] Fix
lotus new .and prevent to generate the project in a subdirectory of current one - [Jason Charnes] Validate entity name for model generator
- [Caius Durling] Fixed generator for nested actions (eg.
lotus generate action web domains/certs#index) - [Tadeu Valentt] Prevent to generate migrations with the same name
- [Luca Guidi] Ensure RSpec examples to be generated with
RSpec.describeinstead of onlydescribe - [Andrey Deryabin] Avoid
lotuscommand to generate unnecessary.lotusrcfiles - [Jason Charnes] Convert camel case application name into snake case when generating actions (eg.
BeautifulBlossomstobeautiful_blossoms) - [Alfonso Uceda Pompa] Convert dasherized names into underscored names when generating projects (eg.
awesome-projecttoawesome_project)
- [Sean Collins] Welcome page shows current year in copyright notes
- [Luca Guidi] Add
/public/assets*to.gitignoreof new projects - [Luca Guidi] Removed support for
default_formatin favor ofdefault_request_format - [Luca Guidi] Removed support for
apps/web/publicin favor ofapps/web/assetsas assets sources for applications - [Luca Guidi] Removed support for
serve_assetsfor single applications in order to global static assets server enabled viaSERVE_STATIC_ASSETSenv var - [Luca Guidi]
assetsconfiguration inapps/web/application.rbnow accepts a block to configure sources and other settings
- [Ines Coelho & Rosa Faria] Introduced mailers support
- [Theo Felippe] Added configuration entries:
#default_request_formatanddefault_response_format - [Rodrigo Panachi] Introduced
loggerconfiguration for applications, to be used like this:Web::Logger.debug - [Ben Lovell] Simpler and less verbose RSpec tests
- [Pascal Betz] Introduced
--methodCLI argument for action generator as a way to specify the HTTP verb
- [Luca Guidi] Handle conflicts between directories with the same name while serving static assets
- [Derk-Jan Karrenbeld] Include default value
font-src: selffor CSP HTTP header - [Cam Huynh] Make CLI arguments immutable for
Lotus::Environment - [Andrii Ponomarov] Disable welcome page in test environment
- [Alfonso Uceda Pompa] Print error message and exit when no name is provided to model generator
- [Theo Felippe] Deprecated
#default_formatin favor of:#default_request_format
- [Trung Lê] Alias
--databaseas--dbforlotus new
- [Alfonso Uceda Pompa] Ensure to load correctly apps in
lotus console - [Alfonso Uceda Pompa] Ensure to not duplicate prefix for Container mounted apps (eg
/admin/admin/dashboard) - [Alfonso Uceda Pompa] Ensure generator for "application" architecture to generate session secret
- [Alfonso Uceda Pompa & Trung Lê & Hiếu Nguyễn] Exit unsuccessfully when
lotus generate modeldoesn't receive a mandatory name for model - [Miguel Molina] Exit unsuccessfully when
lotus new --databasereceives an unknown value - [Luca Guidi] Ensure to prepend sessions middleware, so other Rack components can have access to HTTP session
- [Luca Guidi] Database migrations and new CLI commands for database operations
- [Luca Guidi] Cross Site Request Forgery (CSRF) protection
- [Hiếu Nguyễn & Luca Guidi] Application Architecture
- [Alfonso Uceda Pompa] Force SSL for applications
- [Luca Guidi] Introduced
--urlCLI argument for action generator - [Luca Guidi] Added
rendered"let" variable for new generated tests for views
- [Alfonso Uceda Pompa] Fix generated routes for Container applications mounted on a path different from
/. - [Luca Guidi] Reading
.lotusrcpollutesENVwith unwanted variables. - [Alfonso Uceda Pompa] Added sqlite extension to SQLite/SQLite3 database URL.
- [Luca Guidi]
.env,.env.developmentand.env.testare generated and expected to be placed at the root of the project. - [Luca Guidi] Remove database mapping from generated apps.
- [Trung Lê & Luca Guidi] Remove default generated from new apps.
- [Luca Guidi] New projects should depend on
lotus-model ~> 0.4
- [Alfonso Uceda Pompa] Automatic secure cookies if the current connection is using HTTPS.
- [Alfonso Uceda Pompa] Routing helpers for actions (via
#routes). - [My Mai] Introduced
Lotus.root. It returns the top level directory of the project.
- [Ngọc Nguyễn] Model generator should use new RSpec syntax.
- [Ngọc Nguyễn] Model generator must respect file name conventions for Ruby.
- [Ngọc Nguyễn] Action generator must respect file name conventions for Ruby.
- [Alfonso Uceda Pompa] Action generator must raise error if name isn't provided.
- [Luca Guidi] Container generator for RSpec let the application to be preloaded (discard
config.before(:suite))
- [Hiếu Nguyễn] Introduced application generator (eg.
bundle exec lotus generate app admincreatesapps/admin). - [Ngọc Nguyễn] Introduced model generator (eg.
bundle exec lotus generate model usercreates entity, repository and test files). - [Ngọc Nguyễn] Introduced
Lotus.env,Lotus.env?for current environment introspection (eg.Lotus.env?(:test)orLotus.env?(:staging, :production)) - [Miguel Molina] Skip view creation when an action is generated via
--skip-viewCLI arg.
- [Luca Guidi] Ensure routes to be loaded for unit tests
- [Luca Guidi] Introduced action generator. Eg.
bundle exec lotus generate action web dashboard#index - [Alfonso Uceda Pompa] Allow to specify default cookies options in application configuration. Eg.
cookies true, { domain: 'lotusrb.org' } - [Tom Kadwill] Include
Lotus::Helpersin views. - [Linus Pettersson] Allow to specify
--databaseCLI option when generate a new project. Eg.lotus new bookshelf --database=postgresql - [Linus Pettersson] Initialize a Git repository when generating a new project
- [Alfonso Uceda Pompa] Produce
.lotusrcwhen generating a new project - [Alfonso Uceda Pompa] Security HTTP headers.
X-Frame-OptionsandContent-Security-Policyare now enabled by default. - [Linus Pettersson] Database console. Run with
bundle exec lotus db console - [Luca Guidi] Dynamic finders for relative and absolute routes. It implements method missing:
Web::Routes.home_pathwill resolve toWeb::Routes.path(:home).
– [Alfonso Uceda Pompa] Cookies will send HttpOnly by default. This is for security reasons.
- [Jan Lelis] Enable
templatesconfiguration for new generated apps - [Mark Connell] Change SQLite file extension from
.dbto.sqlite3
- [Huy Đỗ] Introduced
Lotus::Logger - [Jimmy Zhang]
lotus newaccepts a--pathargument - [Jimmy Zhang] Project generator for the current directory (
lotus new .). This is useful to provide a web deliverable for existing Ruby gems. - [Trung Lê] Add example mapping file for project generator:
lib/config/mapping.rb - [Hiếu Nguyễn] RSpec support for project generator:
--test=rspecor--test=minitest(default)
- [Luca Guidi]
lotus versionto previxv(egv0.2.1) - [Rob Yurkowski] Ensure project name doesn't contain special or forbidden characters
- [Luca Guidi] Ensure all the applications are loaded in console
- [Trung Lê] Container architecture: preload only
lib/<projectname>/**/*.rb - [Hiếu Nguyễn] Fixed
lotus newto print usage when project name isn't provided
- [Luca Guidi] Introduced
lotus newas a command to generate projects. It supports "container" architecture for now. - [Luca Guidi] Show a welcome page when one mounted Lotus application doesn't have routes
- [Luca Guidi] Introduced
Lotus::Application.preload!to preload all the Lotus applications in a given Ruby process. (BulkLotus::Application.load!) - [Trung Lê] Allow browsers to fake non
GET/POSTrequests viaRack::MethodOverride - [Josue Abreu] Allow to define body parses for non
GETHTTP requests (body_parsersconfiguration) - [Alfonso Uceda Pompa] Allow to toggle static assets serving (
serve_assetsconfiguration) - [Alfonso Uceda Pompa] Allow to serve assets from multiple sources (
assetsconfiguration) - [Luca Guidi] Allow to configure
ENVvars with per environment.envfiles - [Alfonso Uceda Pompa] Introduced
lotus routescommand - [Luca Guidi] Allow to configure low level settings for MVC frameworks (
model,viewandcontrollerconfiguration) - [Luca Guidi] Introduced
Lotus::Container - [Trung Lê] Include
Lotus::Presenteras part of the duplicated modules - [Trung Lê] Include
Lotus::EntityandLotus::Repositoryas part of the duplicated modules - [Luca Guidi] Introduced code reloading for
lotus server - [Trung Lê] Allow to configure database adapter (
adapterconfiguration) - [Luca Guidi & Trung Lê] Allow to configure database mapping (
mappingconfiguration) - [Piotr Kurek] Introduced custom templates for non successful responses
- [Luca Guidi] Allow to configure exceptions handling (
handle_exceptionsconfiguration) - [Michal Muskala] Allow to configure sessions (
sessionsconfiguration) - [Josue Abreu] Allow to configure cookies (
cookiesconfiguration) - [Piotr Kurek] Allow to yield multiple configurations per application, according to the current environment
- [David Celis] Allow to configure Rack middleware stack (
middlewareconfiguration) - [David Celis] Introduced
lotus consolecommand. It runs the REPL configured inGemfile(eg. pry or ripl). Defaults to IRb. - [Luca Guidi] Introduced
Lotus::Environmentwhich holds the informations about the current environment, and CLI arguments - [Luca Guidi] Introduced
Lotus::Application.load!to load and configure an application without requiring user defined code (controllers, views, etc.) - [Leonard Garvey] Introduced
lotus servercommand. It runs the application with the Rack server declared inGemfile(eg. puma, thin, unicorn). It defaults toWEBRick. - [Luca Guidi] Official support for MRI 2.1 and 2.2
- [Alfonso Uceda Pompa] Changed semantic of
assetsconfiguration. Now it's only used to set the sources for the assets. Static serving assets has now a new configuration:serve_assets.
- [Luca Guidi] Ensure
HEADrequests return empty body
- [Luca Guidi] Allow to run multiple Lotus applications in the same Ruby process (framework duplication)
- [Luca Guidi] Introduced
Lotus::Routesas factory to generate application URLs - [Luca Guidi] Allow to configure scheme, host and port (
scheme,hostandportconfiguration) - [Luca Guidi] Allow to configure a layout to use for all the views of an application (
layoutconfiguration) - [Luca Guidi] Allow to configure routes (
routesconfiguration) - [Luca Guidi] Allow to configure several load paths for Ruby source files (
load_pathsconfiguration) - [Luca Guidi] Allow to serve static files (
assetsconfiguration) - [Luca Guidi] Render default pages for non successful responses (eg
404or500) - [Luca Guidi] Allow to configure the root of an application (
rootconfiguration) - [Luca Guidi] Introduced
Lotus::Configuration - [Luca Guidi] Introduced
Lotus::Application - [Luca Guidi] Official support for MRI 2.0