devise_scim 0.1.15 → 0.1.17

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: 238d784ec53106d71a60e0ba2a158ef48e3134c962a81350fa966001ce9acdc5
4
+ data.tar.gz: 7344c3f4f0205ecce628682e1226a806e9f4194f6d5f5764b24fa13088e45dc8
5
5
  SHA512:
6
- metadata.gz: b7d028e40b43a183c758b5e106ed45473f146315cc644a957c81139007fc802d0131f2174d3b2b2e5d4bdb1342910f5dc10d4e71e096647364a74841995f75a6
7
- data.tar.gz: 8f014c03287d33ef0d691bd3142f8a099edc189e63b799258b4e126dd9f29ff7490d3eecfb003403d0da3a11211d514057df43a8b29353ce1b1c121b629f118c
6
+ metadata.gz: da52f4f20812d6fb0803c6f27a8f3f6cff45a0fcbd5b2dbfb4493e349249e563b3b291eb0804e61a13cb9f52dd6c98190c02681850e5c4e5a128591bd3f4c203
7
+ data.tar.gz: 4677b6d56c2fceed69be25ca01b69670e9a64b71152c656ba9fe7b92904e1c4c3e07a4c3b82d823e89d0c12046f0b065271b0039bf8d5d8ea24d4e4e561f6d11
data/CHANGELOG.md CHANGED
@@ -1,5 +1,37 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [0.1.17] - 2026-06-17
4
+
5
+ - Bump doorkeeper from 5.9.1 to 5.9.2
6
+ - Bump rubocop from 1.86.2 to 1.87.0
7
+ - Bump net-imap in the bundler group across 1 directory
8
+ - Bump codecov/codecov-action from 6.0.1 to 7.0.0
9
+ - Bump actions/checkout
10
+
11
+ ## [0.1.16] - 2026-05-31
12
+
13
+ - Bump ruby/setup-ruby from 1.308.0 to 1.310.0
14
+ - Bump doorkeeper from 5.9.0 to 5.9.1
15
+ - Bump codecov/codecov-action from 6.0.0 to 6.0.1
16
+ - Bump rubocop from 1.86.1 to 1.86.2
17
+ - Bump ruby/setup-ruby from 1.306.0 to 1.308.0
18
+ - fix: improve error handling for unknown AST nodes and comparison operators
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
+ - Bump ruby/setup-ruby from 1.302.0 to 1.306.0
27
+ - chore: update CHANGELOG.md with recent dependency updates and CI changes
28
+ - chore: update dependencies in Gemfile.lock
29
+ - Bump devise from 5.0.3 to 5.0.4 in the bundler group across 1 directory
30
+ - Bump actions/checkout
31
+ - ci: add auto-approval for Dependabot PRs
32
+ - ci: skip Codecov upload on Dependabot PRs
33
+ - ci: pin dependabot actions, add cooldown and auto-merge
34
+
3
35
  ## [0.1.15] - 2026-05-02
4
36
 
5
37
  - 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.17"
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.17
5
5
  platform: ruby
6
6
  authors:
7
7
  - Vertigo-Prime