devise_scim 0.1.15 → 0.1.16
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 +24 -0
- data/README.md +4 -0
- data/app/controllers/devise_scim/users_controller.rb +2 -2
- data/lib/devise_scim/filter/arel_visitor.rb +2 -2
- data/lib/devise_scim/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0daf9bbbcf53781199f6b6da65b933572550bac83fac908a2ea3323aec8c4ffa
|
|
4
|
+
data.tar.gz: 280c378bc22a1656809231c559b7084d005e83eace7725648ef1e2a3d5f729f6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fca1f8259c135d750e900349228a3fcbd5b2591ba47eae74c07fe9b243b13f97e040b6133d134182e8f38ce32246d761720e4aa150ab7eaead1afbba2e0dcf38
|
|
7
|
+
data.tar.gz: 347e03ba2f3c208e65ad164d9afa7ce83a7ef9a1afb094f3063b385a5b650b41567b93e9ea9022155e334defd50ee50f3a4741061bbc42a792c17ddda471f047
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
## [Unreleased]
|
|
2
2
|
|
|
3
|
+
## [0.1.16] - 2026-05-31
|
|
4
|
+
|
|
5
|
+
- Bump ruby/setup-ruby from 1.308.0 to 1.310.0
|
|
6
|
+
- Bump doorkeeper from 5.9.0 to 5.9.1
|
|
7
|
+
- Bump codecov/codecov-action from 6.0.0 to 6.0.1
|
|
8
|
+
- Bump rubocop from 1.86.1 to 1.86.2
|
|
9
|
+
- Bump ruby/setup-ruby from 1.306.0 to 1.308.0
|
|
10
|
+
- fix: improve error handling for unknown AST nodes and comparison operators
|
|
11
|
+
- chore: update CHANGELOG.md with recent dependency updates and CI changes
|
|
12
|
+
- chore: update dependencies in Gemfile.lock
|
|
13
|
+
- Bump devise from 5.0.3 to 5.0.4 in the bundler group across 1 directory
|
|
14
|
+
- Bump actions/checkout
|
|
15
|
+
- ci: add auto-approval for Dependabot PRs
|
|
16
|
+
- ci: skip Codecov upload on Dependabot PRs
|
|
17
|
+
- ci: pin dependabot actions, add cooldown and auto-merge
|
|
18
|
+
- Bump ruby/setup-ruby from 1.302.0 to 1.306.0
|
|
19
|
+
- chore: update CHANGELOG.md with recent dependency updates and CI changes
|
|
20
|
+
- chore: update dependencies in Gemfile.lock
|
|
21
|
+
- Bump devise from 5.0.3 to 5.0.4 in the bundler group across 1 directory
|
|
22
|
+
- Bump actions/checkout
|
|
23
|
+
- ci: add auto-approval for Dependabot PRs
|
|
24
|
+
- ci: skip Codecov upload on Dependabot PRs
|
|
25
|
+
- ci: pin dependabot actions, add cooldown and auto-merge
|
|
26
|
+
|
|
3
27
|
## [0.1.15] - 2026-05-02
|
|
4
28
|
|
|
5
29
|
- docs: update AGENTS.md with Minitest assertions and clarify auth strategies
|
data/README.md
CHANGED
|
@@ -2,6 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
**SCIM 2.0 server for Rails + Devise**
|
|
4
4
|
|
|
5
|
+
[](https://codecov.io/gh/vertigo-prime/devise_scim)
|
|
6
|
+
[](https://badge.fury.io/rb/devise_scim)
|
|
7
|
+
|
|
8
|
+
|
|
5
9
|
## What is this?
|
|
6
10
|
|
|
7
11
|
`devise_scim` mounts a fully compliant SCIM 2.0 server inside any Rails + Devise application, handling user and group provisioning from identity providers like Okta, Azure AD, and OneLogin. Unlike most existing gems it supports both single- and multi-tenant architectures out of the box, is actively maintained, makes no external API calls (pure Ruby — no third-party SCIM SDK), and conforms strictly to RFC 7643 and RFC 7644.
|
|
@@ -32,7 +32,7 @@ module DeviseScim
|
|
|
32
32
|
when Conjunction then visit(node.left).and(visit(node.right))
|
|
33
33
|
when Disjunction then visit(node.left).or(visit(node.right))
|
|
34
34
|
when AttrPath then visit_attr_path(node)
|
|
35
|
-
else raise InvalidFilter, "Unknown AST node: #{node.class}"
|
|
35
|
+
else raise InvalidFilter, "Unknown AST node: #{node.class}"
|
|
36
36
|
end
|
|
37
37
|
end
|
|
38
38
|
|
|
@@ -53,7 +53,7 @@ module DeviseScim
|
|
|
53
53
|
when "ge" then col.gteq(val)
|
|
54
54
|
when "lt" then col.lt(val)
|
|
55
55
|
when "le" then col.lteq(val)
|
|
56
|
-
else raise InvalidFilter, "Unknown operator '#{node.op}'"
|
|
56
|
+
else raise InvalidFilter, "Unknown operator '#{node.op}'"
|
|
57
57
|
end
|
|
58
58
|
end
|
|
59
59
|
# rubocop:enable Metrics/CyclomaticComplexity
|
data/lib/devise_scim/version.rb
CHANGED