Skip to content

Commit 0dc75de

Browse files
authored
Merge pull request #26 from LoginRadius/ror-sdk-release11.7.0
Ror sdk release11.7.0
2 parents 306ed0f + 41aea01 commit 0dc75de

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+498
-115
lines changed

CHANGELOG.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,40 @@
11
> **LoginRadius Ruby On Rails SDK Change Log** provides information regarding what has changed, more specifically what changes, improvements and bug fix has been made to the SDK. For more details please refer to the [LoginRadius API Documention](https://docs.loginradius.com/api/v2/sdk-libraries/ruby)
22
33

4+
# Version 11.6.0
5+
6+
**Release Date:** March 29, 2025
7+
8+
## Enhancements
9+
10+
We've introduced a brand-new set of Webhook APIs, designed with enhanced functionality and flexibility. These new APIs support advanced features including:
11+
12+
- Custom header configuration
13+
- Query parameter support
14+
- Webhook authentication methods (Bearer Token and Basic Auth)
15+
- Support for a custom `Name` parameter to label each webhook subscription
16+
17+
As part of this upgrade, the legacy Webhook APIs have been deprecated in favor of the new, more robust versions.
18+
19+
## Newly Added APIs
20+
21+
- `get_webhook_subscription_detail` – Retrieve detailed information about a specific webhook subscription
22+
- `create_webhook_subscription` – Create a new webhook subscription with advanced configuration options
23+
- `delete_webhook_subscription` – Remove an existing webhook subscription
24+
- `update_webhook_subscription` – Modify an existing webhook subscription
25+
- `list_all_webhooks` – Retrieve a list of all configured webhook subscriptions
26+
- `get_webhook_events` – Fetch available webhook events supported by the system
27+
28+
## Deprecated APIs
29+
30+
The following legacy APIs have been deprecated:
31+
32+
- `web_hook_subscribe`
33+
- `webhook_test`
34+
- `web_hook_unsubscribe`
35+
- `get_web_hook_subscribed_u_r_ls`
36+
37+
438
# Version 11.5.0
539
Release on January 20, 2023
640

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2022 LoginRadius Inc.
1+
Copyright (c) 2025 LoginRadius Inc.
22

33
Permission is hereby granted, free of charge, to any person obtaining a copy
44
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 297 additions & 22 deletions
Large diffs are not rendered by default.

demo/vendor/gems/login_radius/LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2022 LoginRadius Inc.
1+
Copyright (c) 2025 LoginRadius Inc.
22

33
Permission is hereby granted, free of charge, to any person obtaining a copy
44
of this software and associated documentation files (the "Software"), to deal

demo/vendor/gems/login_radius/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Install the SDK by adding LoginRadius to your application's `Gemfile`.
44

55
```shell
6-
gem 'login_radius', '~> 11.5.0'
6+
gem 'login_radius', '~> 11.6.0'
77
```
88

99
Then, run `$ bundle`. A copy of the SDK can also be found on our [Github](https://github.com/LoginRadius/ruby-on-rails-gem/tree/master).

demo/vendor/gems/login_radius/lib/login_radius/api/account/account_api.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# frozen_string_literal: true
22

33
# Created by LoginRadius Development Team
4-
# Copyright 2019 LoginRadius Inc. All rights reserved.
4+
# Copyright 2025 LoginRadius Inc. All rights reserved.
55
require_relative '../../request_client'
66

77
module LoginRadius

demo/vendor/gems/login_radius/lib/login_radius/api/account/role_api.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# frozen_string_literal: true
22

33
# Created by LoginRadius Development Team
4-
# Copyright 2019 LoginRadius Inc. All rights reserved.
4+
# Copyright 2025 LoginRadius Inc. All rights reserved.
55
require_relative '../../request_client'
66

77
module LoginRadius

demo/vendor/gems/login_radius/lib/login_radius/api/account/sott_api.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# frozen_string_literal: true
22

33
# Created by LoginRadius Development Team
4-
# Copyright 2019 LoginRadius Inc. All rights reserved.
4+
# Copyright 2025 LoginRadius Inc. All rights reserved.
55
require_relative '../../request_client'
66

77
module LoginRadius

demo/vendor/gems/login_radius/lib/login_radius/api/advanced/configuration_api.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# frozen_string_literal: true
22

33
# Created by LoginRadius Development Team
4-
# Copyright 2019 LoginRadius Inc. All rights reserved.
4+
# Copyright 2025 LoginRadius Inc. All rights reserved.
55
require_relative '../../request_client'
66

77
module LoginRadius

demo/vendor/gems/login_radius/lib/login_radius/api/advanced/consent_management_api.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# frozen_string_literal: true
22

33
# Created by LoginRadius Development Team
4-
# Copyright 2019 LoginRadius Inc. All rights reserved.
4+
# Copyright 2025 LoginRadius Inc. All rights reserved.
55
require_relative '../../request_client'
66

77
module LoginRadius

0 commit comments

Comments
 (0)