@clickview/ship-it 0.0.47-dev.0 → 0.0.48

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 (57) hide show
  1. package/.gitlab-ci.yml +1 -1
  2. package/dist/P3/P3 Notes Audit.csv +49 -0
  3. package/dist/R1/R1 Notes Audit.csv +117 -0
  4. package/dist/S3/S3 Notes Audit.csv +13 -0
  5. package/lib/src/commands/CheckReleaseReadyCommand.js +76 -0
  6. package/lib/src/commands/ReleaseCommand.js +8 -10
  7. package/lib/src/constants/ProjectNames.js +3 -1
  8. package/lib/src/constants/TeamCityBuildIDs.js +0 -36
  9. package/lib/src/index.js +0 -0
  10. package/lib/src/startup/SetupCommands.js +1 -0
  11. package/lib/src/tasks/BumpPackagesTask.js +7 -2
  12. package/lib/src/tasks/CheckReleaseReadyTask.js +242 -0
  13. package/package.json +6 -5
  14. package/dist/P3/Account.Api.md +0 -20
  15. package/dist/P3/Analytics Web.md +0 -13
  16. package/dist/P3/Batch.Api.md +0 -25
  17. package/dist/P3/Classroom.Api.md +0 -21
  18. package/dist/P3/ClickView Online.md +0 -18
  19. package/dist/P3/ClickView.Cron.JobProcessor.md +0 -28
  20. package/dist/P3/ClickView.Curator.md +0 -39
  21. package/dist/P3/Clients.md +0 -31
  22. package/dist/P3/Collection.Api.md +0 -28
  23. package/dist/P3/Discover.Api.md +0 -23
  24. package/dist/P3/Domain.Api.md +0 -36
  25. package/dist/P3/Exchange.Web.md +0 -6
  26. package/dist/P3/File.Api.IngestService.md +0 -38
  27. package/dist/P3/File.Api.md +0 -26
  28. package/dist/P3/FileGenerator.md +0 -14
  29. package/dist/P3/Hydration.App.md +0 -20
  30. package/dist/P3/Integrations.Api.md +0 -68
  31. package/dist/P3/Krakend.md +0 -29
  32. package/dist/P3/LeadQualifier.App.md +0 -19
  33. package/dist/P3/Library Editor.md +0 -14
  34. package/dist/P3/Library.Api.md +0 -29
  35. package/dist/P3/Lite.md +0 -6
  36. package/dist/P3/LocalCache.Api.md +0 -22
  37. package/dist/P3/LoginAnalytics.Api.md +0 -20
  38. package/dist/P3/Master.Api.md +0 -13
  39. package/dist/P3/Master.Auth.md +0 -28
  40. package/dist/P3/Objects.Api.md +0 -27
  41. package/dist/P3/Permissions.Api.md +0 -23
  42. package/dist/P3/Release Notes.md +0 -1196
  43. package/dist/P3/Search.Api.md +0 -14
  44. package/dist/P3/Share.Api.md +0 -16
  45. package/dist/P3/StreamableLearning.Web.md +0 -6
  46. package/dist/P3/Subjects.API.md +0 -13
  47. package/dist/P3/Tools.md +0 -13
  48. package/dist/P3/Tv.Web.md +0 -35
  49. package/dist/P3/TvConversion.App.md +0 -14
  50. package/dist/P3/TvRecording.App.md +0 -18
  51. package/dist/P3/TvSplice.App.md +0 -14
  52. package/dist/P3/Users.Api.md +0 -46
  53. package/dist/P3/VideoCollections.Api.md +0 -6
  54. package/dist/P3/VideoViews.Api.md +0 -29
  55. package/dist/P3/WorkspaceSplice.App.md +0 -14
  56. package/dist/P3/clickview.md +0 -130
  57. package/dist/P3/index.app.md +0 -58
@@ -1,20 +0,0 @@
1
-
2
- # Before Release
3
-
4
- ## Tasks
5
- * [x] Update octo variable and add in shared variable set
6
-
7
-
8
- # Code Changes
9
- * Queue updates. Implements INBOX-9146
10
-
11
-
12
- # Testing
13
- INBOX-9146
14
-
15
-
16
- # Merge Request Checklist
17
- - [ ] QA validation is completed.
18
- - [ ] All dependencies have been addressed.
19
- - [ ] All before release tasks have been completed.
20
- - [ ] All after release tasks are ready to be completed.
@@ -1,68 +0,0 @@
1
-
2
- # Before Release
3
-
4
- ## Tasks
5
- * [ ] Add `RabbitMq-Shared` variable set in Octo
6
- * [ ] Rename octo variables:
7
- * `rabbitmq:username` to `queue:username`
8
- * `rabbitmq:password` to `queue:password`
9
- * `rabbitmq:discoverQueue` to `queue:discoverQueue`
10
- * `rabbitmq:masterQueue` to `queue:masterQueue`
11
-
12
- * [ ] Rename `next.sql` with release version
13
- * [ ] Run `<release>.sql`
14
- * [ ] Run `010-add-resource-template-rules.sql`
15
-
16
-
17
- ## SQL
18
- ```
19
- CREATE TABLE `resource_template_rules` (
20
- `ResourceTemplateId` VARCHAR(255) NOT NULL,
21
- `SuitabilityRule` TEXT,
22
- `DateCreated` DATETIME NOT NULL,
23
- `DateModified` DATETIME DEFAULT NULL,
24
- `DateDeleted` DATETIME DEFAULT NULL,
25
- `Deleted` BIT NOT NULL DEFAULT b'0',
26
- PRIMARY KEY (`ResourceTemplateId`),
27
- FOREIGN KEY (`ResourceTemplateId`) REFERENCES `resource_templates`(`Id`)
28
- );
29
- ALTER TABLE `resource_template_columns`
30
- DROP FOREIGN KEY `fk_resourcetemplateid_resourcetemplates_id`;
31
- ALTER TABLE `resource_template_columns`
32
- MODIFY `ResourceTemplateId` VARCHAR(255) NOT NULL;
33
- ALTER TABLE `resource_templates`
34
- MODIFY `Id` VARCHAR(255) NOT NULL;
35
- ALTER TABLE `resource_template_columns`
36
- ADD CONSTRAINT `fk_resourcetemplateid_resourcetemplates_id`
37
- FOREIGN KEY (`ResourceTemplateId`) REFERENCES `resource_templates` (`Id`);
38
- ```
39
-
40
-
41
- # Code Changes
42
- * Nuget packages update
43
- * Replace `ClickView.Clients.Queue` with `ClickView.GoodStuff.Queues.RabbitMq` according to [the guide](https://clickview.quip.com/nlFMAsSqxeaU/2024-05-RabbitMQ-Upgrade)
44
- * Change the queues port from 5672 to 5671
45
- * In the RabbitMQ client options, set EnableSsl=true and IgnoreSslErrors=true. Implements INBOX-9149
46
-
47
- * Change resource template Id to string, so we can use a more readable lower-snake case as IDs
48
- * Resource prompts refinement
49
- * Added IsMovieAndTv identification in the video resource prompt
50
- * Add series name to resource CSV files
51
- * Add evaluator for AI resource generator
52
- * Added endpoint to get resource template suggestions for a video.
53
-
54
- * Update `GET api/v1/rostering/integrations/current-user` endpoint to return integration for customer’s organisation
55
-
56
-
57
- # Testing
58
- INBOX-9149
59
-
60
-
61
- * CORE-2028
62
-
63
-
64
- # Merge Request Checklist
65
- - [ ] QA validation is completed.
66
- - [ ] All dependencies have been addressed.
67
- - [ ] All before release tasks have been completed.
68
- - [ ] All after release tasks are ready to be completed.
@@ -1,29 +0,0 @@
1
-
2
- # Deploy Dependencies
3
- * https://gitlab.cvinternal.net/clickview/back-end/library.api/-/merge_requests/174
4
-
5
- - https://gitlab.cvinternal.net/clickview/back-end/Domain.Api/-/merge_requests/1216
6
-
7
- * https://gitlab.cvinternal.net/clickview/back-end/users.api/-/merge_requests/357
8
-
9
-
10
- # Code Changes
11
- * Add `POST v2/libraries/export` endpoint to support incremental library export. Closes CORE-2045
12
-
13
- - Added an endpoint to fetch organisation settings.
14
-
15
- * 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
16
-
17
-
18
- # Testing
19
- * CORE-2045
20
-
21
- - n/a
22
-
23
-
24
-
25
- # Merge Request Checklist
26
- - [ ] QA validation is completed.
27
- - [ ] All dependencies have been addressed.
28
- - [ ] All before release tasks have been completed.
29
- - [ ] All after release tasks are ready to be completed.
@@ -1,19 +0,0 @@
1
-
2
- # Code Changes
3
- * Update decision maker logic as detailed in the ticket. Implements [INBOX-9034](https://clickview.atlassian.net/browse/INBOX-9034)
4
-
5
- * Update `Snowflake.Data` to latest version
6
-
7
- - Register the `SalesQualifiedLeadDiscoveryClassifier` in DI against the `IProductLifecycleStageClassifier` and `IMarketingLifecycleStageClassifier`
8
-
9
-
10
- # Testing
11
-
12
-
13
-
14
-
15
- # Merge Request Checklist
16
- - [ ] QA validation is completed.
17
- - [ ] All dependencies have been addressed.
18
- - [ ] All before release tasks have been completed.
19
- - [ ] All after release tasks are ready to be completed.
@@ -1,14 +0,0 @@
1
-
2
- # Code Changes
3
- * Add ClickView CDN to CSP
4
- * Whitelist LE host
5
-
6
-
7
- # Testing
8
-
9
-
10
- # Merge Request Checklist
11
- - [ ] QA validation is completed.
12
- - [ ] All dependencies have been addressed.
13
- - [ ] All before release tasks have been completed.
14
- - [ ] All after release tasks are ready to be completed.
@@ -1,29 +0,0 @@
1
-
2
- # Before Release
3
-
4
- ## Tasks
5
- * [ ] Add `RabbitMq-Shared` variable set in Octo
6
-
7
-
8
- # Code Changes
9
- * Add a v2 endpoint `POST v2/libraries/export` to export library with incremental support. Closes CORE-2043
10
-
11
- * Support TLS connection for rabbitmq. Closes CORE-2036
12
- * Update `ClickView.GoodStuff.EventHandling.Master` to `0.12.0` or above which is default to ssl connection for rabbitmq
13
- * Update `ClickView.Clients.Notification` to `2.54.0` or above which has already had ignore ssl error turned on
14
- * Update `ClickView.Clients.FileGenerator` to `2.54.0` or above which has already had ignore ssl error turned on
15
- * Set `EnableSsl = true` for both notification and file generator client
16
- * Update `NotificationService` to adapt to the changes made in the latest `ClickView.Clients.Notification` nuget
17
-
18
-
19
- # Testing
20
- * CORE-2043
21
-
22
- * CORE-2036
23
-
24
-
25
- # Merge Request Checklist
26
- - [ ] QA validation is completed.
27
- - [ ] All dependencies have been addressed.
28
- - [ ] All before release tasks have been completed.
29
- - [ ] All after release tasks are ready to be completed.
package/dist/P3/Lite.md DELETED
@@ -1,6 +0,0 @@
1
-
2
- # Merge Request Checklist
3
- - [ ] QA validation is completed.
4
- - [ ] All dependencies have been addressed.
5
- - [ ] All before release tasks have been completed.
6
- - [ ] All after release tasks are ready to be completed.
@@ -1,22 +0,0 @@
1
-
2
- # Before Release
3
-
4
- ## Tasks
5
- * [ ] Add `RabbitMq-Shared` variable set in Octo
6
-
7
-
8
- # Code Changes
9
- * Support TLS connection for rabbitmq. Closes CORE-2040
10
- * Set `sslConfig` with `Protocol = SslProtocols.None` when instantiating a new RabbitMqClient
11
- * Note that `ClickView.Clients.Queue` is not replaced with `ClickView.GoodStuff.Queues.RabbitMq` because the local cache api is still targeting .net2.0
12
-
13
-
14
- # Testing
15
- * CORE-2040
16
-
17
-
18
- # Merge Request Checklist
19
- - [ ] QA validation is completed.
20
- - [ ] All dependencies have been addressed.
21
- - [ ] All before release tasks have been completed.
22
- - [ ] All after release tasks are ready to be completed.
@@ -1,20 +0,0 @@
1
-
2
- # Before Release
3
-
4
- ## Tasks
5
- * In octo variables, make sure to remove the `masterQueue`
6
-
7
-
8
- # Code Changes
9
- * Updated queue nuget packages. Partially implements INBOX-9146
10
-
11
-
12
- # Testing
13
- INBOX-9146
14
-
15
-
16
- # Merge Request Checklist
17
- - [ ] QA validation is completed.
18
- - [ ] All dependencies have been addressed.
19
- - [ ] All before release tasks have been completed.
20
- - [ ] All after release tasks are ready to be completed.
@@ -1,13 +0,0 @@
1
-
2
- # Code Changes
3
- - Added `TemplateType` and `AutoGenerated` to `ResourceMetadata`
4
-
5
-
6
- # Testing
7
-
8
-
9
- # Merge Request Checklist
10
- - [ ] QA validation is completed.
11
- - [ ] All dependencies have been addressed.
12
- - [ ] All before release tasks have been completed.
13
- - [ ] All after release tasks are ready to be completed.
@@ -1,28 +0,0 @@
1
-
2
- # Before Release
3
-
4
- ## Tasks
5
- * [ ] Octopus Deploy
6
- * [ ] Add `RabbitMq-Shared` variable set
7
- * [ ] Remove `queues:host`
8
- * [ ] Remove `queues:port`
9
-
10
-
11
- # Code Changes
12
- - Remove call to `GetExternalCustomerIdAsync()` in Wonde `GetNewUserDataAsync()` as the passed in model now has the `ExternalCustomerId`. Closes CORE-2027
13
- - Remove code related to `GetExternalCustomerIdAsync()` as there are no longer any callers
14
-
15
- - Update rabbitmq to use SSL. Implements [CORE-2044](https://clickview.atlassian.net/browse/CORE-2044)
16
-
17
-
18
- # Testing
19
- Closes CORE-2027
20
-
21
- * [CORE-2044](https://clickview.atlassian.net/browse/CORE-2044)
22
-
23
-
24
- # Merge Request Checklist
25
- - [ ] QA validation is completed.
26
- - [ ] All dependencies have been addressed.
27
- - [ ] All before release tasks have been completed.
28
- - [ ] All after release tasks are ready to be completed.
@@ -1,27 +0,0 @@
1
-
2
- # Before Release
3
-
4
- ## Tasks
5
- * [ ] Add `RabbitMq-Shared` variable set in Octo
6
-
7
-
8
- # Code Changes
9
- * Support TLS connection for rabbitmq. Closes CORE-2039
10
- * Replace `ClickView.Clients.Queue` with `ClickView.GoodStuff.Queues.RabbitMq`
11
- * Set `EnableSsl = true` and `IgnoreSslErrors = true` for `RabbitMqClientOptions`
12
- * Update `EventService` to subscribe and unsubscribe from rabbitMq
13
-
14
- * Fixes a bug where staff restriction wasn't being respected for shared content. Fixes CORE-2026
15
-
16
-
17
- # Testing
18
- * CORE-2039
19
-
20
- CORE-2026
21
-
22
-
23
- # Merge Request Checklist
24
- - [ ] QA validation is completed.
25
- - [ ] All dependencies have been addressed.
26
- - [ ] All before release tasks have been completed.
27
- - [ ] All after release tasks are ready to be completed.
@@ -1,23 +0,0 @@
1
-
2
- # Before Release
3
-
4
- ## Tasks
5
- * [ ] Add `RabbitMq-Shared` variable set in Octo
6
-
7
-
8
- # Code Changes
9
- * Nuget packages update
10
- * Replace `ClickView.Clients.Queue` with `ClickView.GoodStuff.Queues.RabbitMq` according to [the guide](https://clickview.quip.com/nlFMAsSqxeaU/2024-05-RabbitMQ-Upgrade)
11
- * Change the queues port from 5672 to 5671
12
- * In the RabbitMQ client options, set EnableSsl=true and IgnoreSslErrors=true. Implements INBOX-9149
13
-
14
-
15
- # Testing
16
- INBOX-9149
17
-
18
-
19
- # Merge Request Checklist
20
- - [ ] QA validation is completed.
21
- - [ ] All dependencies have been addressed.
22
- - [ ] All before release tasks have been completed.
23
- - [ ] All after release tasks are ready to be completed.