scimaenaga 0.9.2 → 0.9.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +11 -2
  3. data/lib/scimaenaga/version.rb +1 -1
  4. metadata +4 -4
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 69985f44f14b5d70711abc732510c0c9d286f2166a3cc862cb01a066ee2d147a
4
- data.tar.gz: cf49a0a5532885d1b383968e71e37c7ce10e0ea7e420d120e0d7985bf801dde3
3
+ metadata.gz: ce48c55b8d91577a5bef591d776164a82e07fa41ce6b4c6a88b254d1f265a647
4
+ data.tar.gz: a1a216888539e4da4fc050b17c70b77d82a890d0ca43f2ed4acd5543dd298173
5
5
  SHA512:
6
- metadata.gz: 189a4af53c50c9d3a2c1b65d0d1f1fa6144049b2419d2a545af70d04553aa295a34a0630db771ae87937c1e2039312f03461d43f578ad07d1bd8299be11a6bdf
7
- data.tar.gz: 6ed3f4623d8d9eb0bdc34be0dbf5ef00032b91efd7dfaf27c0ac4cc965d11582d0d4ab3fb96621146703f45bd9b891f65dd76bde82514a4ea4a9c6acd35990fe
6
+ metadata.gz: 3be6f5c852771c0d72a3ffe424df22cbd4e3aa63fcb027565c536567944d00fd8a5ce78a1850fc1b524ff216070463e0e13fcc286400c5674eca2cd40ab6176f
7
+ data.tar.gz: 97e0c1f7f3b9442a7cf444c3da86a090cf70a6c7942d8be3ae5f4e3dd99eaf7b6c3899e514734cf6493f94bcf6860652fd84ba8ce089d371ca660beb3a160d54
data/README.md CHANGED
@@ -236,6 +236,16 @@ Sample request:
236
236
  $ curl -X PUT 'http://username:password@localhost:3000/scim/v2/Users/1' -d '{"schemas":["urn:ietf:params:scim:schemas:core:2.0:User"],"userName":"test@example.com","name":{"givenName":"Test","familyName":"User"},"emails":[{"primary":true,"value":"test@example.com","type":"work"}],"displayName":"Test User","active":true}' -H 'Content-Type: application/scim+json'
237
237
  ```
238
238
 
239
+ ### Deprovision / Reprovision
240
+
241
+ The PATCH request was implemented to work with Azure AD. Azure AD deprovisions / reprovisions with PATCH.
242
+
243
+ Sample request:
244
+
245
+ ```bash
246
+ $ curl -X PATCH 'http://username:password@localhost:3000/scim/v2/Users/1' -d '{"schemas": ["urn:ietf:params:scim:api:messages:2.0:PatchOp"], "Operations": [{"op": "replace", "path": "active", "value": false}]}' -H 'Content-Type: application/scim+json'
247
+ ```
248
+
239
249
  ### Error Handling
240
250
 
241
251
  By default, scimaenaga will output any unhandled exceptions to your configured rails logs.
@@ -308,8 +318,7 @@ Maintainers:
308
318
  - Help set project direction
309
319
  - Merge contributions from contributors
310
320
 
311
- - [@wernull](https://github.com/wernull)
312
- - [@rreinhardt9](https://github.com/rreinhardt9)
321
+ - [Studist Corporation](https://github.com/StudistCorporation)
313
322
 
314
323
  ## License
315
324
  The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Scimaenaga
4
- VERSION = '0.9.2'
4
+ VERSION = '0.9.3'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: scimaenaga
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.2
4
+ version: 0.9.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Studist Corporation
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-03-11 00:00:00.000000000 Z
11
+ date: 2023-04-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -266,14 +266,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
266
266
  version: 2.5.9
267
267
  - - "<"
268
268
  - !ruby/object:Gem::Version
269
- version: '3.1'
269
+ version: '3.3'
270
270
  required_rubygems_version: !ruby/object:Gem::Requirement
271
271
  requirements:
272
272
  - - ">="
273
273
  - !ruby/object:Gem::Version
274
274
  version: '0'
275
275
  requirements: []
276
- rubygems_version: 3.0.3
276
+ rubygems_version: 3.1.6
277
277
  signing_key:
278
278
  specification_version: 4
279
279
  summary: SCIM Adapter for Rails.