@clickview/ship-it 0.0.42-dev.1 → 0.0.42

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 (129) hide show
  1. package/Dockerfile +37 -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 +581 -564
  6. package/lib/src/api-clients/git-lab/GitLabMapper.js +122 -122
  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 +76 -76
  12. package/lib/src/commands/ConfigureProjectsCommand.js +84 -84
  13. package/lib/src/commands/CreateBranchCommand.js +100 -100
  14. package/lib/src/commands/CreateMergeRequestCommand.js +107 -107
  15. package/lib/src/commands/CreateNotesAuditCommand.js +84 -84
  16. package/lib/src/commands/CreateReleaseNotesCommand.js +95 -95
  17. package/lib/src/commands/CreateTrelloCardsCommand.js +76 -76
  18. package/lib/src/commands/InstallPackagesCommand.js +76 -76
  19. package/lib/src/commands/ListProjectsCommand.js +76 -76
  20. package/lib/src/commands/ReleaseCommand.js +136 -136
  21. package/lib/src/commands/StartProjectBuildsCommand.js +76 -76
  22. package/lib/src/commands/StatusCommand.js +93 -93
  23. package/lib/src/commands/TagMasterCommand.js +76 -76
  24. package/lib/src/commands/ToolingReleaseCommand.js +144 -0
  25. package/lib/src/commands/ValidateMergeRequestCommand.js +76 -76
  26. package/lib/src/commands/VersionCommand.js +76 -76
  27. package/lib/src/commands/index.js +32 -31
  28. package/lib/src/constants/CommandTypeMapping.js +22 -21
  29. package/lib/src/constants/GitLabMemberIds.js +6 -6
  30. package/lib/src/constants/MonorepoPackageJsonFiles.js +41 -41
  31. package/lib/src/constants/MonorepoProjectNames.js +16 -16
  32. package/lib/src/constants/ProjectNames.js +69 -69
  33. package/lib/src/constants/SlackUserEmailList.js +13 -13
  34. package/lib/src/constants/TeamCityBuildIDs.js +46 -46
  35. package/lib/src/constants/index.js +19 -19
  36. package/lib/src/errors/ShipItError.js +32 -32
  37. package/lib/src/errors/index.js +17 -17
  38. package/lib/src/index.js +18 -18
  39. package/lib/src/interfaces/Config.js +2 -2
  40. package/lib/src/interfaces/MergeRequestState.js +2 -2
  41. package/lib/src/interfaces/ProjectNames.js +2 -2
  42. package/lib/src/interfaces/ShipItCommand.js +2 -2
  43. package/lib/src/interfaces/ShipItTask.js +2 -2
  44. package/lib/src/interfaces/SourceBranch.js +2 -0
  45. package/lib/src/interfaces/VersionType.js +2 -2
  46. package/lib/src/interfaces/command-cli-options/DockerMilestoneCommandCliOptions.js +2 -2
  47. package/lib/src/interfaces/command-cli-options/MilestoneCommandCliOptions.js +2 -2
  48. package/lib/src/interfaces/command-cli-options/ReleaseCommandCliOptions.js +2 -2
  49. package/lib/src/interfaces/command-cli-options/StatusCommandCliOptions.js +2 -2
  50. package/lib/src/interfaces/command-cli-options/ToolingReleaseCommandCliOptions.js +2 -0
  51. package/lib/src/interfaces/command-cli-options/index.js +20 -19
  52. package/lib/src/interfaces/command-options/BaseCommandOptions.js +2 -2
  53. package/lib/src/interfaces/command-options/BumpPackagesCommandOptions.js +2 -2
  54. package/lib/src/interfaces/command-options/ConfigureProjectsOptions.js +2 -2
  55. package/lib/src/interfaces/command-options/DockerMilestoneCommandOptions.js +2 -2
  56. package/lib/src/interfaces/command-options/MilestoneCommandOptions.js +2 -2
  57. package/lib/src/interfaces/command-options/ReleaseCommandOptions.js +2 -2
  58. package/lib/src/interfaces/command-options/StatusCommandOptions.js +2 -2
  59. package/lib/src/interfaces/command-options/ToolingReleaseCommandOptions.js +2 -0
  60. package/lib/src/interfaces/command-options/ValidateMRCommandOptions.js +2 -2
  61. package/lib/src/interfaces/command-options/index.js +24 -23
  62. package/lib/src/interfaces/index.js +26 -26
  63. package/lib/src/interfaces/models/ApprovalRule.js +2 -2
  64. package/lib/src/interfaces/models/ApprovalRuleConfiguration.js +2 -2
  65. package/lib/src/interfaces/models/Branch.js +2 -2
  66. package/lib/src/interfaces/models/Commit.js +2 -2
  67. package/lib/src/interfaces/models/CommitFile.js +2 -2
  68. package/lib/src/interfaces/models/CreateApprovalRuleRequest.js +2 -2
  69. package/lib/src/interfaces/models/File.js +2 -2
  70. package/lib/src/interfaces/models/Group.js +2 -2
  71. package/lib/src/interfaces/models/Label.js +2 -2
  72. package/lib/src/interfaces/models/MergeRequest.js +2 -2
  73. package/lib/src/interfaces/models/Milestone.js +2 -2
  74. package/lib/src/interfaces/models/Project.js +2 -2
  75. package/lib/src/interfaces/models/ProjectConfig.js +9 -9
  76. package/lib/src/interfaces/models/ProtectedBranch.js +2 -2
  77. package/lib/src/interfaces/models/Release.js +2 -2
  78. package/lib/src/interfaces/models/Tag.js +2 -2
  79. package/lib/src/interfaces/models/index.js +32 -32
  80. package/lib/src/interfaces/view-models/MilestoneProject.js +2 -2
  81. package/lib/src/interfaces/view-models/index.js +17 -17
  82. package/lib/src/inversify.config.js +82 -79
  83. package/lib/src/services/GitLabService.js +556 -553
  84. package/lib/src/services/SlackService.js +142 -142
  85. package/lib/src/services/TeamCityService.js +37 -37
  86. package/lib/src/services/TrelloService.js +84 -84
  87. package/lib/src/services/index.js +20 -20
  88. package/lib/src/startup/AddMilestoneCommand.js +92 -88
  89. package/lib/src/startup/GetAction.js +68 -68
  90. package/lib/src/startup/SetupCommands.js +228 -191
  91. package/lib/src/tasks/BumpPackagesTask.js +230 -230
  92. package/lib/src/tasks/BumpVersionTxtTask.js +110 -110
  93. package/lib/src/tasks/{CommitPackageVersionsTask.js → ChangeMilestoneTask.js} +117 -116
  94. package/lib/src/tasks/CreateBranchTask.js +109 -104
  95. package/lib/src/tasks/CreateMergeRequestTask.js +126 -126
  96. package/lib/src/tasks/CreateNotesAuditTask.js +140 -140
  97. package/lib/src/tasks/CreateReleaseNotesTask.js +144 -144
  98. package/lib/src/tasks/InstallPackagesTask.js +409 -409
  99. package/lib/src/tasks/ListProjectsTask.js +87 -87
  100. package/lib/src/tasks/PopulateTrelloBoardTask.js +140 -140
  101. package/lib/src/tasks/StartMonorepoBuildTask.js +109 -109
  102. package/lib/src/tasks/StartProjectBuildsTask.js +164 -164
  103. package/lib/src/tasks/TagMasterTask.js +200 -196
  104. package/lib/src/tasks/ValidateCommitsTask.js +210 -210
  105. package/lib/src/tasks/ValidateDescriptionsTask.js +164 -178
  106. package/lib/src/tasks/ValidateMergeRequestTask.js +115 -115
  107. package/lib/src/tasks/ValidateTask.js +419 -419
  108. package/lib/src/tasks/VersionTask.js +98 -98
  109. package/lib/src/tasks/configure-projects/AddApprovalRulesTask.js +199 -199
  110. package/lib/src/tasks/configure-projects/CreateToolingBranchTask.js +138 -138
  111. package/lib/src/tasks/configure-projects/EnsureApprovalRulesTask.js +106 -106
  112. package/lib/src/tasks/configure-projects/index.js +18 -18
  113. package/lib/src/tasks/configure-projects/primitives/BaseConfigureProjectsTask.js +98 -98
  114. package/lib/src/tasks/index.js +34 -34
  115. package/lib/src/types.js +62 -60
  116. package/lib/src/utils/BranchNames.js +11 -11
  117. package/lib/src/utils/Commits.js +90 -82
  118. package/lib/src/utils/Csv.js +54 -54
  119. package/lib/src/utils/Descriptions.js +274 -274
  120. package/lib/src/utils/GroupIds.js +6 -6
  121. package/lib/src/utils/Logger.js +62 -62
  122. package/lib/src/utils/ProjectIds.js +48 -48
  123. package/lib/src/utils/Versions.js +20 -20
  124. package/lib/src/utils/index.js +22 -22
  125. package/package.json +50 -50
  126. package/dist/I3/I3 Notes Audit.csv +0 -127
  127. package/dist/J1/J1 Notes Audit.csv +0 -38
  128. package/dist/J2/J2 Notes Audit.csv +0 -52
  129. package/dist/L1/L1 Notes Audit.csv +0 -139
@@ -1,52 +0,0 @@
1
- projectName,mrTitle,mrAuthor,mrAssignee,mrUrl,notes
2
- FileGenerator,Generate imscc file,Ryan Wang,Cameron Hill,https://gitlab.cvinternal.net/clickview/back-end/filegenerator/-/merge_requests/136,* Generate `.imscc` file to be imported into LMS
3
- clickview,"Content Pipeline: ""Is Curated"" indicator",Joshua Taylor,Joshua Taylor,https://gitlab.cvinternal.net/clickview/front-end/clickview/-/merge_requests/4875,"# Curator
4
- - When publishing a topic via the content pipeline, users will now be asked if the topic is curated."
5
- clickview,Lite: Disabled audiences tooltip,Joshua Taylor,Nan Chen,https://gitlab.cvinternal.net/clickview/front-end/clickview/-/merge_requests/4871,"# Lite
6
- - Topic pages with disabled audiences will now display a tooltip explaining why they're disabled."
7
- clickview,Lite: Highlight presentation items,Joshua Taylor,Nan Chen,https://gitlab.cvinternal.net/clickview/front-end/clickview/-/merge_requests/4870,"# Lite
8
- - In AU, the tile to explore all subjects on the top widget on Discover should now be highlighted
9
- - In AU, the tile to change presentations on the top widget on Discover should now be highlighted
10
-
11
- ![CleanShot_2024-08-21_at_11.22.07_2x](/uploads/b813c5ff15d1ecf244041ead27fd9467/CleanShot_2024-08-21_at_11.22.07_2x.png)"
12
- clickview,Lite: Calendar tile fixes,Joshua Taylor,Nan Chen,https://gitlab.cvinternal.net/clickview/front-end/clickview/-/merge_requests/4869,"# Lite
13
- - Updated special event topics to show the correct month range for the event in their banner."
14
- clickview,Lite: Preview videos in the popup plugin.,Shale Kuzmanovski,Boris Berak,https://gitlab.cvinternal.net/clickview/front-end/clickview/-/merge_requests/4868,"# Lite
15
- - The new popup mode plugin now allows previewing videos before embedding them, further leveraging the extra screen real-estate the improved plugin mode has given us. This greatly improves the user experience of selecting a video, as the user may first preview the video before embedding it."
16
- clickview,Player: Interactive improvements,Shale Kuzmanovski,Joshua Taylor,https://gitlab.cvinternal.net/clickview/front-end/clickview/-/merge_requests/4867,"# Player
17
- - Few minor improvements to the interactive player.
18
- - When creating an interactive, navigating to another part of the video when a question is open, will no longer flicker the select a question type UI. Instead the pane will simply fade out. Fixes LTE-2685.
19
- - When uploading images to either the image interaction, an error will now show if either a non image file is selected, or more than one file is selected. Fixes LTE-2684.
20
- - Fixed a bug where the player would not prompt if the user wanted to discard their progress on an interaction while editing it. Fixes LTE-2683."
21
- clickview,Lite: Series episodes widget,Joshua Taylor,Joshua Taylor,https://gitlab.cvinternal.net/clickview/front-end/clickview/-/merge_requests/4864,"# Curator
22
- - Added support for a series videos widget"
23
- clickview,Lite: Related videos for my videos,Shale Kuzmanovski,Joshua Taylor,https://gitlab.cvinternal.net/clickview/front-end/clickview/-/merge_requests/4860,"# Lite
24
- - Going to the play page from ""My Videos"" will now show other videos in your My Videos root folder under the ""Up next"" heading."
25
- clickview,Shared: Close popups on navigate,Shale Kuzmanovski,Michael McDonnell,https://gitlab.cvinternal.net/clickview/front-end/clickview/-/merge_requests/4856,"# Shared
26
- - Popups will now close if you hit the back button. Fixes INBOX-7308."
27
- clickview,Player: Fix how our short answer questions present in the interactive summary,Shale Kuzmanovski,Joshua Taylor,https://gitlab.cvinternal.net/clickview/front-end/clickview/-/merge_requests/4855,"# Player
28
- - Fix how our short answer questions present in the interactive summary. Fixes INBOX-7272."
29
- clickview,Lite: Breadcrumb minor improvements,Shale Kuzmanovski,Joshua Taylor,https://gitlab.cvinternal.net/clickview/front-end/clickview/-/merge_requests/4854,"# Lite
30
- - Longer breadcrumb segments will now trim. Fixes INBOX-7306.
31
- - We now have breadcrumbs back to the playlist when viewing videos from a shared playlist. Fixes INBOX-7307."
32
- clickview,Lite: Ready to watch my videos uploads,Shale Kuzmanovski,Cameron Hill,https://gitlab.cvinternal.net/clickview/front-end/clickview/-/merge_requests/4851,"# Lite
33
- - Videos which have had their lowest resolution processed will now say ""Ready to watch, still processing higher resolutions"" instead of ""PROCESSING 100%"". Fixes INBOX-7317."
34
- clickview,Streamable: Use product name in chunk load error,Mathew Ly,Joshua Taylor,https://gitlab.cvinternal.net/clickview/front-end/clickview/-/merge_requests/4848,"# Streamable Learning
35
- - Update product name to Streamable Learning instead of ClickView in the 'New version available' popup"
36
- clickview,Lite: Video mask icon responsiveness,Joshua Taylor,Michael McDonnell,https://gitlab.cvinternal.net/clickview/front-end/clickview/-/merge_requests/4847,"# Lite
37
- - Updated the video mask icon to be responsive"
38
- clickview,Lite: Update video and interactive max length validation,Mathew Ly,Shale Kuzmanovski,https://gitlab.cvinternal.net/clickview/front-end/clickview/-/merge_requests/4846,"# Lite
39
- - Update edit video title max length validation
40
-
41
- # Player
42
- - Add interactive question and answers max length validation"
43
- clickview,Exchange: Show tv channel displayName instead of name,Mathew Ly,Nan Chen,https://gitlab.cvinternal.net/clickview/front-end/clickview/-/merge_requests/4818,"# Exchange
44
- - Show tv channel displayName instead of name"
45
- clickview,Lite: Fix resources toc count,Mathew Ly,Nan Chen,https://gitlab.cvinternal.net/clickview/front-end/clickview/-/merge_requests/4815,"# Lite
46
- - Fix Resources count in play page table of contents not including links"
47
- clickview,Content pipeline - Support all presentatinos filter in review stage,Nan Chen,Joshua Taylor,https://gitlab.cvinternal.net/clickview/front-end/clickview/-/merge_requests/4784,"# Curator
48
- * Add the `All presentations` option to the presentation filter in the Review stage in the content pipeline."
49
- ClickView Online,Hide upgrade banner post-upgrade,Michael McDonnell,Shale Kuzmanovski,https://gitlab.cvinternal.net/clickview/front-end/ClickView.Online/-/merge_requests/3312,"- The new product upgrade banner will no longer be displayed to users once their customer has completed the upgrade. This will mean users of online-only legacy features (i.e. TV guide) will not receive confusing messaging.
50
- - Fixes INBOX-7314"
51
- Integrations.Api,Use only the surname initial in Give Praise feedback,Jorge Arai,Ryan Wang,https://gitlab.cvinternal.net/clickview/front-end/integrations.api/-/merge_requests/155,- Give praise feedback should be received in Slack with the user's last name initial
52
- Lite,Update year to grade for US,Mathew Ly,Shale Kuzmanovski,https://gitlab.cvinternal.net/clickview/front-end/lite/-/merge_requests/771,- Update all occurrences of the term 'year' to 'grade' for US
@@ -1,139 +0,0 @@
1
- projectName,mrTitle,mrAuthor,mrAssignee,mrUrl,notes
2
- clickview,Lite: Small insights polishes,Mathew Ly,Nan Chen,https://gitlab.cvinternal.net/clickview/front-end/clickview/-/merge_requests/5143,"# Lite
3
- - Fix insights responsive cards
4
- - Update heatmap video width to align with student heatmap column
5
- - Fix share details partial loading"
6
- clickview,Lite: My Shares polishes,Mathew Ly,Nan Chen,https://gitlab.cvinternal.net/clickview/front-end/clickview/-/merge_requests/5141,"# Lite
7
- - Fix share details partial loading appearing when the video isn't shared
8
- - Change 'Results' page to 'Students'
9
- - Add table headings to My Shares"
10
- clickview,Reports: Analytics redesign feature branch,Mathew Ly,Shale Kuzmanovski,https://gitlab.cvinternal.net/clickview/front-end/clickview/-/merge_requests/5137,"# Reports
11
- - Implement upload school logo in left nav
12
- - Rename to school analytics
13
- - Update components to match latest design system
14
- - Implement Video Views overview page
15
- - Implement Video Views Top 100 page
16
- - Implement Video Views object page
17
- - Implement school logins page
18
- - Implement feature switch for users with my shares permission"
19
- clickview,User man- Handle unknown year group in year group rollover action,Nan Chen,Joshua Taylor,https://gitlab.cvinternal.net/clickview/front-end/clickview/-/merge_requests/5134,"# Curator
20
- - If any of the students has unknown year group, the bulk year group rollover action will not process them. A clear copy was added for better communication.
21
-
22
- # Lite
23
- - If any of the students has unknown year group, the bulk year group rollover action will not process them. A clear copy was added for better communication.
24
-
25
- # Online
26
- - If any of the students has unknown year group, the bulk year group rollover action will not process them. A clear copy was added for better communication."
27
- clickview,Lite: Search polish,Nischal Shrestha,Joshua Taylor,https://gitlab.cvinternal.net/clickview/front-end/clickview/-/merge_requests/5131,"# Lite
28
- - Search keyword suggestions now highlight current search query.
29
- - Search bar now displays clear button.
30
- - Opening search bar suggestions hides body scrollbar."
31
- clickview,Customer wizard - Region stage,Nan Chen,Joshua Taylor,https://gitlab.cvinternal.net/clickview/front-end/clickview/-/merge_requests/5130,"# Curator
32
- - Added Customer wizard region step"
33
- clickview,Lite: Remove NP Upgrade feedback banner,Joshua Taylor,Mathew Ly,https://gitlab.cvinternal.net/clickview/front-end/clickview/-/merge_requests/5125,"# Lite
34
- - NP Upgrade customers will no longer see the feedback banner"
35
- clickview,Lite/Auth: Merry Christmas ‍🎄🎅🎁,Mathew Ly,Nan Chen,https://gitlab.cvinternal.net/clickview/front-end/clickview/-/merge_requests/5121,"# Lite
36
- - Update ClickView logo xmas theme
37
- - Update Movies and TV xmas theme
38
-
39
- # Auth
40
- - Update ClickView logo xmas theme
41
- - Update Xmas theme backgrounds"
42
- clickview,Curator- Replace old V@G preview,Nan Chen,Joshua Taylor,https://gitlab.cvinternal.net/clickview/front-end/clickview/-/merge_requests/5120,"# Curator
43
- - Replace the video at glance preview with the new UI."
44
- clickview,Shared: AppLink new tab fix,Joshua Taylor,Shale Kuzmanovski,https://gitlab.cvinternal.net/clickview/front-end/clickview/-/merge_requests/5119,"# Lite
45
- - Users can now open links in a new tab using command+click.
46
-
47
- # Streamable Learning
48
- - Users can now open links in a new tab using command+click.
49
-
50
- # Reports
51
- - Users can now open links in a new tab using command+click."
52
- clickview,Lite: Unread notification count,Joshua Taylor,Michael McDonnell,https://gitlab.cvinternal.net/clickview/front-end/clickview/-/merge_requests/5118,"# Lite
53
- - Updated the style of the unread notification count so that it's a little bit smaller
54
- - Updated the unread notification count to display ""99+"" if the user has >99 unread notifications"
55
- clickview,User man - Fix year group copy,Nan Chen,Joshua Taylor,https://gitlab.cvinternal.net/clickview/front-end/clickview/-/merge_requests/5117,"# Lite
56
- - Fix `year level` copy in the upload student spreadsheet popup for AU.
57
-
58
- # Curator
59
- - Fix `year level` copy in the upload student spreadsheet popup for AU.
60
-
61
- # Online
62
- - Fix `year level` copy in the upload student spreadsheet popup for AU."
63
- clickview,Lite: More green dots,Joshua Taylor,Nan Chen,https://gitlab.cvinternal.net/clickview/front-end/clickview/-/merge_requests/5112,"# Lite
64
- - Fixed a bug where system generated topics weren't displaying the green ""new video"" dot in the vertical video lists.
65
- - Updated the videos in the following places to display the green ""New video"" indicator dot:
66
- - Series
67
- - Related videos on play pages
68
- - New releases tab"
69
- clickview,Lite: Tertiary fixes,Joshua Taylor,Mathew Ly,https://gitlab.cvinternal.net/clickview/front-end/clickview/-/merge_requests/5111,"# Lite
70
- - Fixed a bug where the subjects summary screen in the onboarding was not displaying a cover image for tertiary presentations
71
- - Fixed a bug where the series link on videos on tertiary topics were linking to our production company URL
72
- - Fixed a bug where the job titles displayed in the trial sign up form for users who selected a tertiary institution type were the K12 titles rather than the tertiary titles
73
- - Renamed ""school"" to ""institution"" for tertiary in the invite a colleague form"
74
- clickview,TV: The Last Holiday Banner I Ever Do,Michael McDonnell,Shale Kuzmanovski,https://gitlab.cvinternal.net/clickview/front-end/clickview/-/merge_requests/5109,"# Exchange
75
- - When make an ad-free/Foxtel/BBC Res request between December 15th and January 6th a holiday notice banner will now be displayed
76
- - Ad-free request:
77
- - ![0](https://i.imgur.com/ebtkynk.png)
78
- - Foxtel/BBC Res request
79
- - ![1](https://i.imgur.com/dpBWGs9.png)
80
- - Implements INBOX-7772"
81
- clickview,Curator: Pipeline layout fixes,Joshua Taylor,Nan Chen,https://gitlab.cvinternal.net/clickview/front-end/clickview/-/merge_requests/5105,"# Curator
82
- - Updated all pipeline stages to have the horizontal scrollbar on the table visible without needing to scroll the page"
83
- clickview,Curator: Remove blacklisted libraries,Joshua Taylor,Nan Chen,https://gitlab.cvinternal.net/clickview/front-end/clickview/-/merge_requests/5103,"# Curator
84
- - Updated the content pipeline to filter out the blacklisted hosted libraries from the libraries forms"
85
- clickview,Lite: Archived content review videos,Shale Kuzmanovski,Joshua Taylor,https://gitlab.cvinternal.net/clickview/front-end/clickview/-/merge_requests/5102,"# Lite
86
- - Archived videos will now show their content review actions properly. Partially fixes INBOX-7729."
87
- clickview,Auth: Clever + SL Workflow improvement,Shale Kuzmanovski,Cameron Hill,https://gitlab.cvinternal.net/clickview/front-end/clickview/-/merge_requests/5101,"# Auth
88
- - Fixing a circular workflow when a user signs in using Clever for Streamable Learning. Fixes INBOX-7834."
89
- clickview,User manager - Handle unknown year group,Nan Chen,Joshua Taylor,https://gitlab.cvinternal.net/clickview/front-end/clickview/-/merge_requests/5094,"# Lite
90
- * Add a warning banner to student manager if there are `Unknown` year group student.
91
-
92
- # Curator
93
- * Add a warning banner to student manager if there are `Unknown` year group student.
94
-
95
- # Online
96
- * Add a warning banner to student manager if there are `Unknown` year group student."
97
- clickview,Lite: My Shares updates,Mathew Ly,Shale Kuzmanovski,https://gitlab.cvinternal.net/clickview/front-end/clickview/-/merge_requests/5088,"# Lite
98
- - Implement share details banner in Insights header
99
- - Hide My Shares from public left nav
100
- - Update Share link icon tooltip based on privacy settings
101
- - Change Insights Overview tab label to Insights
102
- - Fix alignment of long Audience filter names"
103
- clickview,Auth: UI updates,Nischal Shrestha,Shale Kuzmanovski,https://gitlab.cvinternal.net/clickview/front-end/clickview/-/merge_requests/5084,"# Auth
104
- - New updated look for Auth UI. Implements CORE-1804."
105
- clickview,Curator: Fix a bug with removing content regions from interactives,Shale Kuzmanovski,Joshua Taylor,https://gitlab.cvinternal.net/clickview/front-end/clickview/-/merge_requests/5080,"# Curator
106
- - Removing content regions from interactives should now work as expected. Fixes INBOX-7764."
107
- clickview,Lite: Date region formatter,Mathew Ly,Joshua Taylor,https://gitlab.cvinternal.net/clickview/front-end/clickview/-/merge_requests/5078,"# Lite
108
- - Implement region date formatter
109
-
110
- # Streamable Learning
111
- - Implement region date formatter"
112
- clickview,Shared: Fix share recipient sub text,Shale Kuzmanovski,Joshua Taylor,https://gitlab.cvinternal.net/clickview/front-end/clickview/-/merge_requests/5076,"# Shared
113
- - Fix a bug where the share recipient sub text wasn't showing. Fixes INBOX-7623"
114
- clickview,Lite: Fix breadcrumbs when navigating to topics from M+TV,Michael McDonnell,Joshua Taylor,https://gitlab.cvinternal.net/clickview/front-end/clickview/-/merge_requests/5075,"# Lite
115
- - When accessing a topic that's part of our movies and tv dashboard, we'll always show the breadcrumbs for M+TV
116
- - Fixes INBOX-7309"
117
- clickview,Content pipeline - Fix missing presentationId with all presentation filter,Nan Chen,Joshua Taylor,https://gitlab.cvinternal.net/clickview/front-end/clickview/-/merge_requests/5074,"# Curator
118
- * Fix ID Column in Topic Assets stage of content pipeline doesn't have valid links issue."
119
- clickview,Search Results V2,Nischal Shrestha,Joshua Taylor,https://gitlab.cvinternal.net/clickview/front-end/clickview/-/merge_requests/5062,"# Lite
120
- - Added new search results page. Implements LTE-2866.
121
- - Added support for series stacked videos thumbnail design search widget. Implements LTE-2867.
122
- - New search results page related search can be infinitely scrolled. Implements LTE-2869.
123
- - Search widgets conditionally display's ""See all"". Implements LTE-2870."
124
- clickview,Shared: Update icons to new design system icons,Mathew Ly,Shale Kuzmanovski,https://gitlab.cvinternal.net/clickview/front-end/clickview/-/merge_requests/4973,"# Shared
125
- - Update a lot of icons to match the new icons in the design system"
126
- FileGenerator,ToListAsync time out,Ryan Wang,Jorge Arai,https://gitlab.cvinternal.net/clickview/back-end/filegenerator/-/merge_requests/158,* Potentially fix an issue where customer was unable to receive the analytics report. Closes INBOX-7850
127
- ClickView.Curator,Add new customer beta route,Nan Chen,Joshua Taylor,https://gitlab.cvinternal.net/clickview/front-end/ClickView.Curator/-/merge_requests/1561,- Add entry point for customer wizard under Sales support tab. It's now dev only tab.
128
- ClickView.Curator,Remove status dropdown & logic,Nan Chen,Joshua Taylor,https://gitlab.cvinternal.net/clickview/front-end/ClickView.Curator/-/merge_requests/1559,- Removed the organisation status dropdown
129
- Analytics Web,Add image upload api passthrough and banner image,Mathew Ly,Shale Kuzmanovski,https://gitlab.cvinternal.net/clickview/front-end/Analytics.Web/-/merge_requests/149,"- Add domain image api passthrough
130
- - Add insights banner image"
131
- ClickView Online,"redirect to Lite topic page if user has Lite account only, CVO-630",Wei Zong,Shale Kuzmanovski,https://gitlab.cvinternal.net/clickview/front-end/ClickView.Online/-/merge_requests/3331,"* When a user clicks on topic page inside the Online web, it redirects to the topic page in the Lite if the user has Lite account only."
132
- ClickView.EmailService,Update ThumbnailPlaceholder image,Michael McDonnell,Kevin Wellalagodage,https://gitlab.cvinternal.net/clickview/back-end/ClickView.EmailService/-/merge_requests/299,"- Update `ThumbnailPlaceholder` image to be a bit more generic
133
- - Fixes INBOX-7552
134
- - ![0](https://i.imgur.com/Gmij0GR.png)"
135
- Lite,Authorization rework,Cameron Hill,Shale Kuzmanovski,https://gitlab.cvinternal.net/clickview/front-end/lite/-/merge_requests/830,"- Fix users sometimes being logged out after a short amount of time. Fixes INBOX-7672
136
- - Fix logins sometimes not working because the URL is to big. Fixes LTE-2951"
137
- Share.Api,Fix notifications when direct sharing to classroom groups,Jorge Arai,Prad Nepal,https://gitlab.cvinternal.net/clickview/back-end/share.api/-/merge_requests/125,- Sharing to classroom group should work as expected
138
- Objects.Api,ensure the owner of shared library must be active,Ryan Wang,Prad Nepal,https://gitlab.cvinternal.net/clickview/back-end/objects.api/-/merge_requests/366,* Only active customer's shared library can be accessed by their subscribers. Closes INBOX-7758
139
- Objects.Api,Allow check interactive's archived parent video,Jorge Arai,Prad Nepal,https://gitlab.cvinternal.net/clickview/back-end/objects.api/-/merge_requests/362,- Fix sharing attempt for interactives which its video parent is archived