File: CHANGELOG.md

package info (click to toggle)
ruby-actionpack-action-caching 1.2.2-4
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 288 kB
  • sloc: ruby: 864; makefile: 6
file content (81 lines) | stat: -rw-r--r-- 1,443 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
## 1.2.2 (May 10, 2021)

*   Add support for Rails 6.1

    *Jonathan Fleckenstein*, *Prem Sichanugrist*


## 1.2.1 (November 12, 2019)

*   Fix HTML escaping when `:layout` is `false`.

    *Anton Katunin*

*   Add support to Rails 6.

    *Jacob Bednarz*


## 1.2.0 (January 23, 2017)

*   Support proc options with zero arguments

    Fixes #40.

    *Andrew White*

*   The options `:layout` and `:cache_path` now behave the same when
    passed a `Symbol`, `Proc` or object that responds to call.

    *Andrew White*

*   Respect `Accept` header when caching actions

    Fixes #18.

    *Andrew White*

*   Support Rails 4.0, 4.1, 4.2, 5.0 and edge

    *Eileen Uchitelle*, *Andrew White*

*   Call `to_s` on the extension as it may be a symbol

    Fixes #10.

    *Andrew White*


## 1.1.1 (January 2, 2014)

*   Fix load order problem with other gems

    *Andrew White*


## 1.1.0 (November 1, 2013)

*   Allow to use non-proc object in `cache_path` option. You can pass an object that
    responds to a `call` method.

    Example:

        class CachePath
          def call(controller)
            controller.id
          end
        end

        class TestController < ApplicationController
          caches_action :index, :cache_path => CachePath.new
          def index; end
        end

    *Piotr Niełacny*


## 1.0.0 (February 28, 2013)

*   Extract Action Pack - Action Caching from Rails core.

    *Francesco Rodriguez*