@clickview/ship-it 0.0.27 → 0.0.28
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.
- package/dist/F1/Analytics Web.md +8 -0
- package/dist/F1/AutoCaptions.md +30 -0
- package/dist/F1/Classroom.Api.md +23 -0
- package/dist/F1/ClickView Online.md +17 -0
- package/dist/F1/ClickView.Curator.md +100 -0
- package/dist/F1/ClickView.EmailService.md +53 -0
- package/dist/F1/ClickView.OnlineApi.md +13 -0
- package/dist/F1/Clients.md +19 -0
- package/dist/F1/Domain.Api.md +23 -0
- package/dist/F1/Exchange.Web.md +8 -0
- package/dist/F1/Image.Api.md +8 -0
- package/dist/F1/Integrations.Api.md +23 -0
- package/dist/F1/Krakend.md +8 -0
- package/dist/F1/Library Editor.md +0 -0
- package/dist/F1/Lite.md +60 -0
- package/dist/F1/Master.Api.md +58 -0
- package/dist/F1/Master.Auth.md +22 -0
- package/dist/F1/Objects.Api.md +12 -0
- package/dist/F1/Permissions.Api.md +12 -0
- package/dist/F1/RealtimeSalesforceSync.md +14 -0
- package/dist/F1/Release Notes.md +990 -0
- package/dist/F1/Search.Api.md +12 -0
- package/dist/F1/StreamableLearning.Web.md +35 -0
- package/dist/F1/Users.Api.md +13 -0
- package/dist/F1/VideoProcessorService.md +23 -0
- package/dist/F1/clickview.md +321 -0
- package/dist/F2/Analytics Web.md +7 -0
- package/dist/F2/Batch.Api.md +27 -0
- package/dist/F2/ClickView Online.md +12 -0
- package/dist/F2/ClickView.Curator.md +166 -0
- package/dist/F2/Clients.md +14 -0
- package/dist/F2/CurriculumIngestion.Api.md +13 -0
- package/dist/F2/Discover.Api.md +64 -0
- package/dist/F2/Domain.Api.md +16 -0
- package/dist/F2/Exchange.Web.md +7 -0
- package/dist/F2/Krakend.md +12 -0
- package/dist/F2/Library Editor.md +11 -0
- package/dist/F2/Lite.md +30 -0
- package/dist/F2/Objects.Api.md +12 -0
- package/dist/F2/Release Notes.md +759 -0
- package/dist/F2/Search.Api.md +30 -0
- package/dist/F2/Share.Api.md +12 -0
- package/dist/F2/StreamableLearning.Web.md +14 -0
- package/dist/F2/Subjects.API.md +12 -0
- package/dist/F2/Tv.Web.md +8 -0
- package/dist/F2/Users.Api.md +21 -0
- package/dist/F2/clickview.md +200 -0
- package/dist/F2/shortcode-api.md +8 -0
- package/dist/F3.1/Analytics Web.md +8 -0
- package/dist/F3.1/ClickView.Curator.md +14 -0
- package/dist/F3.1/Discover.Api.md +14 -0
- package/dist/F3.1/Domain.Api.md +7 -0
- package/dist/F3.1/Exchange.Web.md +8 -0
- package/dist/F3.1/Library Editor.md +8 -0
- package/dist/F3.1/Lite.md +8 -0
- package/dist/F3.1/Objects.Api.md +7 -0
- package/dist/F3.1/Release Notes.md +207 -0
- package/dist/F3.1/Search.Api.md +14 -0
- package/dist/F3.1/Share.Api.md +10 -0
- package/dist/F3.1/Subjects.API.md +35 -0
- package/dist/F3.1/VideoViews.Api.md +7 -0
- package/dist/F3.1/clickview.md +28 -0
- package/lib/src/api-clients/git-lab/GitLabApiClient.js +20 -1
- package/lib/src/api-clients/git-lab/GitLabMapper.js +1 -0
- package/lib/src/commands/CreateReleaseNotesCommand.js +12 -1
- package/lib/src/commands/StartConsumingProjectBuildsCommand.js +76 -0
- package/lib/src/constants/ProjectNames.js +1 -0
- package/lib/src/constants/TeamCityBuildIDs.js +1 -0
- package/lib/src/index.js +0 -0
- package/lib/src/services/GitLabService.js +10 -3
- package/lib/src/startup/SetupCommands.js +3 -0
- package/lib/src/tasks/StartConsumingProjectBuildsTask.js +149 -0
- package/lib/src/tasks/StartProjectBuildsTask.js +38 -17
- package/lib/src/tasks/ValidateTask.js +105 -30
- package/package.json +1 -1
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
|
|
2
|
+
# Code changes
|
|
3
|
+
- Move all amazon transcribe logic to `ClickView.AutoCaptions.Aws`
|
|
4
|
+
- Change `IAmazonTranscribeClient` to `ITranscriptionProcessor`. Closes CORE-1374
|
|
5
|
+
- Introduce new domain models instead of using the aws client models
|
|
6
|
+
- Now contains `TranscriptionSubtitle` which has the subtitle content as a string instead of returning urls
|
|
7
|
+
- `AmazonTranscribeClient` changes:
|
|
8
|
+
- Will now download the subtitle instead of leaving it up to `CaptionTaskProcessor`
|
|
9
|
+
- Moved CdnMapping call into this service as other processors need want to use the cdn for public access
|
|
10
|
+
|
|
11
|
+
- Add `Directory.Build.props` to control common properties
|
|
12
|
+
- nullable is now enabled for all projects
|
|
13
|
+
- Misc nullable fixes
|
|
14
|
+
- `LanguageHelper` changes
|
|
15
|
+
- Define a default language for when we return a default language. HashSet does not guarantee ordering so FIrst might not be whats expected
|
|
16
|
+
- Update build files to their latest versions
|
|
17
|
+
- Use the runtime docker image not aspnet as this is not an aspnet project
|
|
18
|
+
|
|
19
|
+
- Replace local master api client with `ClickView.Clients.Master`
|
|
20
|
+
|
|
21
|
+
- Update all packages to their latest versions
|
|
22
|
+
- Replace `Serilog.AspNetCore` with `Serilog.Extensions.Hosting` since we are not in an aspnetcore context
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
# Testing
|
|
26
|
+
- CORE-1374
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
|
|
2
|
+
# Before release
|
|
3
|
+
* [ ] Add the following curator group ids to octo variables for production (same curator groups as user api)
|
|
4
|
+
* 5485
|
|
5
|
+
* 9518351
|
|
6
|
+
* 3699822
|
|
7
|
+
* 7204452
|
|
8
|
+
* 1550457
|
|
9
|
+
* 2046458
|
|
10
|
+
* 2046453
|
|
11
|
+
* 14069509
|
|
12
|
+
* 67079832
|
|
13
|
+
* 67080194
|
|
14
|
+
* 67080437
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
# Code changes
|
|
18
|
+
* Add support to allow curator group users to add students to a classroom on behalf of customers in curator
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
# Testing
|
|
22
|
+
* INBOX-5335
|
|
23
|
+
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
|
|
2
|
+
# Customer changes
|
|
3
|
+
- Fix disabled users being shown the change password UI. Fixes INBOX-5227
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
# Code changes
|
|
7
|
+
- Remove `LastSignInDate` Min check that redirects to the change password screen. This should always be handled by auth now
|
|
8
|
+
- Added check for if the user is disabled in `OnActionExecuting`. If they are, log the user out and redirect to the `/` root
|
|
9
|
+
- Reduce the user cache time from 5min to 1min
|
|
10
|
+
- Don't ignore default values in `BaseRedisDataStructure`
|
|
11
|
+
- **Note**: This could be potentially a spicy change
|
|
12
|
+
- This was changed to fix a bug where the UserProfile.Status was disabled but the `BaseMediaObject.Status was the default value. Ignore would then remove it because the "base" value was the default
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
# Testing
|
|
16
|
+
- INBOX-5227
|
|
17
|
+
|
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
|
|
2
|
+
# Before release
|
|
3
|
+
* Please add `streamableLibraryId` config property to octo. Production id = `78688869`
|
|
4
|
+
|
|
5
|
+
* Update image client to latest nuget package
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
# Dependencies
|
|
9
|
+
* Merge after !1314
|
|
10
|
+
|
|
11
|
+
- [x] Merge and release after https://gitlab.cvinternal.net/clickview/back-end/users.api/-/merge_requests/243
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# Customer changes
|
|
15
|
+
* The `Content Pipeline` fixes a bug when a video's metada (e.g. description) is updated in the curator web, and if the video has any clips, the video type will be changed from `video` to `clip`
|
|
16
|
+
*
|
|
17
|
+
|
|
18
|
+
- Add streamable learning to nav
|
|
19
|
+
|
|
20
|
+
- Assignees will now display their avatar
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
# Code changes
|
|
24
|
+
* The `Content Pipeline` updates `RightsLine` video status to `Published` after publishing videos
|
|
25
|
+
|
|
26
|
+
* VideoUpdateEventHandler.HandleAsync() uses clip id rather the video id to update clip properties in mongo db
|
|
27
|
+
|
|
28
|
+
* Added regions field to videos. Implements CC-823
|
|
29
|
+
|
|
30
|
+
* Added null check when trying to get user token
|
|
31
|
+
|
|
32
|
+
* Added parent video id and filters for clips. Implements CC-820
|
|
33
|
+
|
|
34
|
+
* Added an endpoint to get dashboard videos. Implements CC-816
|
|
35
|
+
|
|
36
|
+
* Added topic template column for dashboards. Implements CC-814
|
|
37
|
+
|
|
38
|
+
* Supports new thumbnailText field for videos. Implements CC-812
|
|
39
|
+
|
|
40
|
+
* Added `source` column. Implements CC-822
|
|
41
|
+
* Added filters for `source` column
|
|
42
|
+
|
|
43
|
+
* Fixed a bug where dashboard wasn't being updated correctly. Fixes CC-815
|
|
44
|
+
|
|
45
|
+
* Fixed a bug where clip's interactive wasn't being synced. Fixes CC-811
|
|
46
|
+
|
|
47
|
+
* Added priority column for all entities. Implements CC-804
|
|
48
|
+
* Added filters for priority column. Implements CC-807
|
|
49
|
+
* Using priority column to sort. Implements CC-818
|
|
50
|
+
* When updating priority on a curated topic, it automatically cascade down to the videos and classification associated with that topic. Implements CC-808
|
|
51
|
+
* Add an endpoint for setting priority. Implements CC-806
|
|
52
|
+
|
|
53
|
+
* Using image client in curation studio project. Implements INBOX-5381
|
|
54
|
+
|
|
55
|
+
* Fixed classroom search serialisation. Fixes INBOX-5336
|
|
56
|
+
|
|
57
|
+
Added users.api endpoints with support to customerless users:
|
|
58
|
+
* `GET` `ajax/user/{id}`: Get user by Id
|
|
59
|
+
* `POST` `ajax/users/delete`: Delete users object
|
|
60
|
+
* `PUT` `ajax/users/update-status`: Update user statuses (if customer is not passed, it will just update users' statuses if there's no customer).
|
|
61
|
+
Implements CC-758
|
|
62
|
+
|
|
63
|
+
|
|
64
|
+
# Testing
|
|
65
|
+
|
|
66
|
+
* Find a video that has at least one clip created in the curator web.
|
|
67
|
+
* Modify any video's metadata field e.g. description
|
|
68
|
+
* Now check the video in the `Content Pipeline` doesn't change to `clip`
|
|
69
|
+
|
|
70
|
+
Implements CC-823
|
|
71
|
+
|
|
72
|
+
|
|
73
|
+
|
|
74
|
+
Implements CC-820
|
|
75
|
+
|
|
76
|
+
Implements CC-816
|
|
77
|
+
|
|
78
|
+
Implements CC-814
|
|
79
|
+
|
|
80
|
+
Implements CC-812
|
|
81
|
+
|
|
82
|
+
Implements CC-822
|
|
83
|
+
|
|
84
|
+
Fixes CC-815
|
|
85
|
+
|
|
86
|
+
Fixes CC-811
|
|
87
|
+
|
|
88
|
+
* Implements CC-804
|
|
89
|
+
* Implements CC-818
|
|
90
|
+
* Implements CC-808
|
|
91
|
+
* Implements CC-807
|
|
92
|
+
* Implements CC-806
|
|
93
|
+
|
|
94
|
+
|
|
95
|
+
Implements INBOX-5381
|
|
96
|
+
|
|
97
|
+
Fixes INBOX-5336
|
|
98
|
+
|
|
99
|
+
Implements CC-758
|
|
100
|
+
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
|
|
2
|
+
# Before release
|
|
3
|
+
- Move smtp settings to be under the `stmp:legacy` key instead of just `smtp`
|
|
4
|
+
|
|
5
|
+
- Remove all regional resources from octo
|
|
6
|
+
|
|
7
|
+
- Set `queues:notification:concurrentTaskCount` to
|
|
8
|
+
- prod = `5` (current value is 10 but that seems high?)
|
|
9
|
+
- nonprod = 1
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
# Code changes
|
|
13
|
+
- Move config out of Models project and into the main web project. Closes CORE-1365
|
|
14
|
+
|
|
15
|
+
- Null check user and email before doing any more work (If the user has no email, theres no point in fetching the video objects etc)
|
|
16
|
+
- Enable nullable on more projects
|
|
17
|
+
|
|
18
|
+
- Added ability to define multiple smtp servers. Implements CORE-1362
|
|
19
|
+
- Can define `weight` to do a weighted round robin load balancing
|
|
20
|
+
- Rename `IClickViewEmailManager` to `IEmailSender`
|
|
21
|
+
- Rename `ClickViewEmailManager` to `SmtpEmailSender`
|
|
22
|
+
|
|
23
|
+
- Add an `obsolete` key to the template configuration, that will log an error any time an obsolete template is used
|
|
24
|
+
|
|
25
|
+
- Removed the passing of `AppConfig` to all notifications
|
|
26
|
+
- Added `ThumbnailHepler` to generate thumbnails (basically the same code that was in `BaseNotification`)
|
|
27
|
+
- Added `LinkGenerator` to generate links to Manage and Lite (when we dont have `AppLinks`)
|
|
28
|
+
|
|
29
|
+
- Remove regional resources and use app links and launch for (Closes CORE-1364):
|
|
30
|
+
- `VideoAvailableNotification (Workspace)`
|
|
31
|
+
- `VideoAvailableNotification (Exchange)`
|
|
32
|
+
- `EditedVideoAvailable`
|
|
33
|
+
|
|
34
|
+
- Use `ClickView.GoodStuff.Hosting.Queue` for the `EmailNotificationWorker`
|
|
35
|
+
- Reduce the default prefetch count of `EmailNotificationWorker` from 10 to 1
|
|
36
|
+
|
|
37
|
+
* Added null checks in `ClickView.EmailService.Notifications` project. Fixes INBOX-5691
|
|
38
|
+
* File scoped namespace
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
# Testing
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
- CORE-1362
|
|
45
|
+
|
|
46
|
+
- Implements CORE-1368
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
- CORE-1364
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
Fixes INBOX-5691
|
|
53
|
+
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
|
|
2
|
+
# Customer changes
|
|
3
|
+
- Fixes lite users not being able to login with multiple customers via SAML. Fixes INBOX-5858
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
# Code changes
|
|
7
|
+
- Remove multiple user profile check during update user call
|
|
8
|
+
- Remove migrate user call as all users should be in master api now
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
# Testing
|
|
12
|
+
- INBOX-5858
|
|
13
|
+
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
|
|
2
|
+
# ClickView.Clients.Image.v2
|
|
3
|
+
|
|
4
|
+
## Code changes
|
|
5
|
+
* Added `FileIdType` parameter to `GetImageMetdata` method
|
|
6
|
+
|
|
7
|
+
# ClickView.Clients.Object
|
|
8
|
+
|
|
9
|
+
## Code changes
|
|
10
|
+
- Rename `token` and `canelToken` to `cancellationToken`
|
|
11
|
+
- Add `PermissionFilterOptions` class
|
|
12
|
+
|
|
13
|
+
# monorepo
|
|
14
|
+
|
|
15
|
+
## Code changes
|
|
16
|
+
- Updated all tests to fix nullable errors
|
|
17
|
+
- Updated `ClickView.Models`
|
|
18
|
+
|
|
19
|
+
# Testing
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
|
|
2
|
+
# Dependencies
|
|
3
|
+
* Search API F1 release
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
# Customer changes
|
|
7
|
+
* New customers that are created will randomly opt in or out of new onboarding. We are targeting 50% for each targets.
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
# Code changes
|
|
11
|
+
* Setup onboarding option for new customers.
|
|
12
|
+
* Implements LTE-2344.
|
|
13
|
+
* Implements LTE-2343
|
|
14
|
+
|
|
15
|
+
* Supporting category id and series id filter for instant search. Partially fixes: INBOX-5795
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
# Testing
|
|
19
|
+
* Implements LTE-2344
|
|
20
|
+
* Implements LTE-2343
|
|
21
|
+
|
|
22
|
+
Partially fixes: INBOX-5795
|
|
23
|
+
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
|
|
2
|
+
# Before release
|
|
3
|
+
- Create rabbitmq queue and bind to master events
|
|
4
|
+
- Create rabbitmq user
|
|
5
|
+
- Update octo config for `rabbitmq`
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
# Code changes
|
|
9
|
+
- Added master event listener to delete roster mappings on `User`, `Classroom` and `Customer` delete events. Closes CORE-1366
|
|
10
|
+
|
|
11
|
+
- Replace `Microsoft.IdentityModel.Clients.ActiveDirectory` with `Microsoft.Identity.Client` to fix obsolete call when updating `Microsoft.IdentityModel.Clients.ActiveDirectory`. Fixes CORE-1367
|
|
12
|
+
- Followed https://learn.microsoft.com/en-us/entra/msal/dotnet/how-to/migrate-confidential-client?tabs=daemon
|
|
13
|
+
- Added in memory cache since the token should always be the same anyway and prevents getting rate limited
|
|
14
|
+
|
|
15
|
+
- Update all packages to their latest versions
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
# Testing
|
|
19
|
+
- CORE-1366
|
|
20
|
+
|
|
21
|
+
- CORE-1367
|
|
22
|
+
|
|
23
|
+
|
|
File without changes
|
package/dist/F1/Lite.md
ADDED
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
|
|
2
|
+
# Before release
|
|
3
|
+
- [ ] Remove the `featuredTopics` octo variables that are no longer needed
|
|
4
|
+
## Code changes
|
|
5
|
+
- Remove legacy code for using `featuredTopics` on dashboards
|
|
6
|
+
- This stopped being used with the release of our new Discover dashboards early last year.
|
|
7
|
+
- Resolves INBOX-4371
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
# Dependencies
|
|
11
|
+
- https://gitlab.cvinternal.net/clickview/front-end/clickview/-/merge_requests/3937 should be merged before this
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# Customer changes
|
|
15
|
+
- Update fav playlist banner image
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
# Code changes
|
|
19
|
+
- For unauthenticated users, the current user bootstrap handler will now source the content region, country code and instance region from the geolocation, if the user is not hitting a region prefixed route.
|
|
20
|
+
|
|
21
|
+
- Remove `noindex` tag from template when accessing `/series` route
|
|
22
|
+
- Update robots.txt to allow crawlers to traverse the `/series` route
|
|
23
|
+
- Implements GROW-10
|
|
24
|
+
|
|
25
|
+
- Updated `GetGoogleAnalyticsProjectId` to only restrict GA to the UK
|
|
26
|
+
- This change not only opens up to AU, but also to public pages where we don't know the instance region.
|
|
27
|
+
- Implements GROW-9
|
|
28
|
+
|
|
29
|
+
- Use `ClickView.Clients.Player` instead of a local version
|
|
30
|
+
|
|
31
|
+
- Minor update on new illustration.
|
|
32
|
+
|
|
33
|
+
Fixing .gitlab-ci invalid yaml that caused failed piplenes and not triggering any tests. Happened because i tweaked it earlier to bypass a failed MR to push a hotfix.
|
|
34
|
+
|
|
35
|
+
- Add new image for onboarding product tips
|
|
36
|
+
|
|
37
|
+
- Onboarding copy is now regionalised for US users. Implements LTE-2211
|
|
38
|
+
|
|
39
|
+
- Add new illos and remove old illos.
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
# Testing
|
|
43
|
+
|
|
44
|
+
- https://clickview.atlassian.net/browse/GROW-10
|
|
45
|
+
|
|
46
|
+
- https://clickview.atlassian.net/browse/GROW-9
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
- Fixes LTE-2319
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
- Implements LTE-2211
|
|
54
|
+
|
|
55
|
+
- Implements LTE-2277
|
|
56
|
+
|
|
57
|
+
- Fixes INBOX-5631
|
|
58
|
+
|
|
59
|
+
- n/a
|
|
60
|
+
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
|
|
2
|
+
# Code changes
|
|
3
|
+
- Upgrade project to .NET8.0. Closes CORE-1372
|
|
4
|
+
- Add `Directory.Build.props` to manage net version
|
|
5
|
+
- Update all packages to latest
|
|
6
|
+
- Replace `o.SecurityTokenValidators` logic with `MapInboundClaims`
|
|
7
|
+
- Replace `AddAuthorization` with `AddAuthorizationBuilder`
|
|
8
|
+
- Replace `ISystemClock` with `TimeProvider`
|
|
9
|
+
|
|
10
|
+
- Cascade delete the follow assocs (part of INBOX-5213):
|
|
11
|
+
- Video -> Glance
|
|
12
|
+
- Video -> PointOfInterest
|
|
13
|
+
- Video -> Field
|
|
14
|
+
- Clip -> Glance
|
|
15
|
+
- Clip -> PointOfInterest
|
|
16
|
+
|
|
17
|
+
- Cascade delete the follow assocs (part of INBOX-5213):
|
|
18
|
+
- Playlist -> Resource
|
|
19
|
+
- Video -> Resource
|
|
20
|
+
- Video -> Link
|
|
21
|
+
- Clip -> Resource
|
|
22
|
+
- Clip -> Link
|
|
23
|
+
- Company -> Link
|
|
24
|
+
- Person -> Link
|
|
25
|
+
- Resource -> File
|
|
26
|
+
|
|
27
|
+
- Cascade delete the follow assocs (part of INBOX-5213):
|
|
28
|
+
- Playlist -> Thumbnail
|
|
29
|
+
- Playlist -> Banner
|
|
30
|
+
- Playlist -> Cover
|
|
31
|
+
- Video -> Thumbnail
|
|
32
|
+
- Video -> Poster
|
|
33
|
+
- Video -> TallPoster
|
|
34
|
+
- Video -> HeroBanner
|
|
35
|
+
- Clip -> Thumbnail
|
|
36
|
+
- Interactive -> Thumbnail
|
|
37
|
+
- Series -> Banner
|
|
38
|
+
- Series -> Thumbnail
|
|
39
|
+
- Series -> Poster
|
|
40
|
+
- Series -> TallPoster
|
|
41
|
+
- Season -> Thumbnail
|
|
42
|
+
- Season -> Poster
|
|
43
|
+
- Season -> TallPoster
|
|
44
|
+
- Company -> Banner
|
|
45
|
+
- Company -> Logo
|
|
46
|
+
- Category -> Thumbnail
|
|
47
|
+
- Category -> Banner
|
|
48
|
+
- Resource -> ResourceThumbnail
|
|
49
|
+
- Link -> ResourceThumbnail
|
|
50
|
+
- User -> Avatar
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
# Testing
|
|
54
|
+
- CORE-1372
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
|
|
2
|
+
# Dependencies
|
|
3
|
+
- https://gitlab.cvinternal.net/clickview/front-end/clickview/-/merge_requests/3757
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
# Code changes
|
|
7
|
+
- Add new illos and remove old illos.
|
|
8
|
+
|
|
9
|
+
- Removed references to job titles in the form views for activating a trial sign up or trial invitation. Implements CORE-1322
|
|
10
|
+
|
|
11
|
+
- Update password has iteration count from 10k to 100k. Closes INBOX-5422
|
|
12
|
+
- Increases the strength of our hashing
|
|
13
|
+
- Keep an eye on cpu usage as this will use more now
|
|
14
|
+
- Note: This won't upgrade existing hashes until passwords are reset
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
# Testing
|
|
18
|
+
- Implements LTE-2277
|
|
19
|
+
|
|
20
|
+
- Implements CORE-1322
|
|
21
|
+
|
|
22
|
+
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
|
|
2
|
+
# Code changes
|
|
3
|
+
* Added customer permission to clip and interactive. Fixes INBOX-5928
|
|
4
|
+
|
|
5
|
+
- The video derived permissions check will now fetch the parent video/clip of an interactive or clip if the user is a Curator. This is so that Curator's can create clips / interactives on draft parents in the content pipeline. Fixes INBOX-5728
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
# Testing
|
|
9
|
+
Fixes INBOX-5928
|
|
10
|
+
|
|
11
|
+
- Fixes INBOX-5728
|
|
12
|
+
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
|
|
2
|
+
# Code changes
|
|
3
|
+
- Refactor `UserUpdateEventHandler` to be more readable
|
|
4
|
+
- Populate the following fields to Braze when a user is associated to a customer, updates their name or updates their email address:
|
|
5
|
+
- `first_name`
|
|
6
|
+
- `last_name`
|
|
7
|
+
- `master_id`
|
|
8
|
+
|
|
9
|
+
- Don't clear cvc_id and master_id Braze attributes when setting product_type. Fixes INBOX-5805
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
# Testing
|
|
13
|
+
|
|
14
|
+
|