scim-kit 0.5.3 → 0.7.0

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: e04da9c51b8d2f628376742ef446809322862a42d6ef08869fa6abf5d5ba9f91
4
- data.tar.gz: 62e3543d48e16a494d86c9fc1038292729b772a942015f2625c64c3113b048d0
3
+ metadata.gz: d4927e495e03c22db7cfe706323d710cc3679fa7f3f69c9e81c95eebc14c5fb2
4
+ data.tar.gz: 4a465b912bc234e23eddbaa6066550b12b7a8f1a54a018ede1ceb59b0da98834
5
5
  SHA512:
6
- metadata.gz: 3a0355d563cca429617253f4c503f1a7cfcea87da3c57b1e6a4798833065641d1c93055e296120d5ea0002fb399d98079c2af534698203296ef320990a24dfaf
7
- data.tar.gz: 7096ac7455e0352561c34c4fe0a4d810568340cf27fb89562d6d3cb70b3f4a90c255a933382c69c7f257bc2a690e6b3fead29822bc1bb9d79752704aee60d2f0
6
+ metadata.gz: 1cfc455af11f819193eece084026a7d5dd18ae244365a543269b1027388ad1ff0ba291eb1a2a70758e2dfc6ec15a867f4339c383e996935d93df5876c00bec49
7
+ data.tar.gz: 93510335e4ab9d219ef18786b5f04a086f45e6464a9c6403b2a24c9fdeec581e6c7a54b563195d5a2613708dec424d994061059acfe89bda624cf68213a12cdb
@@ -9,7 +9,7 @@ jobs:
9
9
  runs-on: ubuntu-latest
10
10
  strategy:
11
11
  matrix:
12
- ruby-version: ['2.5', '2.6', '2.7', '3.0']
12
+ ruby-version: ['2.7', '3.0', '3.1']
13
13
  steps:
14
14
  - uses: actions/checkout@v2
15
15
  - name: Set up Ruby
data/.rubocop.yml CHANGED
@@ -7,7 +7,7 @@ AllCops:
7
7
  - 'pkg/**/*'
8
8
  - 'tmp/**/*'
9
9
  - 'vendor/**/*'
10
- TargetRubyVersion: 2.5
10
+ TargetRubyVersion: 2.7
11
11
 
12
12
  Layout/ArgumentAlignment:
13
13
  EnforcedStyle: with_fixed_indentation
data/CHANGELOG.md CHANGED
@@ -1,4 +1,4 @@
1
- Version 0.5.3
1
+ Version 0.7.0
2
2
 
3
3
  # Changelog
4
4
  All notable changes to this project will be documented in this file.
@@ -8,6 +8,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
8
8
 
9
9
  ## [Unreleased]
10
10
 
11
+ ## [0.7.0] - 2022-09-28
12
+ ### Added
13
+ - Add constant for 'urn:ietf:params:scim:api:messages:2.0:BulkRequest' [RFC-7644](https://www.rfc-editor.org/rfc/rfc7644.html#section-3.7)
14
+ - Add constant for 'urn:ietf:params:scim:api:messages:2.0:BulkResponse' [RFC-7644](https://www.rfc-editor.org/rfc/rfc7644.html#section-3.7)
15
+ - Add constant for 'urn:ietf:params:scim:api:messages:2.0:PatchOp' [RFC-7644](https://www.rfc-editor.org/rfc/rfc7644.html#section-3.5.2)
16
+ - Add constant for 'urn:ietf:params:scim:schemas:core:2.0:Schema' [RFC-7643](https://www.rfc-editor.org/rfc/rfc7643.html#section-7)
17
+
18
+
19
+ ## [0.6.0] - 2022-05-23
20
+ ### Added
21
+ - Add support for Ruby 3.1
22
+
23
+ ### Removed
24
+
25
+ - Drop support for Ruby 2.5
26
+ - Drop support for Ruby 2.6
27
+
11
28
  ## [0.5.3] - 2022-05-13
12
29
  ### Fixed
13
30
 
@@ -65,28 +82,31 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
65
82
  - \_assign does not coerce values by default.
66
83
  - errors are merged together instead of overwritten during attribute validation.
67
84
 
68
- [Unreleased]: https://github.com/mokhan/scim-kit/compare/v0.5.2...HEAD
69
- [0.5.2]: https://github.com/mokhan/scim-kit/compare/v0.5.1...v0.5.2
70
- [0.5.1]: https://github.com/mokhan/scim-kit/compare/v0.5.0...v0.5.1
71
- [0.5.0]: https://github.com/mokhan/scim-kit/compare/v0.4.0...v0.5.0
72
- [0.4.0]: https://github.com/mokhan/scim-kit/compare/v0.3.2...v0.4.0
73
- [0.3.2]: https://github.com/mokhan/scim-kit/compare/v0.3.1...v0.3.2
74
- [0.3.1]: https://github.com/mokhan/scim-kit/compare/v0.3.0...v0.3.1
75
- [0.3.0]: https://github.com/mokhan/scim-kit/compare/v0.2.16...v0.3.0
76
- [0.2.16]: https://github.com/mokhan/scim-kit/compare/v0.2.15...v0.2.16
77
- [0.2.15]: https://github.com/mokhan/scim-kit/compare/v0.2.14...v0.2.15
78
- [0.2.14]: https://github.com/mokhan/scim-kit/compare/v0.2.13...v0.2.14
79
- [0.2.13]: https://github.com/mokhan/scim-kit/compare/v0.2.12...v0.2.13
80
- [0.2.12]: https://github.com/mokhan/scim-kit/compare/v0.2.11...v0.2.12
81
- [0.2.11]: https://github.com/mokhan/scim-kit/compare/v0.2.10...v0.2.11
82
- [0.2.10]: https://github.com/mokhan/scim-kit/compare/v0.2.9...v0.2.10
83
- [0.2.9]: https://github.com/mokhan/scim-kit/compare/v0.2.8...v0.2.9
84
- [0.2.8]: https://github.com/mokhan/scim-kit/compare/v0.2.7...v0.2.8
85
- [0.2.7]: https://github.com/mokhan/scim-kit/compare/v0.2.6...v0.2.7
86
- [0.2.6]: https://github.com/mokhan/scim-kit/compare/v0.2.5...v0.2.6
87
- [0.2.5]: https://github.com/mokhan/scim-kit/compare/v0.2.4...v0.2.5
88
- [0.2.4]: https://github.com/mokhan/scim-kit/compare/v0.2.3...v0.2.4
89
- [0.2.3]: https://github.com/mokhan/scim-kit/compare/v0.2.2...v0.2.3
90
- [0.2.2]: https://github.com/mokhan/scim-kit/compare/v0.2.1...v0.2.2
91
- [0.2.1]: https://github.com/mokhan/scim-kit/compare/v0.2.0...v0.2.1
92
- [0.2.0]: https://github.com/mokhan/scim-kit/compare/v0.1.0...v0.2.0
85
+ [Unreleased]: https://github.com/xlgmokha/scim-kit/compare/v0.7.0...HEAD
86
+ [0.7.0]: https://github.com/xlgmokha/scim-kit/compare/v0.6.0...v0.7.0
87
+ [0.6.0]: https://github.com/xlgmokha/scim-kit/compare/v0.5.3...v0.6.0
88
+ [0.5.3]: https://github.com/xlgmokha/scim-kit/compare/v0.5.2...v0.5.3
89
+ [0.5.2]: https://github.com/xlgmokha/scim-kit/compare/v0.5.1...v0.5.2
90
+ [0.5.1]: https://github.com/xlgmokha/scim-kit/compare/v0.5.0...v0.5.1
91
+ [0.5.0]: https://github.com/xlgmokha/scim-kit/compare/v0.4.0...v0.5.0
92
+ [0.4.0]: https://github.com/xlgmokha/scim-kit/compare/v0.3.2...v0.4.0
93
+ [0.3.2]: https://github.com/xlgmokha/scim-kit/compare/v0.3.1...v0.3.2
94
+ [0.3.1]: https://github.com/xlgmokha/scim-kit/compare/v0.3.0...v0.3.1
95
+ [0.3.0]: https://github.com/xlgmokha/scim-kit/compare/v0.2.16...v0.3.0
96
+ [0.2.16]: https://github.com/xlgmokha/scim-kit/compare/v0.2.15...v0.2.16
97
+ [0.2.15]: https://github.com/xlgmokha/scim-kit/compare/v0.2.14...v0.2.15
98
+ [0.2.14]: https://github.com/xlgmokha/scim-kit/compare/v0.2.13...v0.2.14
99
+ [0.2.13]: https://github.com/xlgmokha/scim-kit/compare/v0.2.12...v0.2.13
100
+ [0.2.12]: https://github.com/xlgmokha/scim-kit/compare/v0.2.11...v0.2.12
101
+ [0.2.11]: https://github.com/xlgmokha/scim-kit/compare/v0.2.10...v0.2.11
102
+ [0.2.10]: https://github.com/xlgmokha/scim-kit/compare/v0.2.9...v0.2.10
103
+ [0.2.9]: https://github.com/xlgmokha/scim-kit/compare/v0.2.8...v0.2.9
104
+ [0.2.8]: https://github.com/xlgmokha/scim-kit/compare/v0.2.7...v0.2.8
105
+ [0.2.7]: https://github.com/xlgmokha/scim-kit/compare/v0.2.6...v0.2.7
106
+ [0.2.6]: https://github.com/xlgmokha/scim-kit/compare/v0.2.5...v0.2.6
107
+ [0.2.5]: https://github.com/xlgmokha/scim-kit/compare/v0.2.4...v0.2.5
108
+ [0.2.4]: https://github.com/xlgmokha/scim-kit/compare/v0.2.3...v0.2.4
109
+ [0.2.3]: https://github.com/xlgmokha/scim-kit/compare/v0.2.2...v0.2.3
110
+ [0.2.2]: https://github.com/xlgmokha/scim-kit/compare/v0.2.1...v0.2.2
111
+ [0.2.1]: https://github.com/xlgmokha/scim-kit/compare/v0.2.0...v0.2.1
112
+ [0.2.0]: https://github.com/xlgmokha/scim-kit/compare/v0.1.0...v0.2.0
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- scim-kit (0.5.3)
4
+ scim-kit (0.7.0)
5
5
  activemodel (>= 6.1, < 8.0)
6
6
  net-hippie (~> 1.0)
7
7
  parslet (~> 2.0)
@@ -11,25 +11,24 @@ PATH
11
11
  GEM
12
12
  remote: https://rubygems.org/
13
13
  specs:
14
- actionview (6.1.6)
15
- activesupport (= 6.1.6)
14
+ actionview (7.0.4)
15
+ activesupport (= 7.0.4)
16
16
  builder (~> 3.1)
17
17
  erubi (~> 1.4)
18
18
  rails-dom-testing (~> 2.0)
19
19
  rails-html-sanitizer (~> 1.1, >= 1.2.0)
20
- activemodel (6.1.6)
21
- activesupport (= 6.1.6)
22
- activesupport (6.1.6)
20
+ activemodel (7.0.4)
21
+ activesupport (= 7.0.4)
22
+ activesupport (7.0.4)
23
23
  concurrent-ruby (~> 1.0, >= 1.0.2)
24
24
  i18n (>= 1.6, < 2)
25
25
  minitest (>= 5.1)
26
26
  tzinfo (~> 2.0)
27
- zeitwerk (~> 2.3)
28
- addressable (2.8.0)
29
- public_suffix (>= 2.0.2, < 5.0)
27
+ addressable (2.8.1)
28
+ public_suffix (>= 2.0.2, < 6.0)
30
29
  ast (2.4.2)
31
30
  builder (3.2.4)
32
- bundler-audit (0.9.0.1)
31
+ bundler-audit (0.9.1)
33
32
  bundler (>= 1.2.0, < 3)
34
33
  thor (~> 1.0)
35
34
  concurrent-ruby (1.1.10)
@@ -37,35 +36,35 @@ GEM
37
36
  rexml
38
37
  crass (1.0.6)
39
38
  diff-lcs (1.5.0)
40
- erubi (1.10.0)
39
+ erubi (1.11.0)
41
40
  ffaker (2.21.0)
42
41
  hashdiff (1.0.1)
43
- i18n (1.10.0)
42
+ i18n (1.12.0)
44
43
  concurrent-ruby (~> 1.0)
45
44
  jbuilder (2.11.5)
46
45
  actionview (>= 5.0.0)
47
46
  activesupport (>= 5.0.0)
48
- loofah (2.17.0)
47
+ loofah (2.18.0)
49
48
  crass (~> 1.0.2)
50
49
  nokogiri (>= 1.5.9)
51
- mini_portile2 (2.6.1)
52
- minitest (5.15.0)
50
+ mini_portile2 (2.8.0)
51
+ minitest (5.16.3)
53
52
  net-hippie (1.1.1)
54
- nokogiri (1.12.5)
55
- mini_portile2 (~> 2.6.1)
53
+ nokogiri (1.13.8)
54
+ mini_portile2 (~> 2.8.0)
56
55
  racc (~> 1.4)
57
- nokogiri (1.12.5-x86_64-linux)
56
+ nokogiri (1.13.8-x86_64-linux)
58
57
  racc (~> 1.4)
59
58
  parallel (1.21.0)
60
59
  parser (3.1.0.0)
61
60
  ast (~> 2.4.1)
62
61
  parslet (2.0.0)
63
- public_suffix (4.0.6)
62
+ public_suffix (5.0.0)
64
63
  racc (1.6.0)
65
64
  rails-dom-testing (2.0.3)
66
65
  activesupport (>= 4.2.0)
67
66
  nokogiri (>= 1.6)
68
- rails-html-sanitizer (1.4.2)
67
+ rails-html-sanitizer (1.4.3)
69
68
  loofah (~> 2.3)
70
69
  rainbow (3.1.1)
71
70
  rake (13.0.6)
@@ -100,18 +99,17 @@ GEM
100
99
  rubocop-ast (>= 0.7.1)
101
100
  ruby-progressbar (1.11.0)
102
101
  thor (1.2.1)
103
- tilt (2.0.10)
102
+ tilt (2.0.11)
104
103
  tilt-jbuilder (0.7.1)
105
104
  jbuilder
106
105
  tilt (>= 1.3.0, < 3)
107
- tzinfo (2.0.4)
106
+ tzinfo (2.0.5)
108
107
  concurrent-ruby (~> 1.0)
109
108
  unicode-display_width (1.8.0)
110
- webmock (3.14.0)
109
+ webmock (3.18.1)
111
110
  addressable (>= 2.8.0)
112
111
  crack (>= 0.3.2)
113
112
  hashdiff (>= 0.4.0, < 2.0.0)
114
- zeitwerk (2.5.4)
115
113
 
116
114
  PLATFORMS
117
115
  ruby
@@ -5,9 +5,12 @@ module Scim
5
5
  module V2
6
6
  module Messages
7
7
  CORE = 'urn:ietf:params:scim:api:messages:2.0'
8
+ BULK_REQUEST = "#{CORE}:BulkRequest"
9
+ BULK_RESPONSE = "#{CORE}:BulkResponse"
10
+ ERROR = "#{CORE}:Error"
8
11
  LIST_RESPONSE = "#{CORE}:ListResponse"
12
+ PATCH_OP = "#{CORE}:PatchOp"
9
13
  SEARCH_REQUEST = "#{CORE}:SearchRequest"
10
- ERROR = "#{CORE}:Error"
11
14
  end
12
15
  end
13
16
  end
@@ -11,6 +11,7 @@ module Scim
11
11
  ENTERPRISE_USER = "#{EXTENSION}:enterprise:2.0:User"
12
12
  GROUP = "#{CORE}:Group"
13
13
  RESOURCE_TYPE = "#{CORE}:ResourceType"
14
+ SCHEMA = "#{CORE}:Schema"
14
15
  SERVICE_PROVIDER_CONFIGURATION = "#{CORE}:ServiceProviderConfig"
15
16
  USER = "#{CORE}:User"
16
17
  end
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Scim
4
4
  module Kit
5
- VERSION = '0.5.3'
5
+ VERSION = '0.7.0'
6
6
  end
7
7
  end
data/scim-kit.gemspec CHANGED
@@ -12,7 +12,7 @@ Gem::Specification.new do |spec|
12
12
 
13
13
  spec.summary = 'A simple toolkit for working with SCIM 2.0'
14
14
  spec.description = 'A simple toolkit for working with SCIM 2.0'
15
- spec.homepage = 'https://www.github.com/mokhan/scim-kit'
15
+ spec.homepage = 'https://github.com/xlgmokha/scim-kit'
16
16
  spec.license = 'MIT'
17
17
 
18
18
  # Specify which files should be added to the gem when it is released.
@@ -27,7 +27,7 @@ Gem::Specification.new do |spec|
27
27
  File.basename(file)
28
28
  end
29
29
  spec.require_paths = ['lib']
30
- spec.required_ruby_version = Gem::Requirement.new('>= 2.5.0')
30
+ spec.required_ruby_version = Gem::Requirement.new('>= 2.7.0')
31
31
  spec.metadata['yard.run'] = 'yri'
32
32
 
33
33
  spec.add_dependency 'activemodel', '>= 6.1', '< 8.0'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: scim-kit
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.3
4
+ version: 0.7.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - mo
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-05-13 00:00:00.000000000 Z
11
+ date: 2022-09-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activemodel
@@ -251,7 +251,7 @@ files:
251
251
  - lib/scim/kit/v2/unknown_attribute.rb
252
252
  - lib/scim/kit/version.rb
253
253
  - scim-kit.gemspec
254
- homepage: https://www.github.com/mokhan/scim-kit
254
+ homepage: https://github.com/xlgmokha/scim-kit
255
255
  licenses:
256
256
  - MIT
257
257
  metadata:
@@ -264,14 +264,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
264
264
  requirements:
265
265
  - - ">="
266
266
  - !ruby/object:Gem::Version
267
- version: 2.5.0
267
+ version: 2.7.0
268
268
  required_rubygems_version: !ruby/object:Gem::Requirement
269
269
  requirements:
270
270
  - - ">="
271
271
  - !ruby/object:Gem::Version
272
272
  version: '0'
273
273
  requirements: []
274
- rubygems_version: 3.3.13
274
+ rubygems_version: 3.3.22
275
275
  signing_key:
276
276
  specification_version: 4
277
277
  summary: A simple toolkit for working with SCIM 2.0