v0.25.0 - v0.26.0(25 commits)
Jeremy Woertink (@jwoertink)
Release 0.26.0 (#1408) * Release 0.26.0 * Pointing to different Avram branch to get some green CI * Using the real versions
luckyframework/lucky
Committed on
Jeremy Woertink (@jwoertink)
Updating for Crystal 0.36.1 support (#1403) * Updating for Crystal 0.36.1 support * Updated Dexter
luckyframework/lucky
Committed on
Matthew McGarvey (@matthewmcgarvey)
Fix Avram::PermittedAttribute usages (#1405)
luckyframework/lucky
Committed on
Radhika (@96RadhikaJadhav)
Removed extra space from html tags (#1400)
luckyframework/lucky
Committed on
Brian J. Cardiff (@bcardiff)
Update for Crystal 0.36.0 (#1398)
luckyframework/lucky
Committed on
Jeremy Woertink (@jwoertink)
use avram master (#1397) * Update docs related to upcoming avram release * pointing to avram master
luckyframework/lucky
Committed on
Vincent Jousse (@vjousse)
Fix typos in UPGRADE_NOTES (#1395) - Fix bad class name for Avram::Operation example - Fix bad `seed/db/` path
luckyframework/lucky
Committed on
Matthew McGarvey (@matthewmcgarvey)
Remove broken Lucky::CustomTags#tag overloads (#1394)
luckyframework/lucky
Committed on
Matthew McGarvey (@matthewmcgarvey)
Fix dependency issues for route gen tasks (#1393)
luckyframework/lucky
Committed on
Matthew McGarvey (@matthewmcgarvey)
Add Lucky::Params#get_all (#1389)
luckyframework/lucky
Committed on
Matthew McGarvey (@matthewmcgarvey)
Support multiple form data values for a key (#1384)
luckyframework/lucky
Committed on
robacarp (@robacarp)
Add task for generating new tasks (#1322)
luckyframework/lucky
Committed on
Matthew McGarvey (@matthewmcgarvey)
Allow reading from UploadedFile#tempfile (#1381)
luckyframework/lucky
Committed on
Stephen Dolan (@stephendolan)
Update resource generator to avoid shadowing outer variable (#1379) When running `gen.browser.resource`, the `Update` action created will shadow the outer variable in the block yielded from the operation. For example, take `gen.browser.resource Topic label:String`. **Before** ```crystal class Topics::Update < BrowserAction route do topic = TopicQuery.find(topic_id) SaveTopic.update(topic, params) do |operation, topic| if operation.saved? flash.success = "The record has been updated" redirect Show.with(topic.id) else flash.failure = "It looks like the form is not valid" html EditPage, operation: operation, topic: topic end end end end ``` **After** ```crystal class Topics::Update < BrowserAction route do topic = TopicQuery.find(topic_id) SaveTopic.update(topic, params) do |operation, updated_topic| if operation.saved? flash.success = "The record has been updated" redirect Show.with(updated_topic.id) else flash.failure = "It looks like the form is not valid" html EditPage, operation: operation, topic: updated_topic end end end end ```
luckyframework/lucky
Committed on
Matthew McGarvey (@matthewmcgarvey)
Better error when using route helpers incorrectly (#1372)
luckyframework/lucky
Committed on
Matthew McGarvey (@matthewmcgarvey)
Infer route in action generators instead of using route macro (#1378)
luckyframework/lucky
Committed on
Matthew McGarvey (@matthewmcgarvey)
Support html tags without content or block (#1377)
luckyframework/lucky
Committed on
Matthew McGarvey (@matthewmcgarvey)
Allow model to be generated with JSON::Any column type (#1375)
luckyframework/lucky
Committed on
Matthew McGarvey (@matthewmcgarvey)
Flash messages discarded unless kept (#1374)
luckyframework/lucky
Committed on
Matthew McGarvey (@matthewmcgarvey)
Inline render_html_page to change compilation error (#1373)
luckyframework/lucky
Committed on
Matthew McGarvey (@matthewmcgarvey)
Lucky::FlashStore refactor (#1369)
luckyframework/lucky
Committed on
Brian J. Cardiff (@bcardiff)
Fix HTTP::Request deprecations (#1367)
luckyframework/lucky
Committed on
Jeremy Woertink (@jwoertink)
Updated UPGRADE_NOTES for 0.25 update (#1365) * Updated UPGRADE_NOTES for 0.25 update * A few shard updates missing for upgrade notes * missed an optional upgrade step * Update UPGRADE_NOTES.md Co-authored-by: Hannes Käufler <hanneskaeufler@users.noreply.github.com> * A few extra missing upgrade notes Co-authored-by: Hannes Käufler <hanneskaeufler@users.noreply.github.com>
luckyframework/lucky
Committed on
Jeremy Woertink (@jwoertink)
Update changelog for 0.25 release (#1363) * Update changelog for 0.25 release * Added a few missing from LuckyCLI * Apply suggestions from code review Co-authored-by: Matthew McGarvey <matthewmcgarvey14@gmail.com> * missed a change in Lucky CLI Co-authored-by: Matthew McGarvey <matthewmcgarvey14@gmail.com>
luckyframework/lucky
Committed on
Jeremy Woertink (@jwoertink)
Release 0.25.0 (#1364) * Release 0.25.0 * trying to get GH actions to run * Override LuckyCLI for testing * CI doesn't seem to be picking up the override. Possibly cache? * just use the branch that's being released for Avram since that points to LuckyCLI master... shard override isn't working for some reason. * Update versions to actual releases
luckyframework/lucky
Committed on