Link [ pkgsrc | NetBSD | pkgsrc git mirror | PR fulltext-search | netbsd commit viewer ]


   
        usage: [branch:branch] [user:user] [path[@revision]] keyword [... [-excludekeyword [...]]] (e.g. branch:MAIN pkgtools/pkg)




switch to index mode

recent branches: MAIN (1m)  pkgsrc-2024Q1 (8d)  pkgsrc-2023Q4 (55d)  pkgsrc-2023Q2 (88d)  pkgsrc-2023Q3 (167d) 

2024-05-26 11:13:03 UTC Now

2017-04-22 16:16:29 UTC MAIN commitmail json YAML

Update ruby-rack to 1.6.5.

Sun Dec 4 18:48:03 2015  Jeremy Daer <jeremydaer@gmail.com>

* First-party "SameSite" cookies. Browsers omit SameSite cookies
from third-party requests, closing the door on many CSRF attacks.

Pass `same_site: true` (or `:strict`) to enable:
    response.set_cookie 'foo', value: 'bar', same_site: true
or `same_site: :lax` to use Lax enforcement:
    response.set_cookie 'foo', value: 'bar', same_site: :lax

Based on version 7 of the Same-site Cookies internet draft:
https://tools.ietf.org/html/draft-west-first-party-cookies-07

Thanks to Ben Toews (@mastahyeti) and Bob Long (@bobjflong) for
updating to drafts 5 and 7.

Wed Jun 24 12:13:37 2015  Aaron Patterson <tenderlove@ruby-lang.org>

* Fix Ruby 1.8 backwards compatibility

(taca)