alchemy-devise 7.4.0 → 7.4.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: 93e0135131b62f7e5b0fecc4ba83b6481ec0f6b3c8776388d4a426fea921d7c8
4
- data.tar.gz: 03a97f12630ed5aa441570be97921d119205bcf09616781dc2d3e5c1ce686d7c
3
+ metadata.gz: f5d447cfdfb707f5624e4b1803029dbb76e1516964be8df050e997a52a173202
4
+ data.tar.gz: 251266f1e5032339894c027e27d36943303ac7e2663e6cd8a706a556d206e56d
5
5
  SHA512:
6
- metadata.gz: 94ee8333097960b712d5d1b903840aa68d2efa3e7a75b5f40343f4c200bbaa8d6db090334ecfca0f7fff5f81ad530f83e54fee9aefd3c2a75c9bc678ab20192c
7
- data.tar.gz: ac94adb705ec48fdd2cdf94a2f92d39b2836faaf173b953f9ecf883d326acdf5a940f7c3a783046ca110441a7fc9db40f7d71d4ee0d87aacd530b8ae9d90c47b
6
+ metadata.gz: e55c976529fabecea15bb9d103d86e2fb3fe057e6c719e464764ea1f716403edd2c2d9e11ce9685b0bf6cb46b374c7ab30d514e1273e9700145d8116d8ce13aa
7
+ data.tar.gz: 2772bbfcf3d755654832055e168fe45fb30c893718322622b463d2b7fc98add973dd41ccad91d5fa03b7f4a6002b957b8ec842488430bc2233e33ce093cce8a8
data/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ## 7.4.1 (2025-02-12)
4
+
5
+ - Fix module icon for Alchemy 7.4 [#224](https://github.com/AlchemyCMS/alchemy-devise/pull/224) ([tvdeyen](https://github.com/tvdeyen))
6
+ - Update sqlite3 requirement from ~> 1.4 to ~> 2.5 [#223](https://github.com/AlchemyCMS/alchemy-devise/pull/223) ([dependabot](https://github.com/apps/dependabot))
7
+ - Update rspec-rails requirement from ~> 6.0 to ~> 7.1 [#222](https://github.com/AlchemyCMS/alchemy-devise/pull/222) ([dependabot](https://github.com/apps/dependabot))
8
+ - Enable dependabot version updates [#221](https://github.com/AlchemyCMS/alchemy-devise/pull/221) ([tvdeyen](https://github.com/tvdeyen))
9
+
3
10
  ## 7.4.0 (2025-01-21)
4
11
 
5
12
  - Extend test matrix [#219](https://github.com/AlchemyCMS/alchemy-devise/pull/219) ([mamhoff](https://github.com/mamhoff))
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  ## Devise based authentication for AlchemyCMS
2
2
 
3
- [![Build Status](https://github.com/AlchemyCMS/alchemy-devise/workflows/CI/badge.svg?branch=main)](https://github.com/AlchemyCMS/alchemy-devise/actions)
3
+ [![CI](https://github.com/AlchemyCMS/alchemy-devise/actions/workflows/ci.yml/badge.svg)](https://github.com/AlchemyCMS/alchemy-devise/actions/workflows/ci.yml)
4
4
  [![Brakeman Scan](https://github.com/AlchemyCMS/alchemy-devise/actions/workflows/brakeman-analysis.yml/badge.svg)](https://github.com/AlchemyCMS/alchemy-devise/actions/workflows/brakeman-analysis.yml)
5
5
 
6
6
  [![Gem Version](https://badge.fury.io/rb/alchemy-devise.svg)](http://badge.fury.io/rb/alchemy-devise) [![Test Coverage](https://codeclimate.com/github/AlchemyCMS/alchemy-devise/badges/coverage.svg)](https://codeclimate.com/github/AlchemyCMS/alchemy-devise/coverage) [![Code Climate](https://codeclimate.com/github/AlchemyCMS/alchemy-devise/badges/gpa.svg)](https://codeclimate.com/github/AlchemyCMS/alchemy-devise)
@@ -3,6 +3,16 @@
3
3
  Rails.application.config.to_prepare do
4
4
  require "alchemy/devise/ability"
5
5
 
6
+ alchemy_7_4 = Gem::Version.new("7.4.0.a")
7
+
8
+ icon = if Alchemy.gem_version.between? Gem::Version.new("7.1.0-b1"), alchemy_7_4
9
+ "group-line"
10
+ elsif Alchemy.gem_version > alchemy_7_4
11
+ "group"
12
+ else
13
+ "users"
14
+ end
15
+
6
16
  Alchemy.register_ability(Alchemy::Devise::Ability)
7
17
 
8
18
  Alchemy::Modules.register_module({
@@ -13,7 +23,7 @@ Rails.application.config.to_prepare do
13
23
  name: "modules.users",
14
24
  controller: "/alchemy/admin/users",
15
25
  action: "index",
16
- icon: (Alchemy.gem_version > Gem::Version.new("7.1.0-b1")) ? "group-line" : "users"
26
+ icon: icon
17
27
  }
18
28
  })
19
29
 
@@ -1,5 +1,5 @@
1
1
  module Alchemy
2
2
  module Devise
3
- VERSION = "7.4.0"
3
+ VERSION = "7.4.1"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: alchemy-devise
3
3
  version: !ruby/object:Gem::Version
4
- version: 7.4.0
4
+ version: 7.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Thomas von Deyen
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-01-21 00:00:00.000000000 Z
10
+ date: 2025-02-12 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: alchemy_cms
@@ -99,14 +99,14 @@ dependencies:
99
99
  requirements:
100
100
  - - "~>"
101
101
  - !ruby/object:Gem::Version
102
- version: '6.0'
102
+ version: '7.1'
103
103
  type: :development
104
104
  prerelease: false
105
105
  version_requirements: !ruby/object:Gem::Requirement
106
106
  requirements:
107
107
  - - "~>"
108
108
  - !ruby/object:Gem::Version
109
- version: '6.0'
109
+ version: '7.1'
110
110
  - !ruby/object:Gem::Dependency
111
111
  name: simplecov
112
112
  requirement: !ruby/object:Gem::Requirement
@@ -199,7 +199,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
199
199
  - !ruby/object:Gem::Version
200
200
  version: '0'
201
201
  requirements: []
202
- rubygems_version: 3.6.2
202
+ rubygems_version: 3.6.3
203
203
  specification_version: 4
204
204
  summary: Devise based user authentication for AlchemyCMS.
205
205
  test_files: []