@clickview/ship-it 0.0.52 → 0.0.54-dev.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.
Files changed (56) hide show
  1. package/Dockerfile +1 -3
  2. package/dist/P3/Account.Api.md +20 -0
  3. package/dist/P3/Analytics Web.md +13 -0
  4. package/dist/P3/Batch.Api.md +25 -0
  5. package/dist/P3/Classroom.Api.md +21 -0
  6. package/dist/P3/ClickView Online.md +18 -0
  7. package/dist/P3/ClickView.Cron.JobProcessor.md +28 -0
  8. package/dist/P3/ClickView.Curator.md +39 -0
  9. package/dist/P3/Clients.md +31 -0
  10. package/dist/P3/Collection.Api.md +28 -0
  11. package/dist/P3/Discover.Api.md +23 -0
  12. package/dist/P3/Domain.Api.md +36 -0
  13. package/dist/P3/Exchange.Web.md +6 -0
  14. package/dist/P3/File.Api.IngestService.md +38 -0
  15. package/dist/P3/File.Api.md +26 -0
  16. package/dist/P3/FileGenerator.md +14 -0
  17. package/dist/P3/Hydration.App.md +20 -0
  18. package/dist/P3/Integrations.Api.md +68 -0
  19. package/dist/P3/Krakend.md +29 -0
  20. package/dist/P3/LeadQualifier.App.md +19 -0
  21. package/dist/P3/Library Editor.md +14 -0
  22. package/dist/P3/Library.Api.md +29 -0
  23. package/dist/P3/Lite.md +6 -0
  24. package/dist/P3/LocalCache.Api.md +22 -0
  25. package/dist/P3/LoginAnalytics.Api.md +20 -0
  26. package/dist/P3/Master.Api.md +13 -0
  27. package/dist/P3/Master.Auth.md +28 -0
  28. package/dist/P3/Objects.Api.md +27 -0
  29. package/dist/P3/Permissions.Api.md +23 -0
  30. package/dist/P3/Release Notes.md +1196 -0
  31. package/dist/P3/Search.Api.md +14 -0
  32. package/dist/P3/Share.Api.md +16 -0
  33. package/dist/P3/StreamableLearning.Web.md +6 -0
  34. package/dist/P3/Subjects.API.md +13 -0
  35. package/dist/P3/Tools.md +13 -0
  36. package/dist/P3/Tv.Web.md +35 -0
  37. package/dist/P3/TvConversion.App.md +14 -0
  38. package/dist/P3/TvRecording.App.md +18 -0
  39. package/dist/P3/TvSplice.App.md +14 -0
  40. package/dist/P3/Users.Api.md +46 -0
  41. package/dist/P3/VideoCollections.Api.md +6 -0
  42. package/dist/P3/VideoViews.Api.md +29 -0
  43. package/dist/P3/WorkspaceSplice.App.md +14 -0
  44. package/dist/P3/clickview.md +130 -0
  45. package/dist/P3/index.app.md +58 -0
  46. package/dist/V1/V1 Notes Audit.csv +53 -0
  47. package/dist/W2/W2 Notes Audit.csv +0 -14
  48. package/lib/src/api-clients/slack/SlackApiClient.js +16 -20
  49. package/lib/src/api-clients/team-city/TeamCityApiClient.js +35 -21
  50. package/lib/src/index.js +0 -0
  51. package/lib/src/tasks/InstallPackagesTask.js +183 -57
  52. package/package.json +4 -6
  53. package/.claude/settings.local.json +0 -10
  54. package/dist/P3/P3 Notes Audit.csv +0 -49
  55. package/dist/R1/R1 Notes Audit.csv +0 -117
  56. package/dist/S3/S3 Notes Audit.csv +0 -13
@@ -0,0 +1,1196 @@
1
+
2
+ # Analytics Web
3
+
4
+ ## Code Changes
5
+ - Adding scopes for subjects api
6
+
7
+
8
+ ## Testing
9
+
10
+
11
+ ## Merge Request Checklist
12
+ - [ ] QA validation is completed.
13
+ - [ ] All dependencies have been addressed.
14
+ - [ ] All before release tasks have been completed.
15
+ - [ ] All after release tasks are ready to be completed.
16
+
17
+ # Hydration.App
18
+
19
+ ## Before Release
20
+
21
+ ### Tasks
22
+ * [x] Update octo variable and add in shared variable set
23
+
24
+
25
+ ## Code Changes
26
+ * Queue updates. Implements INBOX-9146
27
+
28
+
29
+ ## Testing
30
+ INBOX-9146
31
+
32
+
33
+ ## Merge Request Checklist
34
+ - [ ] QA validation is completed.
35
+ - [ ] All dependencies have been addressed.
36
+ - [ ] All before release tasks have been completed.
37
+ - [ ] All after release tasks are ready to be completed.
38
+
39
+ # index.app
40
+
41
+ ## Before Release
42
+
43
+ ### Tasks
44
+ * [ ] Update Elastic customer mapping
45
+ ```
46
+ [PUT] customer/_mapping
47
+ {
48
+ "properties": {
49
+ "dateCreated": {
50
+ "type": "date"
51
+ }
52
+ }
53
+ }
54
+ ```
55
+ * [ ] Update Elastic User mapping
56
+ ```
57
+ [PUT] user/_mapping
58
+ {
59
+ "properties": {
60
+ "dateCreated": {
61
+ "type": "date"
62
+ }
63
+ }
64
+ }
65
+ ```
66
+ * [ ] Update Elastic Organisation mapping
67
+ ```
68
+ [PUT] organisation/_mapping
69
+ {
70
+ "properties": {
71
+ "dateCreated": {
72
+ "type": "date"
73
+ }
74
+ }
75
+ }
76
+ ```
77
+
78
+
79
+ ## After Release
80
+
81
+ ### Tasks
82
+ * [ ] Reindex Users, Customers and Organisations
83
+
84
+
85
+ ## Code Changes
86
+ * Index `dateCreated` for master user, customer and organisation
87
+
88
+
89
+ ## Testing
90
+ * CORE-2025
91
+
92
+
93
+ ## Merge Request Checklist
94
+ - [ ] QA validation is completed.
95
+ - [ ] All dependencies have been addressed.
96
+ - [ ] All before release tasks have been completed.
97
+ - [ ] All after release tasks are ready to be completed.
98
+
99
+ # VideoCollections.Api
100
+
101
+ ## Merge Request Checklist
102
+ - [ ] QA validation is completed.
103
+ - [ ] All dependencies have been addressed.
104
+ - [ ] All before release tasks have been completed.
105
+ - [ ] All after release tasks are ready to be completed.
106
+
107
+ # Batch.Api
108
+
109
+ ## Before Release
110
+
111
+ ### Tasks
112
+ * [ ] Add `RabbitMq-Shared` variable set in Octo
113
+
114
+
115
+ ## Code Changes
116
+ * Support TLS connection for rabbitmq. Closes CORE-2033
117
+ * Set `EnableSsl=true` and `IgnoreSslErrors=true` in `RabbitMqClientOptions` and `JobPriorityQueueEventHostedServiceOptions`
118
+
119
+ - Ignore blank attribute values for marketing profile imports. Implements INBOX-9140
120
+
121
+
122
+ ## Testing
123
+ * CORE-2033
124
+
125
+ - INBOX-9140
126
+
127
+
128
+ ## Merge Request Checklist
129
+ - [ ] QA validation is completed.
130
+ - [ ] All dependencies have been addressed.
131
+ - [ ] All before release tasks have been completed.
132
+ - [ ] All after release tasks are ready to be completed.
133
+
134
+ # clickview
135
+
136
+ ## Deploy Dependencies
137
+
138
+ ### other
139
+ * https://gitlab.cvinternal.net/clickview/front-end/integrations.api/-/merge_requests/219
140
+
141
+ ## Before Release
142
+
143
+ ### Tasks
144
+ - [ ] Ensure this article has been published: https://support.clickvieweducation.com/hc/articles/48276917260441
145
+
146
+
147
+ ### SQL
148
+ Need to run the SQL below to create a collection api client for cv marketing website. - (by @prad)
149
+ ```sql
150
+ insert into cv_collection.authentication (`ClientId`, `ClientSecret`, `Scopes`, `DateCreated`, `Deleted`)
151
+ values ('cv_marketing', 'zXJL9nOHxzDlMUDjiP41', 'collectionapi.collect', UTC_TIMESTAMP, 0);
152
+ ```
153
+
154
+
155
+ ## After Release
156
+
157
+ ### Tasks
158
+ * [ ] Update `@clickview/analytics` package in marketing website - (notify @nish)
159
+
160
+
161
+ ## Analytics
162
+
163
+ ### Code Changes
164
+ * Ability to export third party consumable typescript npm package.
165
+ * `ProfileApiClient` handles `attributedProfileId` for when its passed from `r` value. Partially Implements INBOX-9260.
166
+ * Update `ClientOptions` interface align more towards `CollectionApiClientOptions` .
167
+
168
+ ## Curator
169
+
170
+ ### Code Changes
171
+ * Fix an issue in the curriculum selector in Curator video curricumn page.
172
+ * Add Organisation type to the domain option entity.
173
+ * In CRM studio Organisation tabs, added a `Feature Flags` page to show Organisation domain option (We only have one feature flag type domain option now)
174
+
175
+ ### Customer Changes
176
+ * If a user is a Super Admin, it should display a badge to differentiate from an Admin. For AU/UK it's called `Org Admin`, for US it's `District Admin`.
177
+ ![Screenshot 2025-06-17 at 1.21.43 pm.png](/uploads/fecf7e3c85fe2ef60b7f65125899728c/Screenshot_2025-06-17_at_1.21.43_pm.png)
178
+ ![image.png](/uploads/88184f5bb5396dd4b87938780c9d1aba/image.png)
179
+ - In the Points of Interest form in the content pipeline, if you manually add/edit a POI and accidentally click on the "X", you are shown a warning then asked to click X again before actually closing the form.
180
+
181
+ ## Exchange
182
+
183
+ ### Code Changes
184
+ - Fixing issues that were preventing TV from working in the NZ region.
185
+
186
+ ## Lite
187
+
188
+ ### Code Changes
189
+ - Hardcoded IDs for the tigtag and twig hubs so they're hidden on Discover to customers without the libraries.
190
+ * Replaced rostering setting with organisation rostering setting
191
+ * Remove empty rostering status for super admin when there is a district-controlled rostering.
192
+ - Pincode route now auto submits
193
+ - Fixed pincode route not being public
194
+ - Fixed an issue causing an applink to appear in the query params
195
+ - Updating the pincode consumption to use product images on the left
196
+ * Remove feature flag checks to enable new search for public access. Implements LTE-3151.
197
+ * Use attributed profile id if it exists.
198
+
199
+ ### Customer Changes
200
+ - Added a link to our KB article about exporting libraries to the export libraries settings page.
201
+ - When selecting the `MARC 21 V2` or `MARC XML` library export formats. Admins can now additionally select from which date they would like the export to start from. Implements INBOX-9351.
202
+
203
+ ![image](/uploads/c2a21befd2de8a2dd44e73a59a5a81e3/image.png)
204
+ * Enable new search for public access.
205
+ - In the Curator user manager, a super admin account can be created and edited:
206
+
207
+ ![Screenshot_2025-06-19_at_8.52.00_am](/uploads/17b00c4d068880871d9b51d37509f076/Screenshot_2025-06-19_at_8.52.00_am.png)
208
+
209
+ ![image](/uploads/ac959cb3cf188747ba2a2c97c353ad1b/image.png)
210
+ - For a Super Admin account, they can create/edit another Super Admin staff account:
211
+ ![image](/uploads/9f8cc51ec6f3fe707c804be1b73ca19a/image.png)
212
+ - For an ordinary Admin, they cannot create/edit a Super Admin staff:
213
+ ![image](/uploads/0ca0a42ca33357e65bdecd55ccad1f4b/image.png)
214
+ - In Lite, a non-super admin cannot update a super admin account (edit, deactivate, remove etc.)
215
+ ![image](/uploads/3c5ff12844f1adc13ae6288b13bbf4ba/image.png)
216
+ * If a user is a Super Admin, it should display a badge to differentiate from an Admin. For AU/UK it's called `Org Admin`, for US it's `District Admin`.
217
+ ![Screenshot 2025-06-17 at 1.21.43 pm.png](/uploads/fecf7e3c85fe2ef60b7f65125899728c/Screenshot_2025-06-17_at_1.21.43_pm.png)
218
+ ![image.png](/uploads/88184f5bb5396dd4b87938780c9d1aba/image.png)
219
+ - Fix an issue where the images start to overflow the containers on the login page.
220
+ ![image](/uploads/497a18019f0c54853c51c8d5ce7b1cf4/image.png)
221
+
222
+ ## Player
223
+
224
+ ### Customer Changes
225
+ - Fixed a bug where captions wouldn't reposition when toggling between theatre mode and default mode. Fixes INBOX-9276.
226
+ - The player now provides the option for the video to be looped. Note: Turning on play next video will turn off loop video, and vice versa. Implements PLAY-243.
227
+
228
+ ![image](/uploads/a3302899794ec21a1fd5d924c7b9a4d8/image.png)
229
+ - Fix the casing of the player's menu items.
230
+ - The player will now indicate if captions and theatre mode are switched on. Implements INBOX-8757.
231
+
232
+ ![image](/uploads/7a3b9cd1fa69ee27723e153d8ea5c3cc/image.png)
233
+
234
+ ### Code Changes
235
+ - Bumping `@clickview/player-font` with changes to the CC and Theatre mode icons, as they were off center by 1 px. Fixes INBOX-9275. Fixes INBOX-9277.
236
+
237
+ ## Shared
238
+
239
+ ### Code Changes
240
+ - Extracted the tiles from the bulk actions, so they may be used for other forms.
241
+ - Added a `formatToISODate` helper to our date helper
242
+ - Added the Job Titles for the NZ product.
243
+
244
+ ## Testing
245
+
246
+ ### other
247
+ - Implements INBOX-9351.
248
+ * n/a
249
+ * Implements LTE-3151.
250
+ * Fixes INBOX-9310
251
+ - n/a
252
+ - Implemented RELEASE-1183
253
+ * Implemented CC-1268
254
+ * Partially Implements INBOX-9260.
255
+ - Implements PLAY-243.
256
+ - Implements INBOX-9178
257
+ - Implements INBOX-8757.
258
+ - Fixes INBOX-8917
259
+
260
+ ## Merge Request Checklist
261
+ - [ ] QA validation is completed.
262
+ - [ ] All dependencies have been addressed.
263
+ - [ ] All before release tasks have been completed.
264
+ - [ ] All after release tasks are ready to be completed.
265
+
266
+ # LeadQualifier.App
267
+
268
+ ## Code Changes
269
+ * Update decision maker logic as detailed in the ticket. Implements [INBOX-9034](https://clickview.atlassian.net/browse/INBOX-9034)
270
+
271
+ * Update `Snowflake.Data` to latest version
272
+
273
+ - Register the `SalesQualifiedLeadDiscoveryClassifier` in DI against the `IProductLifecycleStageClassifier` and `IMarketingLifecycleStageClassifier`
274
+
275
+
276
+ ## Testing
277
+
278
+
279
+
280
+
281
+ ## Merge Request Checklist
282
+ - [ ] QA validation is completed.
283
+ - [ ] All dependencies have been addressed.
284
+ - [ ] All before release tasks have been completed.
285
+ - [ ] All after release tasks are ready to be completed.
286
+
287
+ # ClickView Online
288
+
289
+ ## Code Changes
290
+ * Update references to `collection-api-client.js` to `app.js`
291
+
292
+ * Update entrypoint file for `@clickview/analytics`. Partially Implements INBOX-9260.
293
+
294
+
295
+ ## Testing
296
+ * N/A
297
+
298
+ * N/A
299
+
300
+
301
+ ## Merge Request Checklist
302
+ - [ ] QA validation is completed.
303
+ - [ ] All dependencies have been addressed.
304
+ - [ ] All before release tasks have been completed.
305
+ - [ ] All after release tasks are ready to be completed.
306
+
307
+ # Clients
308
+
309
+ ## ClickView.Clients.Domain
310
+
311
+ ### Code Changes
312
+ - Added a method to Domain API to retrieve a pending review summary for interactive
313
+
314
+ ## ClickView.Clients.Share
315
+
316
+ ### Code Changes
317
+ - Implemented a client for Share API (retrieving the pincode on a share)
318
+
319
+ ## ClickView.Clients.VideoViews
320
+
321
+ ### Code Changes
322
+ - Implemented a client for Video Views API (retrieving user engagement).
323
+
324
+ ## monorepo
325
+
326
+ ### Code Changes
327
+ - Added new subprojects to ship-it config so MR description using new subprojects can be validated
328
+
329
+ ## Testing
330
+
331
+ ### other
332
+ - n/a
333
+
334
+ ## Merge Request Checklist
335
+ - [ ] QA validation is completed.
336
+ - [ ] All dependencies have been addressed.
337
+ - [ ] All before release tasks have been completed.
338
+ - [ ] All after release tasks are ready to be completed.
339
+
340
+ # ClickView.Curator
341
+
342
+ ## Before Release
343
+
344
+ ### Tasks
345
+ * [ ] Add `RabbitMq-Shared` variable set in Octo
346
+ * [ ] Rename octo variables:
347
+ * `eventQueue:username` to `queue:username`
348
+ * `eventQueue:password` to `queue:password`
349
+ * `eventQueue:discoverQueue` to `queue:discoverQueue`
350
+ * `eventQueue:masterQueue` to `queue:masterQueue`
351
+ * `eventQueue:subjectsQueue` to `queue:subjectsQueue`
352
+ * [ ] Remove octo variables:
353
+ * `eventQueue:host`
354
+ * `eventQueue:port`
355
+
356
+
357
+ ## Code Changes
358
+ * Replace `ClickView.Clients.Queue` with `ClickView.GoodStuff.Queues.RabbitMq` according to [the guide](https://clickview.quip.com/nlFMAsSqxeaU/2024-05-RabbitMQ-Upgrade)
359
+ * Change the queues port from 5672 to 5671
360
+ * In the RabbitMQ client options, set EnableSsl=true and IgnoreSslErrors=true. Implements INBOX-9149
361
+
362
+ * Updated file client to latest
363
+
364
+ * Moves the `GetDescription` extension method to use the common property to ensure the correct description is retrieved for videos in reports. Fixes INBOX-9253
365
+ * Removes duplicate description definitions.
366
+
367
+
368
+ ## Testing
369
+ INBOX-9149
370
+
371
+
372
+ INBOX-9253
373
+
374
+
375
+ ## Merge Request Checklist
376
+ - [ ] QA validation is completed.
377
+ - [ ] All dependencies have been addressed.
378
+ - [ ] All before release tasks have been completed.
379
+ - [ ] All after release tasks are ready to be completed.
380
+
381
+ # Domain.Api
382
+
383
+ ## Before Release
384
+
385
+ ### Tasks
386
+ * [ ] Call `POST https://api-domain.clickviewapp.com/v3/settings/types` with the body below to create a new domain option type for organisation
387
+ ```
388
+ {
389
+ "name": "has_enabled_rostering",
390
+ "displayName": "Has enabled rostering",
391
+ "type": "System.Boolean",
392
+ "entityType": 28,
393
+ "defaultValue": "false",
394
+ "kind": 1
395
+ }
396
+ ```
397
+
398
+
399
+ ## Code Changes
400
+ * Update `ClickView.Clients.Queue` to the latest version
401
+ * Update configs changing the rabbitmq port from 5672 to 5671.
402
+ Implements INBOX-9149
403
+
404
+ * Added organisation entity type support for `GET v4/settings/{entityId}` endpoint so that the front end can fetch the organisation domain settings. Closes CORE-2037
405
+
406
+
407
+ ## Testing
408
+ INBOX-9149
409
+
410
+ * CORE-2037
411
+
412
+
413
+ ## Merge Request Checklist
414
+ - [ ] QA validation is completed.
415
+ - [ ] All dependencies have been addressed.
416
+ - [ ] All before release tasks have been completed.
417
+ - [ ] All after release tasks are ready to be completed.
418
+
419
+ # Collection.Api
420
+
421
+ ## Before Release
422
+
423
+ ### Tasks
424
+ Run the following sql:
425
+ ```
426
+ insert into cv_collection.event_exchange_mappings (EventType, Exchange, DateCreated)
427
+ values
428
+ ('cv_product_submit', 'cv_product_all', UTC_TIMESTAMP()),
429
+ ('cv_product_create', 'cv_product_all', UTC_TIMESTAMP()),
430
+ ('cv_product_stream', 'cv_product_all', UTC_TIMESTAMP());
431
+ ```
432
+ > Actually, does this mapping need to be created before the release? I'm assuming that once we deploy collection api - the exchange mappings will be cached straight away, so if the mappings above are not there at startup time, the `cv_product_all` exchange will never receive the events..
433
+
434
+
435
+ ## Code Changes
436
+ - Updated the RepositoryCacheService to cache exchange mappings as a grouped list rather than a dictionary. This is to allow multiple exchanges to receive the same event (e.g. `cv_product_stream`).
437
+
438
+
439
+ ## Testing
440
+ - n/a
441
+
442
+
443
+ ## Merge Request Checklist
444
+ - [ ] QA validation is completed.
445
+ - [ ] All dependencies have been addressed.
446
+ - [ ] All before release tasks have been completed.
447
+ - [ ] All after release tasks are ready to be completed.
448
+
449
+ # Permissions.Api
450
+
451
+ ## Before Release
452
+
453
+ ### Tasks
454
+ * [ ] Add `RabbitMq-Shared` variable set in Octo
455
+
456
+
457
+ ## Code Changes
458
+ * Nuget packages update
459
+ * Replace `ClickView.Clients.Queue` with `ClickView.GoodStuff.Queues.RabbitMq` according to [the guide](https://clickview.quip.com/nlFMAsSqxeaU/2024-05-RabbitMQ-Upgrade)
460
+ * Change the queues port from 5672 to 5671
461
+ * In the RabbitMQ client options, set EnableSsl=true and IgnoreSslErrors=true. Implements INBOX-9149
462
+
463
+
464
+ ## Testing
465
+ INBOX-9149
466
+
467
+
468
+ ## Merge Request Checklist
469
+ - [ ] QA validation is completed.
470
+ - [ ] All dependencies have been addressed.
471
+ - [ ] All before release tasks have been completed.
472
+ - [ ] All after release tasks are ready to be completed.
473
+
474
+ # Master.Api
475
+
476
+ ## Code Changes
477
+ - Added `TemplateType` and `AutoGenerated` to `ResourceMetadata`
478
+
479
+
480
+ ## Testing
481
+
482
+
483
+ ## Merge Request Checklist
484
+ - [ ] QA validation is completed.
485
+ - [ ] All dependencies have been addressed.
486
+ - [ ] All before release tasks have been completed.
487
+ - [ ] All after release tasks are ready to be completed.
488
+
489
+ # Integrations.Api
490
+
491
+ ## Before Release
492
+
493
+ ### Tasks
494
+ * [ ] Add `RabbitMq-Shared` variable set in Octo
495
+ * [ ] Rename octo variables:
496
+ * `rabbitmq:username` to `queue:username`
497
+ * `rabbitmq:password` to `queue:password`
498
+ * `rabbitmq:discoverQueue` to `queue:discoverQueue`
499
+ * `rabbitmq:masterQueue` to `queue:masterQueue`
500
+
501
+ * [ ] Rename `next.sql` with release version
502
+ * [ ] Run `<release>.sql`
503
+ * [ ] Run `010-add-resource-template-rules.sql`
504
+
505
+
506
+ ### SQL
507
+ ```
508
+ CREATE TABLE `resource_template_rules` (
509
+ `ResourceTemplateId` VARCHAR(255) NOT NULL,
510
+ `SuitabilityRule` TEXT,
511
+ `DateCreated` DATETIME NOT NULL,
512
+ `DateModified` DATETIME DEFAULT NULL,
513
+ `DateDeleted` DATETIME DEFAULT NULL,
514
+ `Deleted` BIT NOT NULL DEFAULT b'0',
515
+ PRIMARY KEY (`ResourceTemplateId`),
516
+ FOREIGN KEY (`ResourceTemplateId`) REFERENCES `resource_templates`(`Id`)
517
+ );
518
+ ALTER TABLE `resource_template_columns`
519
+ DROP FOREIGN KEY `fk_resourcetemplateid_resourcetemplates_id`;
520
+ ALTER TABLE `resource_template_columns`
521
+ MODIFY `ResourceTemplateId` VARCHAR(255) NOT NULL;
522
+ ALTER TABLE `resource_templates`
523
+ MODIFY `Id` VARCHAR(255) NOT NULL;
524
+ ALTER TABLE `resource_template_columns`
525
+ ADD CONSTRAINT `fk_resourcetemplateid_resourcetemplates_id`
526
+ FOREIGN KEY (`ResourceTemplateId`) REFERENCES `resource_templates` (`Id`);
527
+ ```
528
+
529
+
530
+ ## Code Changes
531
+ * Nuget packages update
532
+ * Replace `ClickView.Clients.Queue` with `ClickView.GoodStuff.Queues.RabbitMq` according to [the guide](https://clickview.quip.com/nlFMAsSqxeaU/2024-05-RabbitMQ-Upgrade)
533
+ * Change the queues port from 5672 to 5671
534
+ * In the RabbitMQ client options, set EnableSsl=true and IgnoreSslErrors=true. Implements INBOX-9149
535
+
536
+ * Change resource template Id to string, so we can use a more readable lower-snake case as IDs
537
+ * Resource prompts refinement
538
+ * Added IsMovieAndTv identification in the video resource prompt
539
+ * Add series name to resource CSV files
540
+ * Add evaluator for AI resource generator
541
+ * Added endpoint to get resource template suggestions for a video.
542
+
543
+ * Update `GET api/v1/rostering/integrations/current-user` endpoint to return integration for customer’s organisation
544
+
545
+
546
+ ## Testing
547
+ INBOX-9149
548
+
549
+
550
+ * CORE-2028
551
+
552
+
553
+ ## Merge Request Checklist
554
+ - [ ] QA validation is completed.
555
+ - [ ] All dependencies have been addressed.
556
+ - [ ] All before release tasks have been completed.
557
+ - [ ] All after release tasks are ready to be completed.
558
+
559
+ # Krakend
560
+
561
+ ## Deploy Dependencies
562
+ * https://gitlab.cvinternal.net/clickview/back-end/library.api/-/merge_requests/174
563
+
564
+ - https://gitlab.cvinternal.net/clickview/back-end/Domain.Api/-/merge_requests/1216
565
+
566
+ * https://gitlab.cvinternal.net/clickview/back-end/users.api/-/merge_requests/357
567
+
568
+
569
+ ## Code Changes
570
+ * Add `POST v2/libraries/export` endpoint to support incremental library export. Closes CORE-2045
571
+
572
+ - Added an endpoint to fetch organisation settings.
573
+
574
+ * Add a new endpoint `PUT /v1/users/me/profile` to allow user to update their own basic info, like first name, last name and display name. Closes CORE-2015
575
+
576
+
577
+ ## Testing
578
+ * CORE-2045
579
+
580
+ - n/a
581
+
582
+
583
+
584
+ ## Merge Request Checklist
585
+ - [ ] QA validation is completed.
586
+ - [ ] All dependencies have been addressed.
587
+ - [ ] All before release tasks have been completed.
588
+ - [ ] All after release tasks are ready to be completed.
589
+
590
+ # Library.Api
591
+
592
+ ## Before Release
593
+
594
+ ### Tasks
595
+ * [ ] Add `RabbitMq-Shared` variable set in Octo
596
+
597
+
598
+ ## Code Changes
599
+ * Add a v2 endpoint `POST v2/libraries/export` to export library with incremental support. Closes CORE-2043
600
+
601
+ * Support TLS connection for rabbitmq. Closes CORE-2036
602
+ * Update `ClickView.GoodStuff.EventHandling.Master` to `0.12.0` or above which is default to ssl connection for rabbitmq
603
+ * Update `ClickView.Clients.Notification` to `2.54.0` or above which has already had ignore ssl error turned on
604
+ * Update `ClickView.Clients.FileGenerator` to `2.54.0` or above which has already had ignore ssl error turned on
605
+ * Set `EnableSsl = true` for both notification and file generator client
606
+ * Update `NotificationService` to adapt to the changes made in the latest `ClickView.Clients.Notification` nuget
607
+
608
+
609
+ ## Testing
610
+ * CORE-2043
611
+
612
+ * CORE-2036
613
+
614
+
615
+ ## Merge Request Checklist
616
+ - [ ] QA validation is completed.
617
+ - [ ] All dependencies have been addressed.
618
+ - [ ] All before release tasks have been completed.
619
+ - [ ] All after release tasks are ready to be completed.
620
+
621
+ # Discover.Api
622
+
623
+ ## Before Release
624
+
625
+ ### Tasks
626
+ - [ ] Add `RabbitMq-Shared` variable set in Octo
627
+
628
+
629
+ ## Code Changes
630
+ - Nuget packages update
631
+ - Replace `ClickView.Clients.Queue` with `ClickView.GoodStuff.Queues.RabbitMq` according to [the guide](https://clickview.quip.com/nlFMAsSqxeaU/2024-05-RabbitMQ-Upgrade)
632
+ - Change the queues port from 5672 to 5671
633
+ - In the RabbitMQ client options, set EnableSsl=true and IgnoreSslErrors=true. Implements INBOX-9149
634
+
635
+
636
+ ## Testing
637
+ INBOX-9149
638
+
639
+
640
+ ## Merge Request Checklist
641
+ - [ ] QA validation is completed.
642
+ - [ ] All dependencies have been addressed.
643
+ - [ ] All before release tasks have been completed.
644
+ - [ ] All after release tasks are ready to be completed.
645
+
646
+ # VideoViews.Api
647
+
648
+ ## Before Release
649
+
650
+ ### Tasks
651
+ * [x] Update octo variable and add in shared variable set
652
+
653
+
654
+ ## Code Changes
655
+ * When there is a stream record but no heatmap data, shows the heatmap row in the UI with accurate view count and empty heatmap progress bar.
656
+
657
+ * Adds raw stream retrieval endpoint
658
+ * Implements a new endpoint for retrieving raw stream data based on customer, user, and group IDs within a specified date range. It fetches streams from the repository, enriches them with metadata, and maps them to a simplified raw view model.
659
+
660
+ * Queue updates. Partially implements INBOX-9146
661
+ * Updates ClickView client libraries and hosting queue package to their latest versions.
662
+ * Updates the RabbitMQ connection port in appsettings.json to the correct value.
663
+
664
+
665
+ ## Testing
666
+
667
+
668
+ INBOX-9146
669
+
670
+
671
+ ## Merge Request Checklist
672
+ - [ ] QA validation is completed.
673
+ - [ ] All dependencies have been addressed.
674
+ - [ ] All before release tasks have been completed.
675
+ - [ ] All after release tasks are ready to be completed.
676
+
677
+ # Users.Api
678
+
679
+ ## Before Release
680
+
681
+ ### Tasks
682
+ * [ ] Add `RabbitMq-Shared` variable set in Octo
683
+
684
+
685
+ ## Code Changes
686
+ * Support manual super admin account. Closes CORE-2042
687
+ * Update `UserService.UpdateUserAsync()` to allow super admin user to elevate a user account to super admin
688
+ * Update `UserService.CreateUsersInternalAsync()` to allow super admin to create other super admin accounts
689
+ * Move `AddUserToOrganisationAsync` and `RemoveUserFromOrganisationAsync` to `OrganisationService` so they can be shared for both sso and manual account
690
+ * Move `AddUserCustomersAsync()` and `UpdateUserCustomersYearGroupsAndUserProfilesAsync` to `UserProfileService`
691
+ * Some minor code clean up
692
+
693
+ * Support TLS connection for rabbitmq. Closes CORE-2035
694
+ * Update `ClickView.GoodStuff.EventHandling.Master` to `0.12.0` or above which is default to ssl connection for rabbitmq
695
+ * Update `ClickView.Clients.Notification` to `2.54.0` or above which has already had ignore ssl error turned on
696
+ * Update `AutoJoinReceivedNotification` and `JoinRequestReceivedNotification` to adapt to the changes made in the latest `ClickView.Clients.Notification` nuget
697
+
698
+ * Add a new endpoint `PUT v1/users/profile` to allow user to update their own basic info. Closes CORE-2006
699
+ * This allows staff to update their job title (currently there is no UI to allow user to update their job title)
700
+ * Updating job title will be ignored if the user type is not `Staff` (there is no UI to allow student to update their profile currently)
701
+ * Update `UserService.UpdateUserAsync()` to use `ValidatorService` to validate the basic user info and return the following error codes instead of `unknown-error`
702
+ * Return `user-validation-error-first-name-invalid` error code if first name contains invalid characters
703
+ * Return `user-validation-error-surname-invalid` error code if surname contains invalid characters
704
+ * Return `user-validation-error-display-name-invalid` error code if display name contains invalid characters
705
+ * Return `user-validation-error-job-title-name-invalid` error code if job title contains invalid characters
706
+ * Return `user-validation-error-job-title-too-long` error code if job title name exceeds 70 characters
707
+ * Return `user-validation-error-job-title-too-short` error code if job title name is less than 2 characters
708
+ * Remove `InvalidFirstNameException` and `InvalidSurnameException`
709
+
710
+
711
+ ## Testing
712
+ * CORE-2042
713
+
714
+ * CORE-2035
715
+
716
+ * CORE-2006
717
+
718
+
719
+ ## Merge Request Checklist
720
+ - [ ] QA validation is completed.
721
+ - [ ] All dependencies have been addressed.
722
+ - [ ] All before release tasks have been completed.
723
+ - [ ] All after release tasks are ready to be completed.
724
+
725
+ # Share.Api
726
+
727
+ ## Code Changes
728
+ * Making sure that we get the all the data from the db after creating the share
729
+
730
+ * Adds DateCreated to share recipients during migration
731
+
732
+
733
+ ## Testing
734
+
735
+
736
+
737
+ ## Merge Request Checklist
738
+ - [ ] QA validation is completed.
739
+ - [ ] All dependencies have been addressed.
740
+ - [ ] All before release tasks have been completed.
741
+ - [ ] All after release tasks are ready to be completed.
742
+
743
+ # Search.Api
744
+
745
+ ## Code Changes
746
+ * Sort by `dateCreated` for `Customer`, `User` and `Organisation`
747
+
748
+
749
+ ## Testing
750
+ * CORE-2025
751
+
752
+
753
+ ## Merge Request Checklist
754
+ - [ ] QA validation is completed.
755
+ - [ ] All dependencies have been addressed.
756
+ - [ ] All before release tasks have been completed.
757
+ - [ ] All after release tasks are ready to be completed.
758
+
759
+ # Library Editor
760
+
761
+ ## Code Changes
762
+ * Add ClickView CDN to CSP
763
+ * Whitelist LE host
764
+
765
+
766
+ ## Testing
767
+
768
+
769
+ ## Merge Request Checklist
770
+ - [ ] QA validation is completed.
771
+ - [ ] All dependencies have been addressed.
772
+ - [ ] All before release tasks have been completed.
773
+ - [ ] All after release tasks are ready to be completed.
774
+
775
+ # WorkspaceSplice.App
776
+
777
+ ## Code Changes
778
+ * Update queue to use TLS
779
+
780
+
781
+ ## Testing
782
+ * CVTV-258
783
+
784
+
785
+ ## Merge Request Checklist
786
+ - [ ] QA validation is completed.
787
+ - [ ] All dependencies have been addressed.
788
+ - [ ] All before release tasks have been completed.
789
+ - [ ] All after release tasks are ready to be completed.
790
+
791
+ # TvRecording.App
792
+
793
+ ## Code Changes
794
+ * Update queue to use TLS
795
+
796
+ * Record the new `7twoHD Perth` channels
797
+ * Upgrade `ABC News` and `ABC Me` channels to HD
798
+
799
+
800
+ ## Testing
801
+ * CVTV-257
802
+
803
+
804
+
805
+ ## Merge Request Checklist
806
+ - [ ] QA validation is completed.
807
+ - [ ] All dependencies have been addressed.
808
+ - [ ] All before release tasks have been completed.
809
+ - [ ] All after release tasks are ready to be completed.
810
+
811
+ # TvSplice.App
812
+
813
+ ## Code Changes
814
+ * Update queue to use TLS
815
+
816
+
817
+ ## Testing
818
+ * CVTV-256
819
+
820
+
821
+ ## Merge Request Checklist
822
+ - [ ] QA validation is completed.
823
+ - [ ] All dependencies have been addressed.
824
+ - [ ] All before release tasks have been completed.
825
+ - [ ] All after release tasks are ready to be completed.
826
+
827
+ # LocalCache.Api
828
+
829
+ ## Before Release
830
+
831
+ ### Tasks
832
+ * [ ] Add `RabbitMq-Shared` variable set in Octo
833
+
834
+
835
+ ## Code Changes
836
+ * Support TLS connection for rabbitmq. Closes CORE-2040
837
+ * Set `sslConfig` with `Protocol = SslProtocols.None` when instantiating a new RabbitMqClient
838
+ * Note that `ClickView.Clients.Queue` is not replaced with `ClickView.GoodStuff.Queues.RabbitMq` because the local cache api is still targeting .net2.0
839
+
840
+
841
+ ## Testing
842
+ * CORE-2040
843
+
844
+
845
+ ## Merge Request Checklist
846
+ - [ ] QA validation is completed.
847
+ - [ ] All dependencies have been addressed.
848
+ - [ ] All before release tasks have been completed.
849
+ - [ ] All after release tasks are ready to be completed.
850
+
851
+ # Objects.Api
852
+
853
+ ## Before Release
854
+
855
+ ### Tasks
856
+ * [ ] Add `RabbitMq-Shared` variable set in Octo
857
+
858
+
859
+ ## Code Changes
860
+ * Support TLS connection for rabbitmq. Closes CORE-2039
861
+ * Replace `ClickView.Clients.Queue` with `ClickView.GoodStuff.Queues.RabbitMq`
862
+ * Set `EnableSsl = true` and `IgnoreSslErrors = true` for `RabbitMqClientOptions`
863
+ * Update `EventService` to subscribe and unsubscribe from rabbitMq
864
+
865
+ * Fixes a bug where staff restriction wasn't being respected for shared content. Fixes CORE-2026
866
+
867
+
868
+ ## Testing
869
+ * CORE-2039
870
+
871
+ CORE-2026
872
+
873
+
874
+ ## Merge Request Checklist
875
+ - [ ] QA validation is completed.
876
+ - [ ] All dependencies have been addressed.
877
+ - [ ] All before release tasks have been completed.
878
+ - [ ] All after release tasks are ready to be completed.
879
+
880
+ # FileGenerator
881
+
882
+ ## Code Changes
883
+ * Calls the new v2 raw endpoint for anyone who has new share v2 turned on. Implements CORE-2038
884
+
885
+
886
+ ## Testing
887
+ CORE-2038
888
+
889
+
890
+ ## Merge Request Checklist
891
+ - [ ] QA validation is completed.
892
+ - [ ] All dependencies have been addressed.
893
+ - [ ] All before release tasks have been completed.
894
+ - [ ] All after release tasks are ready to be completed.
895
+
896
+ # TvConversion.App
897
+
898
+ ## Code Changes
899
+ * Update queue to use TLS
900
+
901
+
902
+ ## Testing
903
+ * CVTV-255
904
+
905
+
906
+ ## Merge Request Checklist
907
+ - [ ] QA validation is completed.
908
+ - [ ] All dependencies have been addressed.
909
+ - [ ] All before release tasks have been completed.
910
+ - [ ] All after release tasks are ready to be completed.
911
+
912
+ # File.Api.IngestService
913
+
914
+ ## Deploy Dependencies
915
+ * https://gitlab.cvinternal.net/clickview/back-end/File.Api/-/merge_requests/65
916
+
917
+
918
+ ## Before Release
919
+
920
+ ### Tasks
921
+ * [ ] Update `ClickView.FileApi.Models` nuget to `1.15.0` or above
922
+
923
+
924
+ ## Code Changes
925
+ * Update `ClickView.FileApi.Models` that can support utf-8 character. Partially closes INBOX-9210
926
+
927
+ * Detect and validate the MIME type of the file when it is uploaded. Closes INBOX-8745
928
+ * A list of file extensions we currently have in file db can be found at https://clickview.quip.com/YMZfAM4XTCbN/File-Extension-for-Uploads
929
+ * Use `Mime-Detective` third-party nuget to inspect the file signature (i.e. file magic number) of each binary file to determine their MIME type
930
+ * Add the custom file signature definitions that are not included in the default file types of Mime-Detective
931
+ * Consolidate a MIME type whitelist that ClickView allows the user to upload (Just log as warning for now if anything uploaded is not recognized or not included in the whitelist. In the next release, we ill block user from uploading any file that is not whitelisted).
932
+ * Add a `PlainTextDetector` to handle the file that does not have file signature (i.e. plain text without byte order mark)
933
+ * Add a `SbvSubtitleDetector` to handle the sbv subtitle file
934
+ * Code cleanup
935
+ * Convert `UploadService` to primary constructor
936
+ * Remove `DateTimeExtensions`
937
+ * Replace `PartialStreamWrapper` with `StreamHelpers.CopyStreamAsync` so we can peek the first 2K bytes of data for MIME type validation
938
+
939
+
940
+ ## Testing
941
+ * INBOX-9210
942
+
943
+ * INBOX-8745
944
+
945
+
946
+ ## Merge Request Checklist
947
+ - [ ] QA validation is completed.
948
+ - [ ] All dependencies have been addressed.
949
+ - [ ] All before release tasks have been completed.
950
+ - [ ] All after release tasks are ready to be completed.
951
+
952
+ # File.Api
953
+
954
+ ## Before Release
955
+
956
+ ### Tasks
957
+ * [ ] Update `ClickView.FileApi.Models.csproj` to bump the version to release build `1.15.0` and publish it to nuget
958
+
959
+
960
+ ## Customer Changes
961
+ * Fixed an issue where file uploaded with UTF-8 characters file name have these characters stripped when downloading them. Closes INBOX-9210
962
+
963
+
964
+ ## Code Changes
965
+ * Updated `SecureNameRegex` to support UTF-8 characters
966
+ * Sanitize the file name for all 3 upload endpoints
967
+ * Rename the test project from `ClickView.FileApi.Contracts.Tests` to `ClickView.FileApi.Models.Tests`
968
+
969
+
970
+ ## Testing
971
+ * INBOX-9210
972
+
973
+
974
+ ## Merge Request Checklist
975
+ - [ ] QA validation is completed.
976
+ - [ ] All dependencies have been addressed.
977
+ - [ ] All before release tasks have been completed.
978
+ - [ ] All after release tasks are ready to be completed.
979
+
980
+ # Classroom.Api
981
+
982
+ ## Before Release
983
+
984
+ ### Tasks
985
+ * [ ] Add `RabbitMq-Shared` variable set in Octo
986
+
987
+
988
+ ## Code Changes
989
+ * Support TLS connection for rabbitmq. Closes CORE-2034
990
+ * Set `EnableSsl=true` and `IgnoreSslErrors=true` in `AddQueue` for `MasterQueueEventHostedServiceOptions`
991
+
992
+
993
+ ## Testing
994
+ * CORE-2034
995
+
996
+
997
+ ## Merge Request Checklist
998
+ - [ ] QA validation is completed.
999
+ - [ ] All dependencies have been addressed.
1000
+ - [ ] All before release tasks have been completed.
1001
+ - [ ] All after release tasks are ready to be completed.
1002
+
1003
+ # Master.Auth
1004
+
1005
+ ## Before Release
1006
+
1007
+ ### Tasks
1008
+ * [ ] Octopus Deploy
1009
+ * [ ] Add `RabbitMq-Shared` variable set
1010
+ * [ ] Remove `queues:host`
1011
+ * [ ] Remove `queues:port`
1012
+
1013
+
1014
+ ## Code Changes
1015
+ - Remove call to `GetExternalCustomerIdAsync()` in Wonde `GetNewUserDataAsync()` as the passed in model now has the `ExternalCustomerId`. Closes CORE-2027
1016
+ - Remove code related to `GetExternalCustomerIdAsync()` as there are no longer any callers
1017
+
1018
+ - Update rabbitmq to use SSL. Implements [CORE-2044](https://clickview.atlassian.net/browse/CORE-2044)
1019
+
1020
+
1021
+ ## Testing
1022
+ Closes CORE-2027
1023
+
1024
+ * [CORE-2044](https://clickview.atlassian.net/browse/CORE-2044)
1025
+
1026
+
1027
+ ## Merge Request Checklist
1028
+ - [ ] QA validation is completed.
1029
+ - [ ] All dependencies have been addressed.
1030
+ - [ ] All before release tasks have been completed.
1031
+ - [ ] All after release tasks are ready to be completed.
1032
+
1033
+ # Tools
1034
+
1035
+ ## Code Changes
1036
+ - Added a one off tool to add audiences to a video for a presentation, based on the audiences mapped from another presentation.
1037
+
1038
+
1039
+ ## Testing
1040
+
1041
+
1042
+ ## Merge Request Checklist
1043
+ - [ ] QA validation is completed.
1044
+ - [ ] All dependencies have been addressed.
1045
+ - [ ] All before release tasks have been completed.
1046
+ - [ ] All after release tasks are ready to be completed.
1047
+
1048
+ # LoginAnalytics.Api
1049
+
1050
+ ## Before Release
1051
+
1052
+ ### Tasks
1053
+ * In octo variables, make sure to remove the `masterQueue`
1054
+
1055
+
1056
+ ## Code Changes
1057
+ * Updated queue nuget packages. Partially implements INBOX-9146
1058
+
1059
+
1060
+ ## Testing
1061
+ INBOX-9146
1062
+
1063
+
1064
+ ## Merge Request Checklist
1065
+ - [ ] QA validation is completed.
1066
+ - [ ] All dependencies have been addressed.
1067
+ - [ ] All before release tasks have been completed.
1068
+ - [ ] All after release tasks are ready to be completed.
1069
+
1070
+ # Subjects.API
1071
+
1072
+ ## Code Changes
1073
+ * Fixed an issue to calculate child classificaitons count to include leaf classificaiotns only
1074
+
1075
+
1076
+ ## Testing
1077
+
1078
+
1079
+ ## Merge Request Checklist
1080
+ - [ ] QA validation is completed.
1081
+ - [ ] All dependencies have been addressed.
1082
+ - [ ] All before release tasks have been completed.
1083
+ - [ ] All after release tasks are ready to be completed.
1084
+
1085
+ # Account.Api
1086
+
1087
+ ## Before Release
1088
+
1089
+ ### Tasks
1090
+ * [ ] Addd `ex_file_generator` to RabbitMQ under the `api_account` user.
1091
+
1092
+
1093
+ ## Code Changes
1094
+ - Added new endpoint to generate the customer users report `/v1/customers/{id}/generate-user-report`.
1095
+
1096
+
1097
+ ## Testing
1098
+ iou
1099
+
1100
+
1101
+ ## Merge Request Checklist
1102
+ - [ ] QA validation is completed.
1103
+ - [ ] All dependencies have been addressed.
1104
+ - [ ] All before release tasks have been completed.
1105
+ - [ ] All after release tasks are ready to be completed.
1106
+
1107
+ # ClickView.Cron.JobProcessor
1108
+
1109
+ ## Before Release
1110
+
1111
+ ### Tasks
1112
+ * [ ] Add `RabbitMq-Shared` variable set in Octo
1113
+ * [ ] Add new project variable: `queue:concurrentTaskCount` and set value to `10` in Octo
1114
+
1115
+
1116
+ ## After Release
1117
+
1118
+ ### Tasks
1119
+ * [ ] Remove project variable: `queue:host` and `queue:port` from Octo
1120
+
1121
+
1122
+ ## Code Changes
1123
+ * Enforce queue connection using SSL by replacing `ClickView.Clients.Queue` with `ClickView.GoodStuff.Queue`s`.RabbitMQ`
1124
+ * Move options objects to the `Options` folder
1125
+ * Minor code refactorings
1126
+
1127
+
1128
+ ## Testing
1129
+
1130
+
1131
+ ## Merge Request Checklist
1132
+ - [ ] QA validation is completed.
1133
+ - [ ] All dependencies have been addressed.
1134
+ - [ ] All before release tasks have been completed.
1135
+ - [ ] All after release tasks are ready to be completed.
1136
+
1137
+ # Tv.Web
1138
+
1139
+ ## Before Release
1140
+
1141
+ ### SQL
1142
+ * run this sql
1143
+ ```
1144
+ -- Enable 7twoHD Perth channel
1145
+ INSERT INTO `cv_tv_au`.`RegionChannels` (`RegionId`, `ChannelId`, `OwnerStatus`, `Deleted`, `IsShow`) VALUES (3, 74, 0, 0, 1);
1146
+ -- Disable old 7two Perth channel
1147
+ UPDATE `cv_tv_au`.`RegionChannels` SET `IsShow` = 0 WHERE `ChannelId` = 13 AND RegionId = 3;
1148
+ -- Rename ABC Entertains to ABC Entertains HD
1149
+ UPDATE `cv_tv_au`.`Channels` SET `DisplaynNme` = 'ABC Entertains HD' WHERE `Id` = 37;
1150
+ -- Rename ABC News 24 to ABC News HD
1151
+ UPDATE `cv_tv_au`.`Channels` SET `DisplaynNme` = 'ABC News HD' WHERE `Id` = 6;
1152
+ ```
1153
+
1154
+
1155
+ ## Customer Changes
1156
+ * Customer shoud see the new 7twoHD channels in 5 AU resions. The old `7two` channel should be disabled
1157
+ * Rename `ABC Entertains` to `ABC Entertains HD`
1158
+ * Rename `ABC News 24` to `ABC News HD`
1159
+
1160
+
1161
+ ## Code Changes
1162
+ * The new `7twoHD` channel to use existing 7two logo and small channel icon
1163
+
1164
+
1165
+ ## Testing
1166
+
1167
+
1168
+ ## Merge Request Checklist
1169
+ - [ ] QA validation is completed.
1170
+ - [ ] All dependencies have been addressed.
1171
+ - [ ] All before release tasks have been completed.
1172
+ - [ ] All after release tasks are ready to be completed.
1173
+
1174
+ # Lite
1175
+
1176
+ ## Merge Request Checklist
1177
+ - [ ] QA validation is completed.
1178
+ - [ ] All dependencies have been addressed.
1179
+ - [ ] All before release tasks have been completed.
1180
+ - [ ] All after release tasks are ready to be completed.
1181
+
1182
+ # Exchange.Web
1183
+
1184
+ ## Merge Request Checklist
1185
+ - [ ] QA validation is completed.
1186
+ - [ ] All dependencies have been addressed.
1187
+ - [ ] All before release tasks have been completed.
1188
+ - [ ] All after release tasks are ready to be completed.
1189
+
1190
+ # StreamableLearning.Web
1191
+
1192
+ ## Merge Request Checklist
1193
+ - [ ] QA validation is completed.
1194
+ - [ ] All dependencies have been addressed.
1195
+ - [ ] All before release tasks have been completed.
1196
+ - [ ] All after release tasks are ready to be completed.