alchemy-devise 7.3.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: 50fb7555da0609c974b6455982abcc8cd18e023ab14bca6c8d925c698edca6a5
4
- data.tar.gz: b5e00e701e89fbd07b9f63886562e0ada6e0daeba1b7c53787b91d0fb65bc844
3
+ metadata.gz: f5d447cfdfb707f5624e4b1803029dbb76e1516964be8df050e997a52a173202
4
+ data.tar.gz: 251266f1e5032339894c027e27d36943303ac7e2663e6cd8a706a556d206e56d
5
5
  SHA512:
6
- metadata.gz: cf3b05ce4e55d5bcedd941acbb7736a1ffe3b377d52c4084ee0bf61b387c9bc343cf07d3f21e2fa4362693fdddd3a8d7c643b71fe2d83117acfe95c43cfec90c
7
- data.tar.gz: bea6ab34bc7216a89a835fa916dbe08b03ebb5e66db087e1cd9d38908722971cb909e370581bf0ddab822dbc5434370c1637973822d29c4391890899c3024d15
6
+ metadata.gz: e55c976529fabecea15bb9d103d86e2fb3fe057e6c719e464764ea1f716403edd2c2d9e11ce9685b0bf6cb46b374c7ab30d514e1273e9700145d8116d8ce13aa
7
+ data.tar.gz: 2772bbfcf3d755654832055e168fe45fb30c893718322622b463d2b7fc98add973dd41ccad91d5fa03b7f4a6002b957b8ec842488430bc2233e33ce093cce8a8
data/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
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
+
10
+ ## 7.4.0 (2025-01-21)
11
+
12
+ - Extend test matrix [#219](https://github.com/AlchemyCMS/alchemy-devise/pull/219) ([mamhoff](https://github.com/mamhoff))
13
+ - Allow Alchemy 8.x [#218](https://github.com/AlchemyCMS/alchemy-devise/pull/218) ([mamhoff](https://github.com/mamhoff))
14
+ - test: Fix admin users feature spec [#217](https://github.com/AlchemyCMS/alchemy-devise/pull/217) ([tvdeyen](https://github.com/tvdeyen))
15
+
3
16
  ## 7.3.0 (2024-09-06)
4
17
 
5
18
  - Use new resource_table component for user list [#213](https://github.com/AlchemyCMS/alchemy-devise/pull/213) ([tvdeyen](https://github.com/tvdeyen))
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.3.0"
3
+ VERSION = "7.4.1"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: alchemy-devise
3
3
  version: !ruby/object:Gem::Version
4
- version: 7.3.0
4
+ version: 7.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Thomas von Deyen
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2024-09-06 00:00:00.000000000 Z
10
+ date: 2025-02-12 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: alchemy_cms
@@ -100,14 +99,14 @@ dependencies:
100
99
  requirements:
101
100
  - - "~>"
102
101
  - !ruby/object:Gem::Version
103
- version: '6.0'
102
+ version: '7.1'
104
103
  type: :development
105
104
  prerelease: false
106
105
  version_requirements: !ruby/object:Gem::Requirement
107
106
  requirements:
108
107
  - - "~>"
109
108
  - !ruby/object:Gem::Version
110
- version: '6.0'
109
+ version: '7.1'
111
110
  - !ruby/object:Gem::Dependency
112
111
  name: simplecov
113
112
  requirement: !ruby/object:Gem::Requirement
@@ -200,8 +199,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
200
199
  - !ruby/object:Gem::Version
201
200
  version: '0'
202
201
  requirements: []
203
- rubygems_version: 3.5.16
204
- signing_key:
202
+ rubygems_version: 3.6.3
205
203
  specification_version: 4
206
204
  summary: Devise based user authentication for AlchemyCMS.
207
205
  test_files: []