symphonia 6.1.0 → 6.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/app/models/symphonia/user_session.rb +5 -4
- data/lib/symphonia/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c2bc00b67bc87bcc37b75d39db1cc7ab28e6326584e59d16cdc1bf8734f3c2ee
|
|
4
|
+
data.tar.gz: a39228ace17ac294ab5c6ac03df8984564ddabf9fe61ce5e3bc810c3624ec140
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 87a3cd9554903842c591e252d5878fea5c75c4378d513c7f7c7601d7303fad8c5910f295120a5e0d17b6a7c47120d61e880871d6b77e1d770ffee660f533bebf
|
|
7
|
+
data.tar.gz: 8a07d24f59c5879839f27a65978d8b1afe0abfa5dc94574e800589f2292bff57d29e1ec84d101e11f29e6e810a8f192af0cf1d95444749710666d52d1c76e65d
|
data/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
|
5
5
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
|
+
## [6.1.1] - 2025-12-23
|
|
9
|
+
### Fixed
|
|
10
|
+
- cookies key of Authlogic
|
|
11
|
+
|
|
8
12
|
## [6.1.0] - 2025-07-01
|
|
9
13
|
### Changed
|
|
10
14
|
- use Rails 7.2 as default
|
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
module Symphonia
|
|
2
2
|
class UserSession < Authlogic::Session::Base
|
|
3
|
+
cookie_key "symphonia_user_credentials"
|
|
3
4
|
params_key :key
|
|
4
|
-
single_access_allowed_request_types %w
|
|
5
|
+
single_access_allowed_request_types %w[application/rss+xml application/xml application/json]
|
|
5
6
|
|
|
6
7
|
generalize_credentials_error_messages true
|
|
7
8
|
|
|
8
|
-
def self.validators_on(*
|
|
9
|
+
def self.validators_on(*_args)
|
|
9
10
|
[]
|
|
10
11
|
end
|
|
11
12
|
|
|
@@ -14,6 +15,6 @@ module Symphonia
|
|
|
14
15
|
def params_credentials
|
|
15
16
|
super || ActionController::HttpAuthentication::Token.authenticate(controller) { |t, _o| t } || nil
|
|
16
17
|
end
|
|
17
|
-
end
|
|
18
18
|
|
|
19
|
-
end
|
|
19
|
+
end
|
|
20
|
+
end
|
data/lib/symphonia/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: symphonia
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 6.1.
|
|
4
|
+
version: 6.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Lukas Pokorny
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2025-
|
|
11
|
+
date: 2025-12-23 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: api-pagination
|