@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,12 +0,0 @@
1
-
2
- # Code changes
3
- * Getting rid of trigram analyser for `BestFields` search. Fixes INBOX-5864
4
- * The reason this was breaking was because the trigram analyser doesn't filter out the stop words. When you perform `BestFields` search on a field, it searches on all the keywords of the field without worrying about the position of the words (unlike phrase or phrase prefix search).
5
-
6
- * Add series id filter to filter by series id
7
-
8
-
9
- # Testing
10
- Fixes INBOX-5864
11
-
12
-
@@ -1,35 +0,0 @@
1
-
2
- # Before release
3
- - Add objects api to octo config
4
-
5
- - Add the auth client
6
- - Set up the octo config
7
- - Add the collection api client id. The client secret can be found in 1 pw under `Collection API Client Secret`
8
- ```
9
- INSERT INTO cv_collection.authentication
10
- (`ClientId`, `ClientSecret`, `Scopes`, `DateCreated`)
11
- VALUES
12
- ('cv_streamablelearning', , 'collectionapi.collect', UTC_TIMESTAMP);
13
- ```
14
-
15
-
16
- # Dependencies
17
- - clickview/front-end/streamablelearning.web!2
18
-
19
-
20
- # Code changes
21
- - Add resource images
22
- - Add objects client api
23
- - Update scopes
24
-
25
- - Adding all the endpoints needed to browse topics.
26
- - Fix the entry point in the dockerfile.
27
- - Fix the launchsettings.json being ignored for the initial commit.
28
-
29
- - Copy pasted Exchange.Web in, renamed everything to streamable learning. Deleted pieces that we will not need.
30
-
31
-
32
- # Testing
33
-
34
-
35
-
@@ -1,13 +0,0 @@
1
-
2
- # Code changes
3
- - Added `CuratorController` adding support to customerless users with the following endpoints:
4
- - `GET` `v1/curator/users`: Get users
5
- - `GET` `v1/curator/users/{id}`: Get user by Id
6
- - `POST` `v1/curator/users/delete`: Delete user object
7
- - `PUT` `v1/curator/users/update-status`: Update user statuses (if customer is not passed, it will just update users' statuses if there's no customer).
8
- Implements CORE-1290
9
-
10
-
11
- # Testing
12
- Implements CORE-1290
13
-
@@ -1,23 +0,0 @@
1
-
2
- # Customer changes
3
- - Fix some videos failing to process when editing using the Cloud Editor in high precision mode
4
-
5
-
6
- # Code changes
7
- - Update ffmpeg to 6.1.1. Closes CORE-1358
8
-
9
- - Clamp segment end times to the video duration (up to 1s). Fixes CORE-1199
10
- - Move culture functions from `Helper` to `CultureHelper`
11
- - Fix bug when trying to extract thumbnails. Sometimes the end time would be before the start time causing thumbnails to not process. Fixes INBOX-5746
12
-
13
- - Added `IVideoUploadTaskValidator` to validate the `VideoUploadTask` before processing
14
- - Throws a `ValidationException` with an ErrorCode of `BAD_TASK = 130`
15
- - Log warnings and better info when a trim segment is outside the bounds of the video to help diagnose CORE-1199
16
- - Ignore any `VideoUploadTask.Segments` that have a duration of 0
17
-
18
-
19
- # Testing
20
- - CORE-1358
21
-
22
-
23
-
@@ -1,321 +0,0 @@
1
-
2
- # Before release
3
-
4
- ## other
5
- - [ ] Create the `has_completed_onboarding_step_subjects_summary` domain option for users. Default false.
6
- - Add domain option: `has_completed_onboarding_product_tips`
7
- - ![image](/uploads/88936fa0959eb633b37cd4747652f854/image.png)
8
- - [ ] After release, Kevin needs to update all of the access policies in production to no longer blacklist the `onboarding.view` permission. This is so that all new trial users will have access to onboarding
9
-
10
- # Dependencies
11
- - https://gitlab.cvinternal.net/clickview/front-end/lite/-/merge_requests/566
12
- - This MR will need to be merged first
13
- * https://gitlab.cvinternal.net/clickview/front-end/ClickView.Curator/-/merge_requests/1314
14
- * https://gitlab.cvinternal.net/clickview/front-end/clickview/-/merge_requests/3918
15
- * https://gitlab.cvinternal.net/clickview/front-end/ClickView.Curator/-/merge_requests/1311
16
- - clickview/front-end/clickview!3929
17
- - clickview/front-end/clickview!3927
18
- - Review after https://gitlab.cvinternal.net/clickview/front-end/clickview/-/merge_requests/3927
19
- - https://gitlab.cvinternal.net/clickview/front-end/ClickView.Curator/-/merge_requests/1317
20
- - https://gitlab.cvinternal.net/clickview/front-end/clickview/-/merge_requests/3921
21
- - https://gitlab.cvinternal.net/clickview/front-end/clickview/-/merge_requests/3903
22
- - https://gitlab.cvinternal.net/clickview/front-end/ClickView.Curator/-/merge_requests/1311
23
- * https://gitlab.cvinternal.net/clickview/front-end/lite/-/merge_requests/559
24
- - https://gitlab.cvinternal.net/clickview/front-end/clickview/-/merge_requests/3901
25
- - https://gitlab.cvinternal.net/clickview/front-end/clickview/-/merge_requests/3901
26
- - https://gitlab.cvinternal.net/clickview/back-end/Master.Auth/-/merge_requests/500
27
- - https://gitlab.cvinternal.net/clickview/front-end/lite/-/merge_requests/555
28
- - https://gitlab.cvinternal.net/clickview/front-end/exchange.web/-/merge_requests/21
29
- - https://gitlab.cvinternal.net/clickview/front-end/Analytics.Web/-/merge_requests/107
30
- - https://gitlab.cvinternal.net/clickview/back-end/users.api/-/merge_requests/243
31
- - https://gitlab.cvinternal.net/clickview/front-end/ClickView.Curator/-/merge_requests/1286
32
- - https://gitlab.cvinternal.net/clickview/back-end/Master.Auth/-/merge_requests/489
33
-
34
- # Analytics
35
-
36
- ## Code changes
37
- - Replace illustrations with new design
38
- - Clean up un-used and old image urls
39
-
40
- # Auth
41
-
42
- ## Code changes
43
- - Replace illustrations with new design
44
-
45
- ## Customer changes
46
- - Account activation forms for trial signups or trial invitations will no longer display a field to enter a job title. This will be entered in onboarding instead. Implements CORE-1322
47
-
48
- # Common
49
-
50
- ## Code changes
51
- - Updated `DateHelper` method `convertUTCToLocal` to factor in minutes. Fixes INBOX-4219.
52
- - Fixed a flaw in the way `ReactLayoutView` handled a scenario where a backbone view was being renddered into a region after a react view had previously been rendered into that region. Fixes INBOX-5771.
53
-
54
- # Curator
55
-
56
- ## Code changes
57
- * Temporary remove access videos directly from the dashboard.
58
- * Add streamable-green color to global styles variables
59
- - Only fetch topic dashboard videos when the topic dashboard accordion is expanded.
60
- - Remove `videos` field from AssemblylineDashboard.
61
- - Fixes INBOX-5929
62
- - Display correct admin switch status when disabled.
63
-
64
- ## Customer changes
65
- * Remove the ClickView Curated tag from the Add Curation Tags bulk action in the content pipeline Tags stage.
66
- * Now in the content pipeline a new column `Source` is added.
67
- * Now, the review and published topic stage has a priority dropdown on the right-hand side of the dashboard status.
68
- - Add Streamable Learning dashboards to curator
69
- - Update topic filter to send request with curated topics instead of topic ID. Implements CC-817
70
- - Now you can set the priority in the Content pipeline.
71
- - Now you can bulk set priorities in the Content pipeline.
72
- - Fixes add tag bulk action not retaining state on back
73
- - Links to resolve an issue from the review stage will now open in a new tab. Implements CC-791
74
- - The review stage now only restricts publishing topics for users in readonly mode. Implements CC-793
75
- - When a video in the resourcing stage is moved to the next stage, it will move as far as it can down the pipeline rather than just to the next stage.
76
- - Filters are now preserved between stages that have the same type (video / topic).
77
- - The topic and audience forms now have more logical and consistent ordering on the libraries list, and the actual topic / audience lists (which are now ordered by presentation region + level). Implements INBOX-5906
78
- - The edit video page now has a new tab to play the video
79
- - Added a new "thumbnail text" column to the curated thumbnails stage. Implements CC-729
80
- - Implements group topics and audiences by presentation in bulk confirm view
81
- - Add open in content pipeline link to edit video
82
- - Fix content pipeline save date created filter
83
- - Remove video status, type and date created from curated thumbnails stage
84
- - Update ID link for curated thumbnails stage to ClickView
85
- - Support managing users with no customer. Fixes INBOX-5871
86
- - Fixes new theme glance type error
87
- - Fix select curriculum presentation showing subject presentations
88
-
89
- # Exchange
90
-
91
- ## Code changes
92
- - Replace illustrations with new design
93
- - Clean up un-used and old image urls
94
-
95
- # Library Editor
96
-
97
- ## Customer changes
98
- - Fixes folder tree cutting off
99
- - Change cursor when hovering over folder tree items
100
- - Show dropdown folder tree in upload video destination
101
- - Add max height to folder tree
102
- - Fix search dropdown overflow cropping issue
103
- - Fix search by tag from instant search
104
- - Remove type filter form series view
105
- - Library editor now has better support for users with slower internet connections attempting to upload. Previously, if a user failed to upload 4mb over a period of 30s, the upload would silently fail. Now with the new changes, after 30s a dialog will show informing the user that their internet connection is very slow, but the upload will continue. After 3 minutes the upload will fail, and a dialog will show informing them their upload has failed because their internet is too slow. Implements INBOX-5850.
106
- - Fix online share modal styles
107
- - Fix instant search with folder and series filter
108
- - Hide library request settings in user options dropdown when user has no libraries
109
- - Hide library request settings link in past requests and pending requests empty state when user has no libraries
110
- - Fix max libraries error appearing when creating new library
111
- - Update tree dropdown to inside modal instead of popout
112
-
113
- # Lite
114
-
115
- ## Code changes
116
- - We're now mapping the geolocation to an instance region for registering braze.
117
- - Added way more null checks throughout onboarding.
118
- - Fixed an issue where after creating a playlist in onboarding, an error screen would be displayed. This is fixed by persisting a `hasPlaylist` state value from the beginning of onboarding, and not changing it throughout the session.
119
- - Fixed an issue where an existing user who had previously set their subject preferences prior to entering onboarding could not proceed past the "subjects summary" screen if their school did not have a curriculum.
120
- - Default braze to US instance region if we don't have one.
121
- - Update`SeriesView` to allow page indexing
122
- - Add logic to restrict bots from infinite scrolling on series
123
- - Pluralise videos in pageTitle
124
- - Implements GROW-10
125
- * Fix onboarding product tips run time error.
126
- - When rendering a page as a bot/crawler, we'll now auto-collapse the left nav.
127
- - This is due to the desktop snapshots being served from the prerender cache to crawlers with a mobile user agent
128
- - [Existing Example](https://i.imgur.com/tcYpU3u.png) vs. [New change](https://i.imgur.com/BLSZOuj.png)
129
- - Partially implements https://clickview.atlassian.net/browse/GROW-7 (see
130
- - Added `presentation_id` and `presentation_name` properties to the Braze `product_explore_topics` custom event
131
- - Implements INBOX-5503
132
- - Updated the onboarding advisor video ID and share IDs, and updated them to be regionalised.
133
- - The welcome video onboarding screen will now be filtered out for existing users
134
- - The "select videos" and "create a playlist" onboarding screens will now be filtered out for existing users who have already created a playlist.
135
- - Added a lot more documentation to the onboarding filter, and each onboarding screen config (mainly the predicate functions)
136
- - Added a subjects summary screen to onboarding to show to existing users who have set subject preferences in the past.
137
- - This screen links to other screens outside of the normal linked list next/prev flow.'
138
- - Rename `admin` persona to `kdm` throughout onboarding
139
- - Added a loader screen for when a user completes onboarding after one of the subject/presentation screens.
140
- - Moved the onboarding progress bar into a separate component
141
- - Remove the presentation switch spotlight.
142
- - Remove user setting `Has Displayed presentation switcher spotlight`.
143
- - Add more margin between empty state info and the button on the rostering setting page.
144
- - Fix sign-up modal left image not showing issue.
145
- - The advisor video screen in the admin onboarding pathway will now display partner logos for either AU, US, or UK. Implements LTE-2312
146
- - The onboarding screens for admins to contact sales will now only show for admins who are on a non-BDM trial. Fixes LTE-2309
147
- - The onboarding screen for teachers to select their usage intention will now no longer show the "evaluating for your school or district?" option if their school is not on a non-BDM trial. Fixes LTE-2309
148
- - Updated all of the new onboarding to log events. Implements LTE-2209
149
- - Replace illustrations with new design
150
- - Clean up un-used and old image urls
151
- - Tweak image style
152
- - Added the `ExistingAccountSignIn` component to the `WelcomePopupView`
153
- - Fix Invite a colleague styling issue
154
- - Fix Bulk action history filter button alignment issue
155
- - User table empty email placeholder style
156
- - Remove legacy code for using `featuredTopics` on dashboards
157
- - This stopped being used with the release of our new Discover dashboards early last year.
158
- - Resolves INBOX-4371
159
- > This is more of a request-for-comment more than anything (hence the draft). Worth reading the notes beforehand too 🙏.
160
- - Renamed the `expiryTime` property on Flight Requests to `cacheDuration` as I feel this better describes the functionality of this property. `expiryTime` feels more like it should hold a timestamp, when actually this property really describes a time-from-now in seconds. This is reinforced by the ubiquitous use of the `CacheDurations` enum throughout the project.
161
- - Updated the `cacheDuration` property type to `number | (data: HashObject | HashObject[]) => number` to allow the cache duration to be dynamically calculated based on the data within the stored object. Updated the `FlightObj` class to handle objects where the `cacheDuration` is a function.
162
- - Updated the PlayerIntegrations (Vivi) requests to use a `cacheDuration` function which allowed me to remove and refactor a bunch of that unnecessary global state access we discussed several weeks ago.
163
-
164
- ## Customer changes
165
- - Re-added the production year to the play page. Fixes INBOX-6033 and fixes INBOX-6034
166
- - Any user whose account was created after the onboarding V2 release date of "06/02/2024" will be redirected to onboarding after logging in. All other users will see a new widget on their Discover page prompting them to finish personalising their account. Implements LTE-2322
167
- - Now after you complete the new onboarding experience, you will see product tip cards on the page, highlight the playlist, and school-level switches.
168
- - Lite now has better support for users with slower internet connections attempting to upload. Previously, if a user failed to upload 4mb over a period of 30s, the upload would silently fail. Now with the new changes, after 30s a dialog will show informing the user that their internet connection is very slow, but the upload will continue. After 3 minutes the upload will fail, and a dialog will show informing them their upload has failed because their internet is too slow. Implements INBOX-5850.
169
-
170
- ![example1](https://i.imgur.com/ROVsgGH.png)
171
-
172
- ![example2](https://i.imgur.com/AaXVG7F.png)
173
- - Adds white border to avatar in multiple choice interactive answer
174
- - Update text and link colors in user manager
175
- - Updated the onboarding widget copy for teachers so each message is more tailored to the current step
176
- - The playlist created through onboarding is now created with a banner and copy (works in production only)
177
- - Updated the thumbnails displayed in the onboarding loaders to be a higher quality selection. Implements LTE-2308
178
- - Fixed an issue where if you were on the playlist onboarding screen and you clicked back, you would see the video loader again.
179
- - Updated the subjects selector step to only display subjects that have hardcoded videos mapped to them
180
- - Fixed a potential issue where if a user selected a presentation that doesn't have hardcoded subjects + videos mapped to it, they would see a blank screen on the subjects step. Now, the subjects step will be filtered out of their onboarding pathway.
181
- - Updated the left nav and logo in the mock discover view in the left panel of onboarding to not jump around so much when selecting a subject or curriculum presentation.
182
- - The annotation image in the onboarding curriculum step will now say "academic standard" for US users
183
- - Video thumbnails in the "select videos" onboarding step will now be medium quality
184
- - Updated the topic + curriculum presentation selectors to highlight the selected item in green
185
- - Fixed some issue where the progress bar in onboarding would drastically change if you selected an option that switched the pathway from teacher to admin
186
- - Fixed some issues where the annotations in onboarding would sometimes overlap the main illustrations on the left panel
187
- - Updated the "get started" button in the "welcome" video screen of onboarding to work better.
188
- - Polish favourites playlist banner styles
189
- - Update school creation form select class
190
- - Fixed a bug where if you triggered an alert on the classrooms screen then immediately opened a dropdown in the classrooms list, the dropdown would be closed after the alert disappears. Fixes INBOX-5856
191
- - Polish my videos responsiveness
192
- - Fixes search not being updated when deleting video
193
- - Add an alert banner to the play page if the current video/clip/interactive is archived. Also all the action buttons are removed except you can still view interactives result.
194
- - When opening a direct share link while not logged in, you should be redirected back to the share link after logging in. Fixes TEST-86
195
- - The welcome popup displayed on a user's first landing on the public page will now display a sign in link for existing users/
196
- - Implements INBOX-5559
197
- - After expand left nav on a smaller screen, click on the backdrop will collapse the left nav.
198
- - Hide up next in clip play page unless unless it is in a playlist for now.
199
-
200
- # Online
201
-
202
- ## Customer changes
203
- - Fixed an issue where if a user had selected their audience and subject preferences from outside of the onboarding UI, the onboarding nag would still display. Fixes INBOX-6010
204
-
205
- ## Code changes
206
- - Fixed an issue where users could not progress to the audiences step of onboarding since the introduction of the new `StreamableLearning` presentation type.
207
-
208
- # Player
209
-
210
- ## Code changes
211
- - Setting `0.001` as the lower limit for interactives to prevent questions at timepoint zero from disappearing without the user having a chance to answer.
212
- - Strongly enforcing the background colour of the scrollbars to be consistent with our theme. This change overrides the default background colour of the scrollbars as set in the Simplebar library.
213
-
214
- # Reports
215
-
216
- ## Customer changes
217
- - Fix a bug that was causing incorrect numbers for the Unanswered column in the results table for interactives. Fixes INBOX-5808.
218
-
219
- # Shared
220
-
221
- ## Code changes
222
- - `LocalityHelper` will now map all european countries to the UK instance region.
223
- - Updated our request to get a user's presentation(s) to require passing a presentation type, as the endpoint's behaviour when you don't is to 404 if the user doesn't have a presentation set for all possible types. This behaviour can lead to bugs and it's safer to explicitly define what presentation types you want to fetch.
224
- - Moved the `PreviewBanner` out of lite into shared, so that streamable-learning may use it.
225
- - Updated `dropzone`, `react-dropzone` and `@types/dropzone` to their latest versions.
226
- - Removed the `accept` in `FileSelect` because it didn't actually do anything.
227
- - Prevent a `Each child in a list should have a unique "key" prop` error that would throw in many places because of our `<Tooltip />`
228
-
229
- # Streamable Learning
230
-
231
- ## Customer changes
232
- - Add streamable learning play page
233
- - Implemented a search bar and a search results page.
234
- - Implemented the following:
235
- - Dashboard
236
- - Classification browsing
237
- - View all classifications
238
- - Previewing topics from curator
239
-
240
- ## Code changes
241
- - Initial product setup.
242
-
243
- # Testing
244
- - Fixes INBOX-6065
245
- - Fixes TEST-91
246
- - Fixes TEST-114
247
- - Fixes TEST-115
248
- - Fixes INBOX-6033
249
- - Fixes INBOX-6034
250
- - Fixes INBOX-6010
251
- - Fixes TEST-91
252
- - Fixes TEST-108
253
- * n/a
254
- * Implements CC-832
255
- - https://clickview.atlassian.net/browse/GROW-10
256
- * n/a
257
- - n/a
258
- * Implements CC-792
259
- * Implements CC-826
260
- * Implements CC-828
261
- - n/a
262
- - Implements CC-825
263
- - Implements CC-817
264
- - Implements CC-824
265
- - Partially implements LTE-2208
266
- - Implements LTE-2323
267
- - Implements LTE-2322
268
- - Implements CC-795
269
- - Implements CC-798
270
- - Implements CC-796
271
- - Implements LTE-2216
272
- - Fixes INBOX-5915
273
- - Implements INBOX-5556
274
- - Implements LTE-2299
275
- - Fixes Implements INBOX-5850
276
- - Fixes LTE-2311
277
- - Fixes INBOX-5911
278
- - Fixes INBOX-5188
279
- - Fixes INBOX-5277
280
- - Implements CC-729
281
- - Implements LTE-2312
282
- - Implements CC-819
283
- - Fixes LTE-2309
284
- - Implements LTE-2209
285
- - Implements LTE-2277
286
- - Implements EXTV-123
287
- - Implements ANLT-107
288
- - Implements CC-801
289
- - Fixes CC-800
290
- - Fixes CC-802
291
- - Fixes CC-803
292
- - Fixes INBOX-5631
293
- - Fixes INBOX-5871
294
- - N/A
295
- - Fixes INBOX-5278
296
- - Fixes INBOX-5856
297
- - Fixes INBOX-4884
298
- - Fixes INBOX-5818
299
- - Implements INBOX-5735
300
- - Fixes TEST-86
301
- 1. Navigate to NP as a public user:
302
- 2. The first welcome popup will now display a link at the bottom, allowing users to go straight to the sign in page. [Example](https://i.imgur.com/09aoKIo.png)
303
- 3. If the popup does not display, you'll need to clear your `localStorage` keys.
304
- - Fixes INBOX-5807
305
- - Fixes INBOX-5456
306
- - Fixes INBOX-5013
307
- - Fixes INBOX-5782
308
- - Fixes INBOX-5575
309
- - Fixes TEST-94
310
- - Fixes INBOX-5795
311
- - Fixes LTE-2111
312
- - Fixes INBOX-5706
313
- - Fixes INBOX-5632
314
- - Fixes INBOX-5476
315
- - n/a
316
- - Fixes INBOX-5881
317
- - Fixes INBOX-5809
318
- - Fixes TEST-91
319
- - Fixes https://clickview.atlassian.net/browse/INBOX-5771
320
- - Fixes INBOX-5692
321
- - Implements CORE-1322
@@ -1,7 +0,0 @@
1
-
2
- # Code changes
3
- - Add Google font Inter to layout head
4
-
5
-
6
- # Testing
7
-
@@ -1,27 +0,0 @@
1
-
2
- # Before release
3
- - [ ] Update `ClickView.Clients.User` to latest version
4
-
5
-
6
- # Dependencies
7
- - https://gitlab.cvinternal.net/clickview/back-end/clients/-/merge_requests/157
8
-
9
-
10
- # Customer changes
11
- - Support powerschool in rostering
12
-
13
-
14
- # Code changes
15
- - Added support to update `First Name` and `Surname` on bulk user invitation. FIXES INBOX-6153
16
-
17
- - Add powerschool mappings to rostering
18
-
19
- - Review `GetSyncLockContext` in job handlers that are not strongly related to customer. Fixes INBOX-5608
20
-
21
-
22
- # Testing
23
- INBOX-6153
24
-
25
-
26
- INBOX-5608
27
-
@@ -1,12 +0,0 @@
1
-
2
- # Customer changes
3
- - Old video links should now redirect to their equivalent url in the new product, if the signed in user only has access to the new product. Implements INBOX-5980.
4
- - Updated the Exchange redirect to redirect to the new ClickView rather than the Exchange Archive.
5
-
6
- - Filter out exchange content from the latest releases widget. Fixes INBOX-6068.
7
-
8
-
9
- # Testing
10
- - Implements INBOX-5980.
11
-
12
-
@@ -1,166 +0,0 @@
1
-
2
- # Before release
3
- * [ ] Add scope `domainapi.internal` for the curator auth client id `5bdc762c703942578329` in curator prod
4
-
5
- * Update Elastic mapping schema to include new properties: `seriesSort`, `nameSort`
6
- ```plaintext
7
- [PUT] curation_studio_videos/_mapping
8
- {
9
- "properties": {
10
- "seriesSort": {
11
- "type": "keyword"
12
- }
13
- }
14
- }
15
- [PUT] curation_studio_videos/_mapping
16
- {
17
- "properties": {
18
- "nameSort": {
19
- "type": "keyword"
20
- }
21
- }
22
- }
23
- [PUT] curation_studio_dashboards/_mapping
24
- {
25
- "properties": {
26
- "nameSort": {
27
- "type": "keyword"
28
- }
29
- }
30
- }
31
- [PUT] curation_studio_topics/_mapping
32
- {
33
- "properties": {
34
- "nameSort": {
35
- "type": "keyword"
36
- }
37
- }
38
- }
39
- ```
40
- * Hit re-sync endpoints to re-index videos, then topics then dashboards sequentially after pushing the release to production. Better to do this after 6:00 PM.
41
-
42
- * Update Elastic Search mapping file in production to add `hasCurationTags`
43
- ```plaintext
44
- [PUT] curation_studio_videos/_mapping
45
- {
46
- "properties": {
47
- "hasCurationTags": {
48
- "type": "boolean"
49
- }
50
- }
51
- }
52
- ```
53
- * Hit re-sync endpoints to re-index videos after pushing the release to production. Better to do this after 6:00 PM.
54
-
55
- * Update Elastic Search production mapping schema to add `assignees`
56
- ```plaintext
57
- [PUT] curation_studio_videos/_mapping
58
- {
59
- "properties": {
60
- "assignees": {
61
- "type": "nested",
62
- "properties": {
63
- "id": { "type": "double" },
64
- "stage": { "type": "keyword" }
65
- }
66
- }
67
- }
68
- }
69
- [PUT] curation_studio_dashboards/_mapping
70
- {
71
- "properties": {
72
- "assignees": {
73
- "type": "nested",
74
- "properties": {
75
- "id": { "type": "double" },
76
- "stage": { "type": "keyword" }
77
- }
78
- }
79
- }
80
- }
81
- [PUT] curation_studio_topics/_mapping
82
- {
83
- "properties": {
84
- "assignees": {
85
- "type": "nested",
86
- "properties": {
87
- "id": { "type": "double" },
88
- "stage": { "type": "keyword" }
89
- }
90
- }
91
- }
92
- }
93
- ```
94
- * Hit re-sync endpoints to re-index videos, then topics, then dashboards sequentially after pushing the release to production. Better to do this after 6:00 PM.
95
- * Run the tool to update existing dashboard's `assignedTo` data to the new `assignees` in produciton mongo db. Tool MR is here: https://gitlab.cvinternal.net/kevin.well/clickview.tools/-/merge_requests/38
96
-
97
-
98
- # Dependencies
99
- - https://gitlab.cvinternal.net/clickview/front-end/clickview/-/merge_requests/3969
100
-
101
-
102
- # Customer changes
103
- - Add calendar to streamable learning nav
104
-
105
- - Added a streamable tab and subnav
106
-
107
-
108
- # Code changes
109
- * Append sort by entity id
110
-
111
- * Support removing stage assignee
112
-
113
- * Use `v1/internal/videos/{id}/copy` to add the video to requester's workspace
114
-
115
- * Content Pipeline only updates rightsline status when publishing a video if the rightsline status is not already active
116
-
117
- * Making sure regions is serialised correctly
118
-
119
- * Use domain api `POST v2/videos/{id}/copy` endpoint to copy fulfilled video to a requesting user's workspace when fulfilling ad-free request, pay tv request and TV guide video
120
- * Remove `PushFromMaster()` from domain api client as it is no longer in use
121
-
122
- - Updating jquery to latest 3.x.x version. Partially implements INBOX-6076
123
-
124
- - The content & curation teams will not be able to see the Streamable Learning tab as it's still in development
125
-
126
- * Updated action log so it can generate weekly report
127
-
128
- * Content Pipelien supports sort by video name and series name alphabetically
129
- * Content Pipelien supports sort by date created from the newest to the oldest
130
-
131
- * Index `hasCurationTags`
132
- * Add `hasCurationTags` boolean filter
133
-
134
- * Populate date released on content that aren't TV content during publish. Implements INBOX-5986
135
-
136
- - Add Google font Inter to layout head
137
-
138
- * Add on `AssignedTo` for videos, dashboard and topcis at each stage
139
-
140
- * Get accurate count from elasticsearch. Fixes CC-858
141
-
142
-
143
- # Testing
144
- * n/a
145
-
146
-
147
- * INBOX-4482
148
-
149
-
150
-
151
- * INBOX-4482
152
-
153
-
154
-
155
-
156
-
157
- - N/A
158
-
159
-
160
-
161
- * Implements INBOX-5986
162
-
163
-
164
-
165
- * Fixes CC-858
166
-
@@ -1,14 +0,0 @@
1
-
2
- # ClickView.Clients.Braze
3
-
4
- ## Code changes
5
- - Add `RenameExternalIdAsync` and `RemoveExternalIdAsync` methods
6
-
7
- # ClickView.Clients.User
8
-
9
- ## Code changes
10
- * Add `FirstName` and `Surname` to `BulkInviteUsersResponse` and `InviteUser` used in `BulkInviteExistingUsersAsync` as part of the change in https://gitlab.cvinternal.net/clickview/back-end/users.api/-/merge_requests/261. FIXES INBOX-6153
11
- * Add `NotFound` check in `GetUsersByIdsAsync()` to avoid the null reference exception if all requested users are deleted
12
- * Add `NotFound` check in `GetUsersAsync()` to avoid the null reference exception if a customer does not exist
13
-
14
- # Testing
@@ -1,13 +0,0 @@
1
-
2
- # Code changes
3
- - Update `EdGateImporter` to use a single EdGate data file with a complete snapshot of the curriculums rather than incremental changes
4
-
5
- - Instead of fetching all the versions of a node/correlation and then selecting the highest version in the C#, only fetch the newest version from the database
6
-
7
- - Update older versions of nodes/correlations in the repository to centralise the logic.
8
-
9
-
10
- # Testing
11
-
12
-
13
-