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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f40862fbc205758764087baab8cd515b3e9d8151bd94dfd6f5b16d6749d6c08c
4
- data.tar.gz: '0919daa814b36e912b01f0f1850356476c2d608e6f0d2ccec9c40748f7077fbe'
3
+ metadata.gz: c2bc00b67bc87bcc37b75d39db1cc7ab28e6326584e59d16cdc1bf8734f3c2ee
4
+ data.tar.gz: a39228ace17ac294ab5c6ac03df8984564ddabf9fe61ce5e3bc810c3624ec140
5
5
  SHA512:
6
- metadata.gz: aff32cf78e520189ca9bf05c441316ca0f202e0ca5c37a115f3dda2c3b50a44583f76eeb43be7fb47fc92b429602352fa8f77df0bc5ba3315a68391d828d30a2
7
- data.tar.gz: fe5d80693602fa81ac9f3b2afb0329849c12baf336ab7ac8fe3fc10a3dd2441ef3f07a248bb89225a7d19f5015dd03dd1aade020787d0a6938b6ea68d2278118
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(application/rss+xml application/xml application/json)
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(*args)
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
@@ -1,5 +1,5 @@
1
1
  module Symphonia
2
2
 
3
- VERSION = "6.1.0"
3
+ VERSION = "6.1.1"
4
4
 
5
5
  end
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.0
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-07-01 00:00:00.000000000 Z
11
+ date: 2025-12-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: api-pagination