@clickview/ship-it 0.0.39 → 0.0.41

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 (124) hide show
  1. package/Dockerfile +33 -33
  2. package/README.md +48 -48
  3. package/config.json +19 -19
  4. package/dist/I3/I3 Notes Audit.csv +127 -0
  5. package/dist/J1/J1 Notes Audit.csv +38 -0
  6. package/dist/J2/J2 Notes Audit.csv +52 -0
  7. package/dist/L1/L1 Notes Audit.csv +139 -0
  8. package/lib/config.json +20 -20
  9. package/lib/src/api-clients/git-lab/GitLabApiClient.js +561 -439
  10. package/lib/src/api-clients/git-lab/GitLabMapper.js +122 -82
  11. package/lib/src/api-clients/index.js +20 -20
  12. package/lib/src/api-clients/slack/SlackApiClient.js +206 -206
  13. package/lib/src/api-clients/team-city/TeamCityApiClient.js +100 -100
  14. package/lib/src/api-clients/trello/TrelloApiClient.js +145 -145
  15. package/lib/src/commands/BumpPackagesCommand.js +76 -76
  16. package/lib/src/commands/ConfigureProjectsCommand.js +84 -0
  17. package/lib/src/commands/CreateBranchCommand.js +100 -100
  18. package/lib/src/commands/CreateMergeRequestCommand.js +107 -107
  19. package/lib/src/commands/CreateNotesAuditCommand.js +84 -84
  20. package/lib/src/commands/CreateReleaseNotesCommand.js +95 -95
  21. package/lib/src/commands/CreateTrelloCardsCommand.js +77 -77
  22. package/lib/src/commands/InstallPackagesCommand.js +76 -76
  23. package/lib/src/commands/ListProjectsCommand.js +76 -76
  24. package/lib/src/commands/ReleaseCommand.js +136 -129
  25. package/lib/src/commands/StartProjectBuildsCommand.js +76 -76
  26. package/lib/src/commands/StatusCommand.js +93 -88
  27. package/lib/src/commands/TagMasterCommand.js +76 -76
  28. package/lib/src/commands/ValidateMergeRequestCommand.js +76 -76
  29. package/lib/src/commands/VersionCommand.js +76 -76
  30. package/lib/src/commands/index.js +31 -30
  31. package/lib/src/constants/CommandTypeMapping.js +21 -20
  32. package/lib/src/constants/GitLabMemberIds.js +6 -6
  33. package/lib/src/constants/MonorepoPackageJsonFiles.js +41 -41
  34. package/lib/src/constants/MonorepoProjectNames.js +16 -16
  35. package/lib/src/constants/ProjectNames.js +69 -69
  36. package/lib/src/constants/SlackUserEmailList.js +13 -13
  37. package/lib/src/constants/TeamCityBuildIDs.js +46 -46
  38. package/lib/src/constants/index.js +19 -19
  39. package/lib/src/errors/ShipItError.js +32 -32
  40. package/lib/src/errors/index.js +17 -17
  41. package/lib/src/index.js +18 -18
  42. package/lib/src/interfaces/Config.js +2 -2
  43. package/lib/src/interfaces/MergeRequestState.js +2 -2
  44. package/lib/src/interfaces/ProjectNames.js +2 -2
  45. package/lib/src/interfaces/ShipItCommand.js +2 -2
  46. package/lib/src/interfaces/ShipItTask.js +2 -2
  47. package/lib/src/interfaces/VersionType.js +2 -2
  48. package/lib/src/interfaces/command-cli-options/MilestoneCommandCliOptions.js +2 -2
  49. package/lib/src/interfaces/command-cli-options/ReleaseCommandCliOptions.js +2 -2
  50. package/lib/src/interfaces/command-cli-options/StatusCommandCliOptions.js +2 -2
  51. package/lib/src/interfaces/command-cli-options/index.js +19 -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 -0
  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/ValidateMRCommandOptions.js +2 -2
  60. package/lib/src/interfaces/command-options/index.js +23 -22
  61. package/lib/src/interfaces/index.js +26 -26
  62. package/lib/src/interfaces/models/ApprovalRule.js +2 -0
  63. package/lib/src/interfaces/models/ApprovalRuleConfiguration.js +2 -0
  64. package/lib/src/interfaces/models/Branch.js +2 -2
  65. package/lib/src/interfaces/models/Commit.js +2 -2
  66. package/lib/src/interfaces/models/CommitFile.js +2 -2
  67. package/lib/src/interfaces/models/CreateApprovalRuleRequest.js +2 -0
  68. package/lib/src/interfaces/models/File.js +2 -2
  69. package/lib/src/interfaces/models/Group.js +2 -0
  70. package/lib/src/interfaces/models/Label.js +2 -2
  71. package/lib/src/interfaces/models/MergeRequest.js +2 -2
  72. package/lib/src/interfaces/models/Milestone.js +2 -2
  73. package/lib/src/interfaces/models/Project.js +2 -2
  74. package/lib/src/interfaces/models/ProjectConfig.js +9 -9
  75. package/lib/src/interfaces/models/ProtectedBranch.js +2 -0
  76. package/lib/src/interfaces/models/Release.js +2 -2
  77. package/lib/src/interfaces/models/Tag.js +2 -2
  78. package/lib/src/interfaces/models/index.js +32 -26
  79. package/lib/src/interfaces/view-models/MilestoneProject.js +2 -2
  80. package/lib/src/interfaces/view-models/index.js +17 -17
  81. package/lib/src/inversify.config.js +79 -74
  82. package/lib/src/services/GitLabService.js +544 -510
  83. package/lib/src/services/SlackService.js +142 -142
  84. package/lib/src/services/TeamCityService.js +37 -37
  85. package/lib/src/services/TrelloService.js +84 -84
  86. package/lib/src/services/index.js +20 -20
  87. package/lib/src/startup/AddMilestoneCommand.js +96 -96
  88. package/lib/src/startup/GetAction.js +68 -68
  89. package/lib/src/startup/SetupCommands.js +180 -168
  90. package/lib/src/tasks/BumpPackagesTask.js +230 -230
  91. package/lib/src/tasks/BumpVersionTxtTask.js +110 -110
  92. package/lib/src/tasks/CommitPackageVersionsTask.js +116 -0
  93. package/lib/src/tasks/CreateBranchTask.js +104 -104
  94. package/lib/src/tasks/CreateMergeRequestTask.js +118 -118
  95. package/lib/src/tasks/CreateNotesAuditTask.js +140 -140
  96. package/lib/src/tasks/CreateReleaseNotesTask.js +144 -144
  97. package/lib/src/tasks/InstallPackagesTask.js +415 -415
  98. package/lib/src/tasks/ListProjectsTask.js +87 -87
  99. package/lib/src/tasks/PopulateTrelloBoardTask.js +140 -140
  100. package/lib/src/tasks/StartMonorepoBuildTask.js +109 -109
  101. package/lib/src/tasks/StartProjectBuildsTask.js +170 -170
  102. package/lib/src/tasks/TagMasterTask.js +189 -189
  103. package/lib/src/tasks/ValidateCommitsTask.js +143 -143
  104. package/lib/src/tasks/ValidateDescriptionsTask.js +178 -178
  105. package/lib/src/tasks/ValidateMergeRequestTask.js +115 -115
  106. package/lib/src/tasks/ValidateTask.js +419 -419
  107. package/lib/src/tasks/VersionTask.js +98 -98
  108. package/lib/src/tasks/configure-projects/AddApprovalRulesTask.js +199 -0
  109. package/lib/src/tasks/configure-projects/CreateToolingBranchTask.js +138 -0
  110. package/lib/src/tasks/configure-projects/EnsureApprovalRulesTask.js +106 -0
  111. package/lib/src/tasks/configure-projects/index.js +18 -0
  112. package/lib/src/tasks/configure-projects/primitives/BaseConfigureProjectsTask.js +98 -0
  113. package/lib/src/tasks/index.js +34 -33
  114. package/lib/src/types.js +60 -56
  115. package/lib/src/utils/BranchNames.js +11 -11
  116. package/lib/src/utils/Commits.js +55 -55
  117. package/lib/src/utils/Csv.js +54 -54
  118. package/lib/src/utils/Descriptions.js +274 -274
  119. package/lib/src/utils/GroupIds.js +6 -6
  120. package/lib/src/utils/Logger.js +62 -62
  121. package/lib/src/utils/ProjectIds.js +47 -47
  122. package/lib/src/utils/Versions.js +20 -20
  123. package/lib/src/utils/index.js +22 -22
  124. package/package.json +50 -50
package/Dockerfile CHANGED
@@ -1,33 +1,33 @@
1
- FROM node:18.11.0
2
-
3
- WORKDIR /app
4
-
5
- COPY ["src", "src/"]
6
- # Copy files needed to install NPM packages
7
- COPY ["package.json", "package-lock.json", "./"]
8
-
9
- COPY ["tsconfig.json", "config.json", ".eslintrc.json", "./"]
10
-
11
- # Set an authentication token for NPM, allowing the build machine to install private NPM packages
12
- ARG npm_token
13
- ARG milestone
14
- ARG command
15
- ARG options
16
- ENV cliOptions=""
17
-
18
- RUN npm config set '//registry.npmjs.org/:_authToken' $npm_token
19
- RUN npm config set save-exact=true
20
- # Note: As of writing, NPM versions beyond 8.5.5 cannot run `npm ci` without failing. Once this is fixed, the line below should be deleted
21
- RUN npm install -g npm@8.5.5
22
-
23
- # Install NPM packages
24
- RUN npm install
25
-
26
- RUN npm run build
27
-
28
- RUN npm link
29
-
30
- RUN cliOptions=$(echo "$options" | sed -e 's/^"//' -e 's/"$//') && \
31
- echo "Build option: $cliOptions" && \
32
- ship-it $command -m $milestone $cliOptions
33
-
1
+ FROM node:18.11.0
2
+
3
+ WORKDIR /app
4
+
5
+ COPY ["src", "src/"]
6
+ # Copy files needed to install NPM packages
7
+ COPY ["package.json", "package-lock.json", "./"]
8
+
9
+ COPY ["tsconfig.json", "config.json", ".eslintrc.json", "./"]
10
+
11
+ # Set an authentication token for NPM, allowing the build machine to install private NPM packages
12
+ ARG npm_token
13
+ ARG milestone
14
+ ARG command
15
+ ARG options
16
+ ENV cliOptions=""
17
+
18
+ RUN npm config set '//registry.npmjs.org/:_authToken' $npm_token
19
+ RUN npm config set save-exact=true
20
+ # Note: As of writing, NPM versions beyond 8.5.5 cannot run `npm ci` without failing. Once this is fixed, the line below should be deleted
21
+ RUN npm install -g npm@8.5.5
22
+
23
+ # Install NPM packages
24
+ RUN npm install
25
+
26
+ RUN npm run build
27
+
28
+ RUN npm link
29
+
30
+ RUN cliOptions=$(echo "$options" | sed -e 's/^"//' -e 's/"$//') && \
31
+ echo "Build option: $cliOptions" && \
32
+ ship-it $command -m $milestone $cliOptions
33
+
package/README.md CHANGED
@@ -1,48 +1,48 @@
1
- # Ship It
2
-
3
- ## Introduction
4
-
5
- "Ship It" is a CLI tool that was created to automate aspects of our release workflow.
6
-
7
- ### How To Manage A Release
8
-
9
- If you are here to learn how to manage a release, please see [this document](https://clickview.quip.com/DbEyAaVK8sqB/Release-Manager-Checklist) instead.
10
-
11
- ### How To Contribute
12
-
13
- If you are here instead of learn about or contribute to this project, then you're in the right place! Keep reading :)
14
-
15
- ## Prerequisites
16
-
17
- * NodeJS (and npm)
18
- * Access to the ClickView organization on [npm](https://www.npmjs.com). You will need to add an npm auth token to a global or local `.npmrc` file
19
- * Add the `Ship It` user as a `Developer` to each GitLab project you would like to manage using the Ship It CLI
20
-
21
- ## Getting Started
22
-
23
- ```
24
- git clone https://gitlab.cvinternal.net/front-end/ship-it.git
25
- cd ship-it
26
- npm install
27
- ```
28
-
29
- After installation, you can run `npm run start -- help` to see the full list of commands.
30
-
31
- ## Contributing
32
-
33
- ### Open Issues
34
-
35
- All bugs / feature requests are tracked in the [issues](https://gitlab.cvinternal.net/clickview/front-end/ship-it/-/issues) section of this project.
36
-
37
- Anyone is free to pick up an issue and work on it at will! Don't be afraid, the TypeScript won't bite.
38
-
39
- ### Project Architecture
40
-
41
- Each CLI command is defined in the `startup/SetupCommands.ts` file.
42
-
43
- Each command maps to a particular TypeScript class in the `commands` directory.
44
- These command classes typically just sequentially run a set of "tasks", where each "task" can be shared across different commands.
45
- Each task also exists as a TypeScript class under the `tasks` directory.
46
-
47
- All code written in this project is intended to be highly reusable! If you are contributing a new command or updating an existing one, be sure to see if the code you're looking for already exists.
48
-
1
+ # Ship It
2
+
3
+ ## Introduction
4
+
5
+ "Ship It" is a CLI tool that was created to automate aspects of our release workflow.
6
+
7
+ ### How To Manage A Release
8
+
9
+ If you are here to learn how to manage a release, please see [this document](https://clickview.quip.com/DbEyAaVK8sqB/Release-Manager-Checklist) instead.
10
+
11
+ ### How To Contribute
12
+
13
+ If you are here instead of learn about or contribute to this project, then you're in the right place! Keep reading :)
14
+
15
+ ## Prerequisites
16
+
17
+ * NodeJS (and npm)
18
+ * Access to the ClickView organization on [npm](https://www.npmjs.com). You will need to add an npm auth token to a global or local `.npmrc` file
19
+ * Add the `Ship It` user as a `Developer` to each GitLab project you would like to manage using the Ship It CLI
20
+
21
+ ## Getting Started
22
+
23
+ ```
24
+ git clone https://gitlab.cvinternal.net/front-end/ship-it.git
25
+ cd ship-it
26
+ npm install
27
+ ```
28
+
29
+ After installation, you can run `npm run start -- help` to see the full list of commands.
30
+
31
+ ## Contributing
32
+
33
+ ### Open Issues
34
+
35
+ All bugs / feature requests are tracked in the [issues](https://gitlab.cvinternal.net/clickview/front-end/ship-it/-/issues) section of this project.
36
+
37
+ Anyone is free to pick up an issue and work on it at will! Don't be afraid, the TypeScript won't bite.
38
+
39
+ ### Project Architecture
40
+
41
+ Each CLI command is defined in the `startup/SetupCommands.ts` file.
42
+
43
+ Each command maps to a particular TypeScript class in the `commands` directory.
44
+ These command classes typically just sequentially run a set of "tasks", where each "task" can be shared across different commands.
45
+ Each task also exists as a TypeScript class under the `tasks` directory.
46
+
47
+ All code written in this project is intended to be highly reusable! If you are contributing a new command or updating an existing one, be sure to see if the code you're looking for already exists.
48
+
package/config.json CHANGED
@@ -1,20 +1,20 @@
1
- {
2
- "gitLab": {
3
- "accessToken": "glpat-d9TACyfNj3uaetfbGiPp",
4
- "url": "https://gitlab.cvinternal.net"
5
- },
6
- "teamCity": {
7
- "url": "http://build.cvinternal.net/",
8
- "username": "shale.kuzmanovski",
9
- "password": "hock-inflame-prodigy-unstrap"
10
- },
11
- "slack": {
12
- "botToken": "xoxb-10474490612-6484075093633-vEo2cgvi7nma9DDSzPEXWDrw",
13
- "channelId": "C03DX0DSG3F"
14
- },
15
- "trello": {
16
- "apiKey": "6e887685d44e94ae9a680c010c4b622d",
17
- "apiToken": "ATTA558c8969ce04b46fb9c9d6f645aa51be7f1c9dbb9b6f5f6f85ae6da2a209c1f39AAC612F",
18
- "boardId": "3edi3xiO"
19
- }
1
+ {
2
+ "gitLab": {
3
+ "accessToken": "glpat-d9TACyfNj3uaetfbGiPp",
4
+ "url": "https://gitlab.cvinternal.net"
5
+ },
6
+ "teamCity": {
7
+ "url": "http://build.cvinternal.net/",
8
+ "username": "shale.kuzmanovski",
9
+ "password": "hock-inflame-prodigy-unstrap"
10
+ },
11
+ "slack": {
12
+ "botToken": "xoxb-10474490612-6484075093633-vEo2cgvi7nma9DDSzPEXWDrw",
13
+ "channelId": "C03DX0DSG3F"
14
+ },
15
+ "trello": {
16
+ "apiKey": "6e887685d44e94ae9a680c010c4b622d",
17
+ "apiToken": "ATTA558c8969ce04b46fb9c9d6f645aa51be7f1c9dbb9b6f5f6f85ae6da2a209c1f39AAC612F",
18
+ "boardId": "3edi3xiO"
19
+ }
20
20
  }
@@ -0,0 +1,127 @@
1
+ projectName,mrTitle,mrAuthor,mrAssignee,mrUrl,notes
2
+ Search.Api,Fix user search for curators,Jorge Arai,Prad Nepal,https://gitlab.cvinternal.net/clickview/back-end/search.api/-/merge_requests/246,* Fixes users' search in Curator
3
+ Search.Api,Fix curators user search,Jorge Arai,Prad Nepal,https://gitlab.cvinternal.net/clickview/back-end/search.api/-/merge_requests/245,- Fixes users' search in Curator
4
+ clickview,Lite - Update time point style,Nan Chen,Mathew Ly,https://gitlab.cvinternal.net/clickview/front-end/clickview/-/merge_requests/4762,"# Lite
5
+ * Update interactive time point tag background color to light-blue for users who has `Has play page V2` domain option set to true;
6
+ *
7
+ * ![Screenshot 2024-07-22 at 2.20.26 pm.png](/uploads/89e32e76ebf5a4abf5ff4c8bf15b9e70/Screenshot_2024-07-22_at_2.20.26_pm.png){width=550 height=169}
8
+ * Update Points of interest time point tag background color in the new play page (feature switch with `Has play page V2` domain option).
9
+ * ![Screenshot 2024-07-22 at 2.21.51 pm.png](/uploads/5f7a9050936ac95d82d29034d3b3b356/Screenshot_2024-07-22_at_2.21.51_pm.png){width=364 height=164}"
10
+ clickview,Lite: Accesibility 2,Mathew Ly,Shale Kuzmanovski,https://gitlab.cvinternal.net/clickview/front-end/clickview/-/merge_requests/4761,"# Lite
11
+ - Implement keyboard accessibility for sliding widgets
12
+ - Implement skip to main content link
13
+ - Announce status updates for alerts, updated states and errors to screen readers
14
+ - Fix various accessibility and keyboard navigation issues"
15
+ clickview,Curator - Hide pins when resizing column,Nan Chen,Mathew Ly,https://gitlab.cvinternal.net/clickview/front-end/clickview/-/merge_requests/4759,"# Curator
16
+ * Prevent pins from showing when resizing the Content pipeline column"
17
+ clickview,Player: Menu hover styles fix,Shale Kuzmanovski,Boris Berak,https://gitlab.cvinternal.net/clickview/front-end/clickview/-/merge_requests/4757,"# Player
18
+ - Fix a minor CSS bug that was preventing the first menu item in the player from having a hover css effect applied. Fixes INBOX-6942.
19
+
20
+ ![image](/uploads/15fc5968a7a8a636b8142589b798cafb/image.png)"
21
+ clickview,Lite: Password protected share link button,Shale Kuzmanovski,Nan Chen,https://gitlab.cvinternal.net/clickview/front-end/clickview/-/merge_requests/4756,"# Lite
22
+ - Updated the submit button on the password protected share link form, so that it's consistently sized with the input."
23
+ clickview,Auth: a11y,Shale Kuzmanovski,Mathew Ly,https://gitlab.cvinternal.net/clickview/front-end/clickview/-/merge_requests/4753,"# Auth
24
+ - Fixing a few accessibility issues:
25
+ - CLV-0052: Remove alt text from layout imagers
26
+ - CLV-0053: Provide a title for our logos
27
+ - CLV-0058: associate error with input aria-errormessage
28
+ - CLV-0060: Auth email buttons are now keyboard accessible"
29
+ clickview,Lite - series hover style,Nan Chen,Shale Kuzmanovski,https://gitlab.cvinternal.net/clickview/front-end/clickview/-/merge_requests/4752,"# Lite
30
+ * Now in Lite, the series tall poster have a new hover look.
31
+ ![image.png](/uploads/ad7c6a010e0a848061418a5725b9cb04/image.png)"
32
+ clickview,Lite: Topic widget improvements,Shale Kuzmanovski,Nan Chen,https://gitlab.cvinternal.net/clickview/front-end/clickview/-/merge_requests/4751,"# Lite
33
+ - Updating our topic widgets' styling. Implements LTE-2703"
34
+ clickview,Streamable: Zipcode not postcode,Shale Kuzmanovski,Boris Berak,https://gitlab.cvinternal.net/clickview/front-end/clickview/-/merge_requests/4748,"# Streamable Learning
35
+ - Updated the livestream booking form and contact us form to ask for a ""zipcode or city"" rather than a ""postcode or suburb"". Fixes INBOX-7160."
36
+ clickview,Lite - Add count to topic banner,Nan Chen,Shale Kuzmanovski,https://gitlab.cvinternal.net/clickview/front-end/clickview/-/merge_requests/4745,"# Lite
37
+ * In the dashboard for a top-level topic, a details section was added to the banner under the title. It will show the count for child topics/videos/resources.
38
+ ![Screenshot 2024-07-17 at 2.56.10 pm.png](/uploads/1a085a41a02e2c577db882e5179242e5/Screenshot_2024-07-17_at_2.56.10_pm.png)"
39
+ clickview,Lite - PlaypageV2 heading update,Nan Chen,Boris Berak,https://gitlab.cvinternal.net/clickview/front-end/clickview/-/merge_requests/4743,"# Lite
40
+ * Update the new play page (feature switch by `Has play page V2` domain option) section heading style to all be h4 style. Remove the heading for the video details section."
41
+ clickview,Lite - Add image fallback to SubjectStatsWidgetItem,Nan Chen,Mathew Ly,https://gitlab.cvinternal.net/clickview/front-end/clickview/-/merge_requests/4739,"# Lite
42
+ - Add a fallback image for the topic stats widget when the images are loading
43
+
44
+ ![Screenshot 2024-07-16 at 1.39.31 pm.png](/uploads/dd44917a64e4aae098aff4a94a5f317a/Screenshot_2024-07-16_at_1.39.31_pm.png)"
45
+ clickview,Player: Better image questions,Shale Kuzmanovski,Mathew Ly,https://gitlab.cvinternal.net/clickview/front-end/clickview/-/merge_requests/4738,"# Lite
46
+ - Multiple choice interactive questions with images have been improved. Implements LTE-2724.
47
+ - Images will now display in a 2x2 grid.
48
+ - Image answers no longer require text, however either all answers must have text, or none must have text.
49
+ - When only 2 questions show, they will display slightly wider
50
+
51
+ ![image](/uploads/189b3dc8bbca13e54f1f01e87ca42698/image.png)
52
+
53
+ ![image](/uploads/27f96517dd602bbe7c4dd5634f66fd93/image.png)"
54
+ clickview,Lite - Add confirm step creating account when sso available,Nan Chen,Michael McDonnell,https://gitlab.cvinternal.net/clickview/front-end/clickview/-/merge_requests/4727,"# Lite
55
+ * For customers who has SSO set up, when trying to create a new account, an extra step to confirm was added.
56
+ ![image.png](/uploads/733817956fff2c5e198a8229c6eb1c5a/image.png)"
57
+ clickview,Lite: NP Upgrade ratings banner,Shale Kuzmanovski,Mathew Ly,https://gitlab.cvinternal.net/clickview/front-end/clickview/-/merge_requests/4725,"# Lite
58
+ - Added a banner to the content permissions page during a lite upgrade. This banner informs the user to manage their content permissions from online during the upgrade. Fixes INBOX-7083.
59
+
60
+ ![example](https://i.imgur.com/ahJyhXj.png)"
61
+ clickview,Lite: UI permission checks,Mathew Ly,Shale Kuzmanovski,https://gitlab.cvinternal.net/clickview/front-end/clickview/-/merge_requests/4717,"# Lite
62
+ - Add permission checks so that when an admin manages student permissions it will reflect on the UI for students
63
+ - Remove content referring to a feature when user doesn't have permission"
64
+ clickview,Lite: Manage group permissions settings,Mathew Ly,Shale Kuzmanovski,https://gitlab.cvinternal.net/clickview/front-end/clickview/-/merge_requests/4716,"# Lite
65
+ - Implement manage student permission settings for admins to toggle features for year groups"
66
+ clickview,Topic directory - Support classifications widget,Nan Chen,Joshua Taylor,https://gitlab.cvinternal.net/clickview/front-end/clickview/-/merge_requests/4715,"# Curator
67
+ * Now in the directory topic dashboard, you can add `List of children topics` widget with `Large fixed pills with stats` template. You can chose one topic (that is a topic right under a top-level topic) to display all the children topics from that topic."
68
+ clickview,Discover: New releases widgets,Joshua Taylor,Mathew Ly,https://gitlab.cvinternal.net/clickview/front-end/clickview/-/merge_requests/4712,"# Curator
69
+ - Curators can now use the ""New releases"" topic video widget on Discover
70
+ - Curators can now use the ""New curated topics"" widget on Discover"
71
+ clickview,Lite - Add new videos badge,Nan Chen,Mathew Ly,https://gitlab.cvinternal.net/clickview/front-end/clickview/-/merge_requests/4705,"# Lite
72
+ * In the Discover dashboard, \`Explore my subjects\` widget, an 'x new videos this month' badge should be displayed when a topic has new videos for users who have the 'Has topic directory' domain option switched on.
73
+ ![image.png](/uploads/9a4203f71025639425475774fd5baefa/image.png)
74
+
75
+ # Curator
76
+ * In the Discover dashboard editor, \`Explore my subjects\` widget, an 'x new videos this month' badge should be displayed when a topic has new videos."
77
+ clickview,Discover - Update the Explore my subjects widget,Nan Chen,Joshua Taylor,https://gitlab.cvinternal.net/clickview/front-end/clickview/-/merge_requests/4701,"# Lite
78
+ - Now in the Discover dashboard 'Explore my subjects', presentation switch items were added for users with the \`Has topic directories\` domain option switched on. You can click them to switch presentations between your available presentations.![Screenshot_2024-07-09_at_8.59.19_am](/uploads/878c55afffb1771577e4be034e36e117/Screenshot_2024-07-09_at_8.59.19_am.png)
79
+
80
+ # Curator
81
+ * Now for the Discover dashboard editor in Curation Studio, the hard-coded presentation switch items were added to `Editable small fixed pills` template"
82
+ clickview,Lite: Topic new videos this month fix,Joshua Taylor,Nan Chen,https://gitlab.cvinternal.net/clickview/front-end/clickview/-/merge_requests/4700,"# Lite
83
+ - (dev only) Fixed the ""X new videos this month"" badge not showing on topics."
84
+ clickview,Lite: Video list polish,Joshua Taylor,Nan Chen,https://gitlab.cvinternal.net/clickview/front-end/clickview/-/merge_requests/4699,"# Lite
85
+ - Fixed a bug where the video list dashboards would display the company name as the sub text for video items instead of series name
86
+ - Updated topic video list dashboards to handle when a video list dashboard only has content for the ""Other videos"" list, by changing the heading to say just ""Videos"" instead of ""Other videos"""
87
+ clickview,Shared: Historical Breadcrumbs,Shale Kuzmanovski,Mathew Ly,https://gitlab.cvinternal.net/clickview/front-end/clickview/-/merge_requests/4698,"# Lite
88
+ - When a user has the `play_page_v2` option enabled, the play pages will now display breadcrumbs that are contextual, based on the last page the user was one. Below is a list of potential breadcrumbs that may show. Implements LTE-2666.
89
+ - `LIBRARY` -> `FOLDER[]`
90
+ - Discover
91
+ - My Videos
92
+ - My Videos -> `FOLDER[]`
93
+ - Search results
94
+ - `PRESENTATION` -> `TOPIC[]`
95
+ - Movies + TV
96
+ - Movies + TV -> `TOPIC[]`
97
+ - Movies + TV -> `COMPANY`
98
+ - Playlists
99
+ - Playlists -> `PLAYLIST`
100
+ - Discover -> `SERIES`
101
+ - New Releases
102
+ - Calendar
103
+ - Watch history
104
+ - Favourites"
105
+ clickview,Content Pipeline: Adjustable column sizes,Joshua Taylor,Mathew Ly,https://gitlab.cvinternal.net/clickview/front-end/clickview/-/merge_requests/4696,"# Curator
106
+ - Updated the content pipeline to support resizing column widths."
107
+ clickview,Lite: Update classrooms ui to support name up to 255 characters,Mathew Ly,Nan Chen,https://gitlab.cvinternal.net/clickview/front-end/clickview/-/merge_requests/4693,"# Lite
108
+ - Update classrooms ui to support name up to 255 characters"
109
+ clickview,Lite - Question list in preview interactive page,Nan Chen,Shale Kuzmanovski,https://gitlab.cvinternal.net/clickview/front-end/clickview/-/merge_requests/4682,"# Lite
110
+ - For users who have the `PlayPageV2` feature switched on, a question list was added to the interactive preview page.
111
+ ![Screenshare-2024-07-031_56_16PM-ezgif.com-video-to-gif-converter](/uploads/004dbc16985289e537207db0e66460b6/Screenshare-2024-07-031_56_16PM-ezgif.com-video-to-gif-converter.gif)"
112
+ clickview,Shared - Add topic dashboard toc mobile version,Nan Chen,Shale Kuzmanovski,https://gitlab.cvinternal.net/clickview/front-end/clickview/-/merge_requests/4679,"# Lite
113
+ * Now a topic dashboard with a table of contents will also display the table of contents on a smaller device (window width smaller 992px).
114
+ ![image.png](/uploads/0cf951961d6204a92bc040bd8710d826/image.png){width=338 height=289}
115
+
116
+ # Curator
117
+ * Now in the topic dashboard preview panel in the Curation studio, a table of contents will be displayed as it is in Lite. (Clicking TOC item will not trigger any interaction in Curator)"
118
+ Integrations.Api,Add slack integration feedback,Jorge Arai,Ryan Wang,https://gitlab.cvinternal.net/clickview/front-end/integrations.api/-/merge_requests/151,- Give praise feedback should be sent to a proper Slack channel
119
+ Integrations.Api,Add email feedback,Jorge Arai,Ryan Wang,https://gitlab.cvinternal.net/clickview/front-end/integrations.api/-/merge_requests/150,"- Feedback for the following forms should be sent to support team email:
120
+ - Raise Issue
121
+ - Report Bug
122
+ - Feedback for the following forms should be sent to content team email:
123
+ - Request livestream
124
+ - Request video"
125
+ Objects.Api,CanDownload VA update,Prad Nepal,Shale Kuzmanovski,https://gitlab.cvinternal.net/clickview/back-end/objects.api/-/merge_requests/345,* Learners of the platform will no longer be able to download TV content in Australia and UK regions. Implements INBOX-7091
126
+ Braze Client,DX fixes,Nischal Shrestha,Shale Kuzmanovski,https://gitlab.cvinternal.net/clickview/front-end/braze-client/-/merge_requests/21,- Added new `BrazeClient` which has alot of abstraction over `BrazeApiClient` to help with common methods. Implements LTE-2686.
127
+ ClickViewInteractiveForiOS,Update guidance tags,John Allen,John Allen,https://gitlab.cvinternal.net/clickview/mobile/ClickViewInteractiveForiOS/-/merge_requests/297,- Update guidance badges to match Lite web. Closes IOS-405.
@@ -0,0 +1,38 @@
1
+ projectName,mrTitle,mrAuthor,mrAssignee,mrUrl,notes
2
+ ClickView.OnlineApi,order device by name,Ryan Wang,Cameron Hill,https://gitlab.cvinternal.net/clickview/back-end/ClickView.OnlineApi/-/merge_requests/432,* Display a list of apple tv devices in an alphabetical order.
3
+ clickview,Support for student Vivi casting,Boris Berak,Shale Kuzmanovski,https://gitlab.cvinternal.net/clickview/front-end/clickview/-/merge_requests/4811,"# Lite
4
+ - Vivi customers who had previously allowed students to cast to Vivi devices in Online will now be able to do the same in NP by going to the Vivi settings page and enabling the `Student casting` toggle.
5
+ - ![CleanShot_2024-08-07_at_16.45.01](/uploads/040fc52d458e5614ee0ee58088680161/CleanShot_2024-08-07_at_16.45.01.png)"
6
+ clickview,Lite - Fix toc scroll,Nan Chen,Joshua Taylor,https://gitlab.cvinternal.net/clickview/front-end/clickview/-/merge_requests/4800,"# Lite
7
+ * Fixed an issue on our topic pages where if you click on an item in the table of contents once, then scroll to somewhere else on the page, then click on that same item a second time, you would not get taken to it's position on the page again."
8
+ clickview,Lite: JBTD Onboarding for teachers update,Nischal Shrestha,Joshua Taylor,https://gitlab.cvinternal.net/clickview/front-end/clickview/-/merge_requests/4796,"# Lite
9
+ - Updated teacher usage intentions onboarding screen. Implements LTE-2736."
10
+ clickview,User manager: User exports,Shale Kuzmanovski,Joshua Taylor,https://gitlab.cvinternal.net/clickview/front-end/clickview/-/merge_requests/4789,"# Lite
11
+ - Fixed a bug where user exports were timing out. User exports are now requested and sent to the user's email address when they are ready. Fixes INBOX-7061.
12
+
13
+ ![image](/uploads/b1f9d2073ac2bc782239b30d277351c0/image.png)
14
+
15
+ # Curator
16
+ - Fixed a bug where user exports were timing out. User exports are now requested and sent to the user's email address when they are ready. Fixes INBOX-7061."
17
+ clickview,Lite: Chunk our useVideoMixin to 50 items at a time,Shale Kuzmanovski,Joshua Taylor,https://gitlab.cvinternal.net/clickview/front-end/clickview/-/merge_requests/4788,"# Lite
18
+ - Fixed a bug preventing classroom guide, resources and interactives showing in new releases."
19
+ clickview,Streamable: Update livestream past event styles,Mathew Ly,Shale Kuzmanovski,https://gitlab.cvinternal.net/clickview/front-end/clickview/-/merge_requests/4787,"# Streamable Learning
20
+ - Update Streamable Livestream styles for past events"
21
+ clickview,Lite: Related folder videos,Shale Kuzmanovski,Mathew Ly,https://gitlab.cvinternal.net/clickview/front-end/clickview/-/merge_requests/4785,"# Lite
22
+ - Will now see related folders if clicking into a video from a folder. Implements INBOX-7169."
23
+ clickview,Curator: Company description max length,Shale Kuzmanovski,Mathew Ly,https://gitlab.cvinternal.net/clickview/front-end/clickview/-/merge_requests/4783,"# Curator
24
+ - Update the max length for company descriptions to `4096`. A value that was selected based on the longest current company description from the SL ingestion. Fixes INBOX-7195."
25
+ clickview,Player: Illustration interaction,Shale Kuzmanovski,Mathew Ly,https://gitlab.cvinternal.net/clickview/front-end/clickview/-/merge_requests/4769,"# Lite
26
+ - [Internal Release] Added the ability for us to add experimental interaction types without releasing them to the general access.
27
+ - [Internal Release] Added a new question type: Illustrate. This question type, which was an idea from the hackathon, allows teachers to prompt students to draw their answer, facilitating creating questions that require higher order thinking. Implements LTE-2765.
28
+
29
+ ![example](https://i.imgur.com/yPIfXv0.png)
30
+
31
+ ![example](https://i.imgur.com/lmV7Gss.png)
32
+
33
+ # Reports
34
+ - [Internal Release] Illustration questions will now appear in the results of any interactive that had the new question type."
35
+ ClickView.EmailService,Add user list report,Jorge Arai,Ryan Wang,https://gitlab.cvinternal.net/clickview/back-end/ClickView.EmailService/-/merge_requests/294,"- Added email template to send user list report:
36
+
37
+ ![image](/uploads/868e8553e51e7f583b365ed71ed412fa/image.png)"
38
+ WebPlayer,Remove api call to get resource from home api,Cameron Hill,Ryan Wang,https://gitlab.cvinternal.net/clickview/back-end/WebPlayer/-/merge_requests/123,- Fix edge cases where resources did not always show on videos
@@ -0,0 +1,52 @@
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
@@ -0,0 +1,139 @@
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