@clickview/ship-it 0.0.32 → 0.0.33

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 (175) hide show
  1. package/Dockerfile +33 -33
  2. package/README.md +48 -48
  3. package/config.json +19 -19
  4. package/lib/config.json +20 -20
  5. package/lib/src/api-clients/git-lab/GitLabApiClient.js +439 -439
  6. package/lib/src/api-clients/git-lab/GitLabMapper.js +82 -82
  7. package/lib/src/api-clients/index.js +20 -20
  8. package/lib/src/api-clients/slack/SlackApiClient.js +206 -206
  9. package/lib/src/api-clients/team-city/TeamCityApiClient.js +100 -100
  10. package/lib/src/api-clients/trello/TrelloApiClient.js +145 -145
  11. package/lib/src/commands/BumpPackagesCommand.js +84 -84
  12. package/lib/src/commands/CreateBranchCommand.js +100 -100
  13. package/lib/src/commands/CreateMergeRequestCommand.js +107 -107
  14. package/lib/src/commands/CreateNotesAuditCommand.js +84 -84
  15. package/lib/src/commands/CreateReleaseNotesCommand.js +95 -95
  16. package/lib/src/commands/CreateTrelloCardsCommand.js +77 -77
  17. package/lib/src/commands/InstallPackagesCommand.js +76 -76
  18. package/lib/src/commands/ListProjectsCommand.js +76 -76
  19. package/lib/src/commands/ReleaseCommand.js +129 -129
  20. package/lib/src/commands/StartProjectBuildsCommand.js +76 -76
  21. package/lib/src/commands/StatusCommand.js +88 -88
  22. package/lib/src/commands/TagMasterCommand.js +76 -76
  23. package/lib/src/commands/ValidateMergeRequestCommand.js +76 -76
  24. package/lib/src/commands/VersionCommand.js +76 -76
  25. package/lib/src/commands/index.js +30 -30
  26. package/lib/src/constants/CommandTypeMapping.js +20 -20
  27. package/lib/src/constants/GitLabMemberIds.js +6 -6
  28. package/lib/src/constants/MonorepoPackageJsonFiles.js +17 -17
  29. package/lib/src/constants/MonorepoProjectNames.js +16 -16
  30. package/lib/src/constants/ProjectNames.js +68 -68
  31. package/lib/src/constants/SlackUserEmailList.js +13 -13
  32. package/lib/src/constants/TeamCityBuildIDs.js +45 -45
  33. package/lib/src/constants/index.js +19 -19
  34. package/lib/src/errors/ShipItError.js +32 -32
  35. package/lib/src/errors/index.js +17 -17
  36. package/lib/src/index.js +18 -18
  37. package/lib/src/interfaces/Config.js +2 -2
  38. package/lib/src/interfaces/MergeRequestState.js +2 -2
  39. package/lib/src/interfaces/ProjectNames.js +2 -2
  40. package/lib/src/interfaces/ShipItCommand.js +2 -2
  41. package/lib/src/interfaces/ShipItTask.js +2 -2
  42. package/lib/src/interfaces/VersionType.js +2 -2
  43. package/lib/src/interfaces/command-cli-options/MilestoneCommandCliOptions.js +2 -2
  44. package/lib/src/interfaces/command-cli-options/ReleaseCommandCliOptions.js +2 -2
  45. package/lib/src/interfaces/command-cli-options/StatusCommandCliOptions.js +2 -2
  46. package/lib/src/interfaces/command-cli-options/index.js +19 -19
  47. package/lib/src/interfaces/command-options/BaseCommandOptions.js +2 -2
  48. package/lib/src/interfaces/command-options/BumpPackagesCommandOptions.js +2 -2
  49. package/lib/src/interfaces/command-options/DockerMilestoneCommandOptions.js +2 -2
  50. package/lib/src/interfaces/command-options/MilestoneCommandOptions.js +2 -2
  51. package/lib/src/interfaces/command-options/ReleaseCommandOptions.js +2 -2
  52. package/lib/src/interfaces/command-options/StatusCommandOptions.js +2 -2
  53. package/lib/src/interfaces/command-options/ValidateMRCommandOptions.js +2 -2
  54. package/lib/src/interfaces/command-options/index.js +22 -22
  55. package/lib/src/interfaces/index.js +26 -26
  56. package/lib/src/interfaces/models/Branch.js +2 -2
  57. package/lib/src/interfaces/models/Commit.js +2 -2
  58. package/lib/src/interfaces/models/CommitFile.js +2 -2
  59. package/lib/src/interfaces/models/File.js +2 -2
  60. package/lib/src/interfaces/models/Label.js +2 -2
  61. package/lib/src/interfaces/models/MergeRequest.js +2 -2
  62. package/lib/src/interfaces/models/Milestone.js +2 -2
  63. package/lib/src/interfaces/models/Project.js +2 -2
  64. package/lib/src/interfaces/models/ProjectConfig.js +9 -9
  65. package/lib/src/interfaces/models/Release.js +2 -2
  66. package/lib/src/interfaces/models/Tag.js +2 -2
  67. package/lib/src/interfaces/models/index.js +26 -26
  68. package/lib/src/interfaces/view-models/MilestoneProject.js +2 -2
  69. package/lib/src/interfaces/view-models/index.js +17 -17
  70. package/lib/src/inversify.config.js +75 -75
  71. package/lib/src/services/GitLabService.js +508 -508
  72. package/lib/src/services/SlackService.js +142 -142
  73. package/lib/src/services/TeamCityService.js +37 -37
  74. package/lib/src/services/TrelloService.js +84 -84
  75. package/lib/src/services/index.js +20 -20
  76. package/lib/src/startup/AddMilestoneCommand.js +96 -96
  77. package/lib/src/startup/GetAction.js +68 -68
  78. package/lib/src/startup/SetupCommands.js +168 -168
  79. package/lib/src/tasks/BumpPackagesTask.js +229 -229
  80. package/lib/src/tasks/BumpVersionTxtTask.js +110 -110
  81. package/lib/src/tasks/CommitPackageVersionsTask.js +116 -116
  82. package/lib/src/tasks/CreateBranchTask.js +104 -104
  83. package/lib/src/tasks/CreateMergeRequestTask.js +118 -118
  84. package/lib/src/tasks/CreateNotesAuditTask.js +140 -140
  85. package/lib/src/tasks/CreateReleaseNotesTask.js +144 -144
  86. package/lib/src/tasks/InstallPackagesTask.js +407 -407
  87. package/lib/src/tasks/ListProjectsTask.js +87 -87
  88. package/lib/src/tasks/PopulateTrelloBoardTask.js +140 -140
  89. package/lib/src/tasks/StartMonorepoBuildTask.js +109 -109
  90. package/lib/src/tasks/StartProjectBuildsTask.js +170 -170
  91. package/lib/src/tasks/TagMasterTask.js +186 -186
  92. package/lib/src/tasks/ValidateCommitsTask.js +143 -143
  93. package/lib/src/tasks/ValidateDescriptionsTask.js +178 -178
  94. package/lib/src/tasks/ValidateMergeRequestTask.js +115 -115
  95. package/lib/src/tasks/ValidateTask.js +419 -419
  96. package/lib/src/tasks/VersionTask.js +98 -98
  97. package/lib/src/tasks/index.js +34 -34
  98. package/lib/src/types.js +57 -57
  99. package/lib/src/utils/BranchNames.js +11 -11
  100. package/lib/src/utils/Commits.js +55 -55
  101. package/lib/src/utils/Csv.js +54 -54
  102. package/lib/src/utils/Descriptions.js +274 -274
  103. package/lib/src/utils/GroupIds.js +6 -6
  104. package/lib/src/utils/Logger.js +62 -62
  105. package/lib/src/utils/ProjectIds.js +47 -47
  106. package/lib/src/utils/Versions.js +20 -20
  107. package/lib/src/utils/index.js +22 -22
  108. package/package.json +50 -50
  109. package/dist/F1/Analytics Web.md +0 -8
  110. package/dist/F1/AutoCaptions.md +0 -30
  111. package/dist/F1/Classroom.Api.md +0 -23
  112. package/dist/F1/ClickView Online.md +0 -17
  113. package/dist/F1/ClickView.Curator.md +0 -100
  114. package/dist/F1/ClickView.EmailService.md +0 -53
  115. package/dist/F1/ClickView.OnlineApi.md +0 -13
  116. package/dist/F1/Clients.md +0 -19
  117. package/dist/F1/Domain.Api.md +0 -23
  118. package/dist/F1/Exchange.Web.md +0 -8
  119. package/dist/F1/Image.Api.md +0 -8
  120. package/dist/F1/Integrations.Api.md +0 -23
  121. package/dist/F1/Krakend.md +0 -8
  122. package/dist/F1/Library Editor.md +0 -0
  123. package/dist/F1/Lite.md +0 -60
  124. package/dist/F1/Master.Api.md +0 -58
  125. package/dist/F1/Master.Auth.md +0 -22
  126. package/dist/F1/Objects.Api.md +0 -12
  127. package/dist/F1/Permissions.Api.md +0 -12
  128. package/dist/F1/RealtimeSalesforceSync.md +0 -14
  129. package/dist/F1/Release Notes.md +0 -990
  130. package/dist/F1/Search.Api.md +0 -12
  131. package/dist/F1/StreamableLearning.Web.md +0 -35
  132. package/dist/F1/Users.Api.md +0 -13
  133. package/dist/F1/VideoProcessorService.md +0 -23
  134. package/dist/F1/clickview.md +0 -321
  135. package/dist/F2/Analytics Web.md +0 -7
  136. package/dist/F2/Batch.Api.md +0 -27
  137. package/dist/F2/ClickView Online.md +0 -12
  138. package/dist/F2/ClickView.Curator.md +0 -166
  139. package/dist/F2/Clients.md +0 -14
  140. package/dist/F2/CurriculumIngestion.Api.md +0 -13
  141. package/dist/F2/Discover.Api.md +0 -64
  142. package/dist/F2/Domain.Api.md +0 -16
  143. package/dist/F2/Exchange.Web.md +0 -7
  144. package/dist/F2/Krakend.md +0 -12
  145. package/dist/F2/Library Editor.md +0 -11
  146. package/dist/F2/Lite.md +0 -30
  147. package/dist/F2/Objects.Api.md +0 -12
  148. package/dist/F2/Release Notes.md +0 -759
  149. package/dist/F2/Search.Api.md +0 -30
  150. package/dist/F2/Share.Api.md +0 -12
  151. package/dist/F2/StreamableLearning.Web.md +0 -14
  152. package/dist/F2/Subjects.API.md +0 -12
  153. package/dist/F2/Tv.Web.md +0 -8
  154. package/dist/F2/Users.Api.md +0 -21
  155. package/dist/F2/clickview.md +0 -200
  156. package/dist/F2/shortcode-api.md +0 -8
  157. package/dist/F3.1/Analytics Web.md +0 -8
  158. package/dist/F3.1/ClickView.Curator.md +0 -14
  159. package/dist/F3.1/Discover.Api.md +0 -14
  160. package/dist/F3.1/Domain.Api.md +0 -7
  161. package/dist/F3.1/Exchange.Web.md +0 -8
  162. package/dist/F3.1/Library Editor.md +0 -8
  163. package/dist/F3.1/Lite.md +0 -8
  164. package/dist/F3.1/Objects.Api.md +0 -7
  165. package/dist/F3.1/Release Notes.md +0 -207
  166. package/dist/F3.1/Search.Api.md +0 -14
  167. package/dist/F3.1/Share.Api.md +0 -10
  168. package/dist/F3.1/Subjects.API.md +0 -35
  169. package/dist/F3.1/VideoViews.Api.md +0 -7
  170. package/dist/F3.1/clickview.md +0 -28
  171. package/lib/src/commands/CreateTestingNotesCommand.js +0 -84
  172. package/lib/src/commands/StartConsumingProjectBuildsCommand.js +0 -76
  173. package/lib/src/tasks/CreateTestingNotesTask.js +0 -135
  174. package/lib/src/tasks/MergeMasterToDevTask.js +0 -147
  175. package/lib/src/tasks/StartConsumingProjectBuildsTask.js +0 -149
@@ -1,19 +0,0 @@
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
@@ -1,23 +0,0 @@
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
-
@@ -1,8 +0,0 @@
1
-
2
- # Code changes
3
- - Add new illos and remove old illos.
4
-
5
-
6
- # Testing
7
- - Implements EXTV-123
8
-
@@ -1,8 +0,0 @@
1
-
2
- # Code changes
3
- - Delete all images when deleted from Master.Api, not just avatar. Implements CORE-1220
4
-
5
-
6
- # Testing
7
- - CORE-1220
8
-
@@ -1,23 +0,0 @@
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
-
@@ -1,8 +0,0 @@
1
-
2
- # Code changes
3
- - Add Prospect Api validate email endpoint. Fixes INBOX-4708.
4
-
5
-
6
- # Testing
7
- - N/A
8
-
File without changes
package/dist/F1/Lite.md DELETED
@@ -1,60 +0,0 @@
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
-
@@ -1,58 +0,0 @@
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
-
@@ -1,22 +0,0 @@
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
-
@@ -1,12 +0,0 @@
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
-
@@ -1,12 +0,0 @@
1
-
2
- # Customer changes
3
- - Fix user permission not updating for an hour after changing a users role. Fixes INBOX-5934
4
-
5
-
6
- # Code changes
7
- - Reduce user cache time from 1h to 5s
8
-
9
-
10
- # Testing
11
- - INBOX-5934
12
-
@@ -1,14 +0,0 @@
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
-