Dancer2 icon indicating copy to clipboard operation
Dancer2 copied to clipboard

Perl Dancer Next Generation (rewrite of Perl Dancer)

Results 133 Dancer2 issues
Sort by recently updated
recently updated
newest added

## Why? `plugin_setting` is a keyword from the older implementation of plugins. Making it works required jumping through hoops we still cannot decipher even though we wrote them. There is...

Deprecated

## Why? Originally, `request->path()` (which is the `path()` method on `Dancer2::Core::Request`) had a broken implementation. We created the method `dispatch_path()` (which you could call as `request->dispatch_path()`). Since then, we fixed...

Deprecated

## Why? This keyword had a generic name while only being relevant to the response. ## Benefits to Dancer2 codebase More consistency and clarity in the code-base. ## Benefit to...

Deprecated

## Why? This keyword had a generic name while only being relevant to the response. ## Benefits to Dancer2 codebase More consistency and clarity in the code-base. ## Benefit to...

Deprecated

## Why? This keyword had a generic name while only being relevant to the response. ## Benefits to Dancer2 codebase More consistency and clarity in the code-base. ## Benefit to...

Deprecated

## Why? This is an older keyword reflecting the history in which there was a context object. This object has been removed since in favor of `Dancer2::Core::App` holding the context....

Deprecated

## Why? The storage that contains parameters has two special keys: `splat` and `capture`. If you create a named placeholder using one of those names, it confuses the internal system,...

Deprecated

## Why? There are better alternatives available on CPAN. ## Benefits to Dancer2 codebase We can focus our efforts on improving the core of the code, rather than write code...

Deprecated

When working on #1641, I planned on adding a test case for `get '/(any|some)/thing/:id => sub {...};` to t/classes/Dancer2-Core-Route/match.t, which fails :( ``` + [ + [ 'get', '/(any|some)/thing/:id', sub...

Bug

Docs are hard. We currently have the Introduction, the Tutorial, the Manual, and the Cookbook. It's hard to tell what is documented where. The idea was that the Introduction explains...

Documentation