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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f70cc2263ef16f703d8098d51c6e19011ea0819825e15a5ab603db3ce1f7aaf4
4
- data.tar.gz: 166c7f9af35d0e65ca4c68683076f396e2168daaa9d3dd30373cb780c2ba1a15
3
+ metadata.gz: 0daf9bbbcf53781199f6b6da65b933572550bac83fac908a2ea3323aec8c4ffa
4
+ data.tar.gz: 280c378bc22a1656809231c559b7084d005e83eace7725648ef1e2a3d5f729f6
5
5
  SHA512:
6
- metadata.gz: b7d028e40b43a183c758b5e106ed45473f146315cc644a957c81139007fc802d0131f2174d3b2b2e5d4bdb1342910f5dc10d4e71e096647364a74841995f75a6
7
- data.tar.gz: 8f014c03287d33ef0d691bd3142f8a099edc189e63b799258b4e126dd9f29ff7490d3eecfb003403d0da3a11211d514057df43a8b29353ce1b1c121b629f118c
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
+ [![codecov](https://codecov.io/gh/vertigo-prime/devise_scim/graph/badge.svg?token=WQVUHRI0LE)](https://codecov.io/gh/vertigo-prime/devise_scim)
6
+ [![Gem Version](https://badge.fury.io/rb/devise_scim.svg)](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.
@@ -43,8 +43,8 @@ module DeviseScim
43
43
 
44
44
  def parsed_body
45
45
  @parsed_body ||= JSON.parse(request.body.read)
46
- rescue JSON::ParserError # :nocov:
47
- {} # :nocov:
46
+ rescue JSON::ParserError
47
+ {}
48
48
  end
49
49
 
50
50
  def apply_filter(scope)
@@ -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}" # :nocov:
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}'" # :nocov:
56
+ else raise InvalidFilter, "Unknown operator '#{node.op}'"
57
57
  end
58
58
  end
59
59
  # rubocop:enable Metrics/CyclomaticComplexity
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module DeviseScim
4
- VERSION = "0.1.15"
4
+ VERSION = "0.1.16"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: devise_scim
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.15
4
+ version: 0.1.16
5
5
  platform: ruby
6
6
  authors:
7
7
  - Vertigo-Prime