Skip to content

Commit e318a53

Browse files
authored
Cut 2.0 release (#544)
Cut audiences 2.0 releasse
1 parent 3eba77b commit e318a53

File tree

7 files changed

+23
-6
lines changed

7 files changed

+23
-6
lines changed

audiences-react/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "audiences",
3-
"version": "1.6.1",
3+
"version": "2.0.0",
44
"description": "Audiences SCIM client",
55
"files": [
66
"dist/*.*",

audiences/Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
audiences (1.6.1)
4+
audiences (2.0.0)
55
aether_observatory (~> 1.0)
66
rails (>= 6.0)
77

audiences/docs/CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,22 @@
11
# Unreleased
22

3+
# Version 2.0 (2025-08-25)
4+
5+
The all new 2.0 release inverts the SCIM logic, where now Audiences no longer pulls data from SCIM, but rather it will receive and cache SCIM data, allowing for an in database calculation of audiences. This improved process allows audiences to be more independent from SCIM, while still compatible with the protocol.
6+
7+
- Update ExternalUser on membership changeas [#541](https://github.com/powerhome/audiences/pull/541)
8+
- Filter extra_users in context JSON [#540](https://github.com/powerhome/audiences/pull/540)
9+
- Introduce helpful scopes [#538](https://github.com/powerhome/audiences/pull/538)
10+
- Allow inactive groups in criteria [#537](https://github.com/powerhome/audiences/pull/537)
11+
- Allow creating external users and groups with internal and external ids [#536](https://github.com/powerhome/audiences/pull/536)
12+
- Reactive audience recalculation [#535](https://github.com/powerhome/audiences/pull/535)
13+
- match group criteria [#534](https://github.com/powerhome/audiences/pull/534)
14+
- Configurable default user and groups scope [#533](https://github.com/powerhome/audiences/pull/533)
15+
- Default authentication to reject requests [#532](https://github.com/powerhome/audiences/pull/532)
16+
- scim proxy with local data [#531](https://github.com/powerhome/audiences/pull/531)
17+
- Local audience calculations [#530](https://github.com/powerhome/audiences/pull/530)
18+
- Local user and group info updated with TwoPercent [#519](https://github.com/powerhome/audiences/pull/519)
19+
320
# Version 1.6 (2025-03-19)
421

522
- Prepackaged audiences-react in UJS [#510](https://github.com/powerhome/audiences/pull/510)

audiences/gemfiles/rails_6_1.gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: ..
33
specs:
4-
audiences (1.6.1)
4+
audiences (2.0.0)
55
aether_observatory (~> 1.0)
66
rails (>= 6.0)
77

audiences/gemfiles/rails_7_0.gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: ..
33
specs:
4-
audiences (1.6.1)
4+
audiences (2.0.0)
55
aether_observatory (~> 1.0)
66
rails (>= 6.0)
77

audiences/gemfiles/rails_7_1.gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: ..
33
specs:
4-
audiences (1.6.1)
4+
audiences (2.0.0)
55
aether_observatory (~> 1.0)
66
rails (>= 6.0)
77

audiences/lib/audiences/version.rb

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

33
module Audiences
4-
VERSION = "1.6.1"
4+
VERSION = "2.0.0"
55
end

0 commit comments

Comments
 (0)