@clickview/ship-it 0.0.14 → 0.0.16

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 (49) hide show
  1. package/dist/A3/Analytics Web.md +0 -0
  2. package/dist/A3/ClickView Online.md +28 -0
  3. package/dist/A3/ClickView.Curator.md +19 -0
  4. package/dist/A3/Clients.md +21 -0
  5. package/dist/A3/Domain.Api.md +15 -0
  6. package/dist/A3/Krakend.md +33 -0
  7. package/dist/A3/Library Editor.md +0 -0
  8. package/dist/A3/Lite.md +35 -0
  9. package/dist/A3/Master.Api.md +10 -0
  10. package/dist/A3/Master.Auth.md +51 -0
  11. package/dist/A3/Release Notes.md +683 -0
  12. package/dist/A3/Subjects.API.md +18 -0
  13. package/dist/A3/Users.Api.md +89 -0
  14. package/dist/A3/clickview.md +325 -0
  15. package/dist/X3/X3 Testing Notes.csv +1222 -0
  16. package/dist/X3/X3 Testing Notes.xlsx +0 -0
  17. package/dist/Z1/Analytics Web.md +0 -0
  18. package/dist/Z1/ClickView Online.md +24 -0
  19. package/dist/Z1/ClickView.Cron.md +8 -0
  20. package/dist/Z1/ClickView.Curator.md +28 -0
  21. package/dist/Z1/ClickView.EmailService.md +17 -0
  22. package/dist/Z1/Clients.md +29 -0
  23. package/dist/Z1/Discover.Api.md +20 -0
  24. package/dist/Z1/Domain.Api.md +34 -0
  25. package/dist/Z1/FileGenerator.md +13 -0
  26. package/dist/Z1/Image.Api.md +14 -0
  27. package/dist/Z1/Krakend.md +8 -0
  28. package/dist/Z1/Library Editor.md +0 -0
  29. package/dist/Z1/Lite.md +47 -0
  30. package/dist/Z1/Master.Auth.md +43 -0
  31. package/dist/Z1/Objects.Api.md +30 -0
  32. package/dist/Z1/Permissions.Api.md +10 -0
  33. package/dist/Z1/Prospect.Api.md +16 -0
  34. package/dist/Z1/RealtimeSalesforceSync.md +16 -0
  35. package/dist/Z1/Release Notes.md +855 -0
  36. package/dist/Z1/Search.Api.md +19 -0
  37. package/dist/Z1/Share.Api.md +12 -0
  38. package/dist/Z1/Ship It.md +23 -0
  39. package/dist/Z1/Subjects.API.md +16 -0
  40. package/dist/Z1/Users.Api.md +26 -0
  41. package/dist/Z1/VideoProcessorService.md +11 -0
  42. package/dist/Z1/Z1 Testing Notes.csv +1079 -0
  43. package/dist/Z1/Z1 Testing Notes.xlsx +0 -0
  44. package/dist/Z1/clickview.md +316 -0
  45. package/lib/src/constants/MonorepoPackageJsonFiles.js +1 -0
  46. package/lib/src/constants/TeamCityBuildIDs.js +1 -1
  47. package/lib/src/tasks/InstallPackagesTask.js +28 -21
  48. package/lib/src/utils/Commits.js +2 -0
  49. package/package.json +1 -1
Binary file
@@ -0,0 +1,316 @@
1
+
2
+ # Before release
3
+
4
+ ## other
5
+ - [ ] Curriculums used in the public product need to be added to `public_presentations` table in Subject API
6
+ - [ ] After releasing, we need to update the `curriculums.view` permission in production (this is technically an `After release` action. It **must** happen **after** pushing, otherwise we will break public play pages and send unauthenticated users to the sign in page)
7
+ - `PUT v1/permissions/35` the following payload (please sanity check the id before updating - the permission already existing in both staging and production):
8
+ - The change below is to add `public` to the `permissionSet` property. This will allow public users to be able to view curriculum links.
9
+ ```
10
+ {
11
+ "id": 35,
12
+ "name": "curriculums.view",
13
+ "description": "Can view curriculum links",
14
+ "visibility": "Internal",
15
+ "type": "Static",
16
+ "dateCreated": "2023-02-14T03:26:39Z",
17
+ "permissionSets": [
18
+ "public"
19
+ ],
20
+ "roles": [
21
+ "Admin",
22
+ "SuperAdmin"
23
+ ],
24
+ "userTypes": [
25
+ "Staff"
26
+ ]
27
+ }
28
+ ```
29
+ - Create a `feedback.submit` permission in permission API for staff and admins only. Not students.
30
+
31
+ # Dependencies
32
+ https://gitlab.cvinternal.net/clickview/back-end/discover.api/-/merge_requests/103
33
+ - https://gitlab.cvinternal.net/clickview/front-end/lite/-/merge_requests/348
34
+ - https://gitlab.cvinternal.net/clickview/back-end/clickview.subjects.api/-/merge_requests/189
35
+ - https://gitlab.cvinternal.net/clickview/back-end/discover.api/-/merge_requests/102
36
+ - https://gitlab.cvinternal.net/clickview/front-end/lite/-/merge_requests/346
37
+ - https://gitlab.cvinternal.net/clickview/front-end/lite/-/merge_requests/345
38
+ - https://gitlab.cvinternal.net/clickview/front-end/lite/-/merge_requests/343
39
+ - https://gitlab.cvinternal.net/clickview/front-end/ClickView.Curator/-/merge_requests/1056
40
+ - https://gitlab.cvinternal.net/clickview/front-end/ClickView.Online/-/merge_requests/3194
41
+
42
+ # Analytics
43
+
44
+ ## Code changes
45
+ - Fix the missing scroll button in the results table. Fix INBOX-4407.
46
+
47
+ # Common
48
+
49
+ ## Code changes
50
+ - Importing cloneDeep using `lodash.clonedeep` to ensure the rest of lodash isn't coming with it.
51
+ - Updated the recursive denormalizer test to cater for a use case that wasn't covered.
52
+ - Updated `ObjectHelper.deepClone()` to use `cloneDeep` from lodash. Addresses INBOX-4054.
53
+
54
+ # Curator
55
+
56
+ ## Code changes
57
+ - Update playlist request key to correctly fetch playlist with `subjectPresentationAudience`. Fix INBOX-4414
58
+ - Update playlist request key to correctly fetch playlist with `subjectPresentationAudience`. Fix INBOX-4426
59
+
60
+ ## Customer changes
61
+ - Fixed an issue in curation studio where if you were managing a dashboard or topic in a presentation that isn't associated with your account, the audiences would always display as "Missing Audience" even if it had one. Fixes CC-471
62
+ - In curation studio, published dashboards can no longer be edited. Curators now have to create a copy of the published dashboard, then make changes to the copy, then publish that. Implements CC-464
63
+ - Curators can now create a copy of discover and topic dashboards. Implements CC-465
64
+ - Fixed an issue in user manager where the bulk upload template file couldn't be downloaded in Safari. Fixes INBOX-4434
65
+ - In the user manager page, users can now bulk-select by uploading a spreadsheet containing the student/staff they want to select. Implements LTE-1726
66
+ - When curating a topic page, curators can now search within the entire presentation rather than just within the topic. Implements CC-466
67
+
68
+ # Library Editor
69
+
70
+ ## Customer changes
71
+ - Fixed an issue where video results in the search dropdown displayed very small thumbnails. Fixes INBOX-4457
72
+
73
+ # Lite
74
+
75
+ ## Customer changes
76
+ - On mobile, the search bar will now automatically focus when opened up.
77
+ - Curriculum links are now accessible in the public version of NP
78
+ - Implements LTE-1759
79
+ - Fixed an error where changing presentations as a public user could send them to the login page
80
+ - Fixes INBOX-4490
81
+ - Switching presentation will now be a little faster than usual
82
+ - During the sign up workflow, students are now prompted to enter their date of birth before we collect their email address. We do not collect and PII from students who are under the age of 13, instead they are sent to our free videos on the marketing website. Once a student has filled out our date of birth form, they cannot get back to the sign up form, it will always show them the link to the free videos page. This is done in order to protect young students who cannot consent to their data being collection, in compliance with COPPA in the United States of America.
83
+ - Fixed an issue in user manager where the bulk upload template file couldn't be downloaded in Safari. Fixes INBOX-4434
84
+ - The "explore all subjects" page should now always display the subjects in alphabetical order. Fixes INBOX-4048
85
+ - In Lite user manager page, users can now bulk-select by uploading a spreadsheet containing the student/staff they want to select. Implements LTE-1726
86
+ - When loading into a specific table of contents section on a topic page, you should land a bit closer than before. Implements LTE-1775 and fixes INBOX-4453
87
+ - Fixed an issue on mobile where the left nav would initially be expanded then immediately collapsed, resulting in a harsh first landing experience. Implements LTE-1775
88
+ - Fixed the partial loading for the breadcrumbs, audience filter, and banner on the topic page not matching up with the actual UI accurately Implements LTE-1775
89
+ - Adjusted the partial loading for 4 video widgets (Implements LTE-1775):
90
+ - "Enhanced large slider"
91
+ - "Featured video"
92
+ - "Hero video"
93
+ - "2 side by side thumbnails"
94
+ - Fixed the alignment of the thumbnail and video title text on the featured media widget on smaller screens Implements LTE-1775
95
+ - Fixed an issue where students could provide feedback via the footer on the discover page.
96
+ - Fixed an issue where all pages had smooth scrolling. Fixes LTE-1762
97
+ - In the lite discover dashboard, for three types of widget templates (1. Enhanced large slider 2. Large slider 3. Small slider), their title can be clicked and navigate to a video list view of that widget. Implements LTE-1727.
98
+ - If a prospects school is not supported they now can request a trial like in marketing. Implements LTE-1733.
99
+ - Fixed an issue on topics where if you apply a filter that reveals an empty state, then you click "Clear", the page doesn't revert back to the filterless view and the audience filters disappear. Fixes INBOX-4412
100
+ - Fixed a bug where if a teacher is direct sharing to another teacher, the search dropdown would display the teacher's display name. Fixes INBOX-4362
101
+ - Fixed a but where if a teacher is adding another teacher to a classroom, the search dropdown would display the teacher's display name. Fixes INBOX-4362
102
+ - Styling of the sign up form has been slightly updated to be more in line with our Auth forms.
103
+ - The email, location and school inputs in the sign up for now have clear buttons to clear their content.
104
+ - The location and school input typeaheads now have keyboard support: Down, up arrows as well as enter will now work as expected.
105
+ - As a user in a multi-presentation school, if you search for a topic and get a result with the same name from >1 presentation, they will be ordered by the learning level of the presentation.
106
+ - In search results of small screen, the interactive will show 3 question. Implements INBOX-4344.
107
+ - Customer will get an alert message after update video details. Implements INBOX-4116.
108
+ - When student has no contents, the empty state copy has been updated. Implements INBOX-4291.
109
+
110
+ ## Code changes
111
+ - Refactored `useTopicPresentation` to become `usePresentation` that now supports use of both topic and curriculum presentations
112
+ - Cleaned up `useCurriculums` to utilize `usePresentation`
113
+ - Updated play page components to consistently use curriculums
114
+ - Update curriculum handling in search results
115
+ - Re-worked our completion step to take a `CompletionStepId`. We now have 3 completion step types, trial status, added to braze, and young student.
116
+ - Add bootstrap keys for `permissions` and `products`
117
+ - Add a new CuratedDashbaordWidgetView based on the domain option.
118
+ - Add new appLinks type to the dashboard.
119
+ - Add event listener to video guidance tag to set the active status of popout. Fix LTE-1728.
120
+ - Shrink the activity status badge size. Fix LTE-1744
121
+ - Added a new sign up step named `add-to-braze`. Implements LTE-1752.
122
+ - Added a form that add a prospect with all their details to braze. Implements LTE-1763.
123
+ - Updated terms and condition link to point to global marketing website. Fixes LTE-1735.
124
+ - Fixed a bug that was causing us to drop events when logging our playlists.
125
+ - Fixed a but that was causing the edit video details to break after favouriting the video. Fixes INBOX-4292.
126
+ - Fixed the sign in button on the public play pages not being an anchor. Fixes INBOX-4372
127
+ - Updated usage of hardcoded country codes to use `LocalityHelper`.
128
+ - 'Use my current location' is selectable when navigating by keyboard.
129
+ - 'Can't find your school?' is selectable when navigating by keyboard.
130
+ - Fixed a bug where clearing SearchLocalityInput in Cant find school step clearing the school name.
131
+ - Fixed style imports to be relative.
132
+ - Fixed banner height in topic classification board at web-mobile screen size. Fix INBOX-4410
133
+ - Hide the text of follow/unfollow button at the web-mobile screen size. Fix INBOX-4410
134
+ - Cleaning up markup and utility classes across all steps of the sign up app.
135
+ - Only show the level above for breadcrumb in web-mobile. Fix INBOX-4382;
136
+ - Increase the padding of the audience filter when wrapped in web-mobile. Fix INBOX-4398
137
+ - Fix content updates banner bg image position Fix INBOX-4381
138
+ - For the `hasCurriculumLinks` request, make the array of objectId unique and sort them in key so it can be cached more accurately. Fixes INBOX-4316.
139
+ - Show 3 question of interactives in search result in mobile.
140
+ - Add alerts on callbacks after saving video details.
141
+ - Update copy of empty state in student feed.
142
+ - Reorder the `Share` button after the `Add to playlist` button in the lite interactive page. Fix INBOX-4334
143
+
144
+ # Monorepo
145
+
146
+ ## Code changes
147
+ - Add `ship-it.config` file for latest changes in ship it https://gitlab.cvinternal.net/clickview/front-end/ship-it/-/merge_requests/42
148
+ - Adding a type for cloneDeep to all projects.
149
+ - Cleanup commands for cross platform builds. Closes INBOX-4286
150
+ - Remove all docker build scripts
151
+ - Replace `export` and `set` environment variable calls with `cross-env` package to enable cross platform building without needing separate linux only commands
152
+
153
+ # Online
154
+
155
+ ## Customer changes
156
+ - Fixed an issue in user manager where the bulk upload template file couldn't be downloaded in Safari. Fixes INBOX-4434
157
+ - In the user manager page, users can now bulk-select by uploading a spreadsheet containing the student/staff they want to select. Implements LTE-1726
158
+
159
+ # Player
160
+
161
+ ## Customer changes
162
+ - Enable spellcheck for annotation editor when editing interactives. Fixes INBOX-4357.
163
+
164
+ ## Code changes
165
+ - Added `spellCheck` for DraftJs editor since it render a `div` with `contentEditable=true`
166
+
167
+ # Shared
168
+
169
+ ## Code changes
170
+ - Now fetching the parent video for clips and interactives using the `_parentVideo` virtual assoc.
171
+ - Now fetching the parent clip for interactives using `_parentClip`.
172
+ - Updated our types for clips and interactives to no longer have `video` or `clip` properties, instead they have `_parentVideo` or `_parentClip` properties, whose type is a subset of the video and clip types.
173
+ - Update public support for curriculum requests
174
+ - Clean up `publicUrl` for presentation requests
175
+ - Gracefully handle missing curriculum in `CurriculumDropdown`
176
+ - Update invalidation keys when updating presentation
177
+ - Fix "What's included" doesn't include link resources. Fix LTE-1754
178
+ - Removed the `forcedMediaQuery` prop that's unused and littered throughout the codebase.
179
+ - Shrink the width of alert in mobile. Fixes INBOX-3963.
180
+ - Add SelectWithSpreadSheet component
181
+ - Add a helper function to build & split query params to fetch user
182
+ - Fixed an error during parsing an empty CSV file
183
+ - Cleaned up code in `EditVideoDetails` to only pass the relevant form data as initial values.
184
+ - Cleaned up the `<FormWrapper />`, it will no longer recursively use `ObjectHelper.deepClone()`
185
+ - Updated the `ReorderHelper` to pass only the object ids back into flight. Fixes STG-271
186
+ - Shrink the padding of the overlay title of the video thumbnail on the web-mobile screen. Fix INBOX-4385
187
+ - Update the layout of the editing status for `EditableCoverFixedPillListSmallWidgetTemplate`. Implements INBOX-4384
188
+ - `updateVideo` request accepts `always` callback.
189
+
190
+ ## Customer changes
191
+ - Alert in mobile will display 'x' icon at the first line.
192
+
193
+ # Styles
194
+
195
+ ## Customer changes
196
+ - Fix the styling of our tooltip, it no longer will show the border bottom across the arrow.
197
+
198
+ # Tooling
199
+
200
+ ## Code changes
201
+ - The `I18nPlugin` will now watch all the `*.lang.json` files for file changes, and output the updated language file.
202
+
203
+ # Testing
204
+ - In the curation studio, adding a playlist widget, when adding playlists, the audience information should be displayed correctly.
205
+ - Ship it runs
206
+ - In NP on mobile, the search bar should now automatically focus when opened up. On desktop, it should not automatically focus ever.
207
+ - The way clips and interactives fetch their parent video has been reworked in order to accommodate a share change, which means clips and interactives will need a regression test. Testing that the video item in lists or widgets, as well as their pages behave properly.
208
+ - Playlists
209
+ - Watch History
210
+ - My Videos
211
+ - Favourite videos
212
+ - Student feed
213
+ - Student feed in a playlist
214
+ - Beneath the video on the page page
215
+ - Search results
216
+ - Share links, both full page and embed
217
+ - Creating clips
218
+ - Creating interactives on clips
219
+ - In analytics, test that viewing interactive results, and the top videos feature work.
220
+ - In NP:
221
+ - As an authenticated user:
222
+ - Accessing curriculum links on the play page as a staff/admin should continue to load as expected (regression)
223
+ - Curriculum links should load (for accounts with one or many available curriculums)
224
+ - Switching curriculums should work as expected and correctly load the links for the nominated curriculum
225
+ - It should be possible to access the curriculum link applink from both V@G and video details page
226
+ - Accessing curriculum links on a video list view as a staff/admin should continue to load as expected (regression)
227
+ - Curriculum links should load (for accounts with one or many available curriculums)
228
+ - Switching curriculums should work as expected and correctly load the links for the nominated curriculum
229
+ - Accessing curriculum links in search results as a staff/admin should continue to load as expected (regression)
230
+ - Curriculum links shouldn't be accessible to students
231
+ - Page loading should loading the user's last nominated presentation (when switching between many)
232
+ - Videos access via share link should load as expected and the curriculums should be viewable
233
+ - As a public/unauthenticated user:
234
+ - It should be possible to view curriculum links on the play page
235
+ - Curriculum links should load (AU and US will have many curriculums available. GB and GB-SCT will only have access to one curriculum each).
236
+ - Switching curriculums should work as expected and correctly load the links for the nominated curriculum
237
+ - It should be possible to access the curriculum link applink from both V@G and video details page
238
+ - We currently don't show any actions on public video list views. For the time being this will remain.
239
+ - Search results, video lists in both series and playlists should continue to load as expected (regression)
240
+ - Nominated curriculums should be persisted in local storage in the same way that we do for topic presentations
241
+ - Switching presentations should no longer show an error in the console
242
+ - Switching presentations should no longer send the user to the login page if they reload after switching
243
+ - Hover over a video you do not have access to, take a deep breath of relaxation because that god forsaken border styling issue is gone.
244
+ - In the classifìcation dashboard (Lite and Curator), the 'what's included' tag of a video, the resources section should also contain the link resources of the current video.
245
+ - In curation studio, you should no longer be allowed to edit a published dashboard.
246
+ - In curation studio, you should still be able to edit draft dashboards.
247
+ - Every frontend project needs a regression test, clicking around to a few pages (Online, Curator, Lite, Reports)
248
+ - In Curator, you should now be able to copy discover and topic dashboards using the "Copy dashboard" action on the dashboards list page. Editing a copy should not affect the original dashboard.
249
+ - Sign up for a trial as a student, enter date of birth that is younger than 13 years of age. Ensure you are linked to the marketing free videos page. Ensure that if you go back to the sign up form you are always sent to the free videos page.
250
+ - On the initial page load, permissions and products should not be fetched
251
+ - After the flight cache expires, permissions and products should be fetched correctly
252
+ - In NP, in small size(320px - 575px), the close icon in alert will be at the first line. Can test with 'favourited' any video.
253
+ - Open user manager in safari in either NP, Curator, or Online. Go to bulk upload, and click to download the template. The file should download.
254
+ - When uploading a video in NP, the "Upload video" text in the button shouldn't wrap at any screen size. Fixes INBOX-4436
255
+ - In library editor's search bar dropdown, video result thumbnails should look normal. They shouldn't look like how they do in the screenshot on this ticket: https://clickview.atlassian.net/browse/INBOX-4457
256
+ - Subjects on the "Explore all subjects" page should be in alphabetical order
257
+ - In Lite/Curator/Online, the user manager page for students and staff, the 'Select with spreadsheet' action was added to the actions dropdown. It should find and select all the valid users from the spreadsheet in the current schools.
258
+ - It should find both verified and unverified users.
259
+ - It should not find users from other schools.
260
+ - Uploading an empty CSV file should trigger the error popup.
261
+ - CSV doesn't contain any of the Email and Username columns will trigger the error popup.
262
+ - It should find users with the correct user type, e.g., in the student manager page, it will only find all the students in the spreadsheet.
263
+ - Notes to Jav: Online requires more attention if you are able to do a deep test.
264
+ - Regression test: in Lite/Curator/Online, the user manager page for students and staff, click on the 'Add new student/staff', and choose to upload a CSV that only contains headings but no content should trigger the correct warning popup.
265
+ - The partial loading on the topics page should look really really accurate on:
266
+ - Mobile
267
+ - IPad
268
+ - Desktop
269
+ - Curated topics pages on mobile should not have any UI issues.
270
+ - As a student, you should no longer see an option to provide feedback via the form at the bottom of the discover page.
271
+ - When navigating between 2 pages, it should not "smooth scroll" between them.
272
+ - On a curated topics page with a able of contents, the TOC should still have smooth scrolling behavior.
273
+ - In Curation Studio when editing a topic page, you should now see an option to search within the whole presentation when creating a widget.
274
+ - In the lite discover dashboard, for three types of widget templates (1. Enhanced large slider 2. Large slider 3. Small slider), their title can be clicked and navigate to a video list view of that widget containing all the videos within that widget.
275
+ - In lite, view the classification dashboard on a mobile web screen. The video guidance of the `Hero video` widget and `2 side by side` widget can be opened and closed by tapping the badge.
276
+ - In Lite, start the sign up process and select a school which has a trial status of 'unavailable'
277
+ - Click get started and we should be taken to 'add-to-braze' step which asks more information about the user
278
+ - The form is validated client side and should not allow for
279
+ - strings larger than 255 characters
280
+ - strings starting with `$` (braze thing)
281
+ - phone number can only be digits between 4 and 255 characters long
282
+ - Clicking submit button should send the user data to braze and we should be able to look up the user with that email in it.
283
+ - The user should also have a custom event named `marketing_free_trial_signup`
284
+ - Playlist re-ordering needs to be tested in Lite and NP. In Lite, it needs to be tested on a video that has clips and interactives, after loading to the play page and then going back to the playlist to re-order. Previously this threw an error https://clickview.atlassian.net/browse/STG-271
285
+ - Favourite a video in my videos and then make sure the edit details page loads.
286
+ - Because one of our core utilities were replaced, there are quite a few places that need a very brief regression test. We're just looking for the UI behaving normally
287
+ - Direct sharing to classrooms in the NP share popup
288
+ - The playlist play page in online
289
+ - The audience filter in reports
290
+ - Editing a workspace video in Online and NP
291
+ - Bulk uploading users to user manager (Just NP is enough)
292
+ - Approving and rejecting library requests in library editor
293
+ - Editing a clip's details in NP, make sure changing the name of the clip doesn't modify the start and end time
294
+ - In analytics, checking the results of an interactive, when there are more than 13 questions, the scroll to right button should be displayed.
295
+ - In chrome settings, make sure to enable spellcheck. visit `chrome://settings/?search=spell+check`
296
+ - In Lite, create a new interactive and add an annotation.
297
+ - If we start typing in the editor and misspell any words we should trigger the spellcheck.
298
+ - On a topics page, apply a filter so that all content disappears. This should reveal an empty state. Then, click "Clear" to clear the filters. The page should revert back to the original filterless view.
299
+ - In NP, when sharing to another teacher, they should not appear with their `displayName` but rather their full name.
300
+ - In NP, when adding another teacher to a classroom, they should not appear in the search dropdown with their `displayName` but rather their full name.
301
+ - In Signup App, Go through the steps until you reach searching school step.
302
+ - Search for a locality and we should be able to navigate to 'Use my location' then press enter
303
+ - Seach for a school and we should be able to navigate to 'Cant find your school?' then press enter
304
+ - We should be able to submit the form as normal and get a free trial.
305
+ - Regression test signing up.
306
+ - View the classification dashboard in the small browser window (mobile) in Lite. There should be a gap between the wrapped audience filter.
307
+ Also, the breadcrumb should only show one item, the parent level of the current topic.
308
+
309
+ ![image__21_](/uploads/c91532841489df4bd6473bc3437a627f/image__21_.png)
310
+ - Login to an account with both "AU Primary" and "AU Secondary" presentations. Search for "English". In the results, the english topic from the primary presentation should be shown before the english topic from the secondary presentation.
311
+ - In NP, the curriculum links should show when a video have it and work as usual.
312
+ - In NP, find an interactive by using search, in mobile, there should have 3 question showing.
313
+ - In NP, edit a video in 'My Videos', after save the changes, an alert should show and say whether it is successfully of failed to update video details.
314
+ - In NP, login as a student without content and go to student feed, the copy should be updated.
315
+ - In lite, preview an interactive, the button `Share` should be after `Add to playlist` button.
316
+ - All projects build on windows and linux
@@ -5,6 +5,7 @@ exports.MONOREPO_PACKAGE_JSON_FILES = [
5
5
  'packages/libs/analytics/package.json',
6
6
  'packages/libs/styles/package.json',
7
7
  'packages/libs/tooling/package.json',
8
+ 'packages/projects/auth/package.json',
8
9
  'packages/projects/curator/package.json',
9
10
  'packages/projects/library-editor/package.json',
10
11
  'packages/projects/lite/package.json',
@@ -6,7 +6,7 @@ var constants_1 = require("../constants");
6
6
  exports.TeamCityBuildIds = (_a = {},
7
7
  _a[constants_1.PROJECT_NAMES.frontend.monorepo] = 'Frontend_BuildAndPublishReleaseCandidate',
8
8
  _a[constants_1.PROJECT_NAMES.frontend.online] = 'online_web_build_and_package',
9
- _a[constants_1.PROJECT_NAMES.frontend.curator] = 'curator_web_build_and_package',
9
+ _a[constants_1.PROJECT_NAMES.frontend.curator] = 'curator_web_BuildAndPackageDocker',
10
10
  _a[constants_1.PROJECT_NAMES.frontend.cloud] = 'ClickViewCloud_BuildAndPackageDocker',
11
11
  _a[constants_1.PROJECT_NAMES.frontend.reports] = 'Web_AnalyticsWeb_BuildAndPackageDocker',
12
12
  _a[constants_1.PROJECT_NAMES.frontend.lite] = 'ClickViewLiteWeb_BuildAndPackageDocker',
@@ -81,9 +81,9 @@ var InstallPackagesTask = /** @class */ (function () {
81
81
  }
82
82
  InstallPackagesTask.prototype.run = function (_options) {
83
83
  return __awaiter(this, void 0, void 0, function () {
84
- var milestone, options, projects, monorepo, consumingProjects, _a, monorepoBranch, monorepoBranchName, versions, _i, consumingProjects_1, project, _b, branch, branchName, hasUpdates;
85
- return __generator(this, function (_c) {
86
- switch (_c.label) {
84
+ var milestone, options, projects, monorepo, consumingProjects, _a, monorepoBranch, monorepoBranchName, versions, _i, consumingProjects_1, project, _b, branch, branchName, hasUpdates, _c;
85
+ return __generator(this, function (_d) {
86
+ switch (_d.label) {
87
87
  case 0:
88
88
  utils_1.Logger.logTask('Installing npm packages');
89
89
  if (!_options.monorepoBranchName && !_options.milestone) {
@@ -95,8 +95,8 @@ var InstallPackagesTask = /** @class */ (function () {
95
95
  utils_1.Logger.logInfo("Searching for a merge request in project \"monorepo\" with branch name \"".concat(_options.monorepoBranchName, "\"..."));
96
96
  return [4 /*yield*/, this.service.getMilestoneByBranchName(utils_1.ProjectIds.MONOREPO_PROJECT_ID, _options.monorepoBranchName)];
97
97
  case 1:
98
- milestone = _c.sent();
99
- _c.label = 2;
98
+ milestone = _d.sent();
99
+ _d.label = 2;
100
100
  case 2:
101
101
  if (!milestone)
102
102
  return [2 /*return*/, false];
@@ -109,7 +109,7 @@ var InstallPackagesTask = /** @class */ (function () {
109
109
  };
110
110
  return [4 /*yield*/, this.service.getProjects(options)];
111
111
  case 3:
112
- projects = _c.sent();
112
+ projects = _d.sent();
113
113
  monorepo = projects.find(function (p) { return p.id.toString() === utils_1.ProjectIds.MONOREPO_PROJECT_ID; });
114
114
  consumingProjects = projects.filter(function (p) { return p.id.toString() !== utils_1.ProjectIds.MONOREPO_PROJECT_ID; });
115
115
  if (!monorepo) {
@@ -122,40 +122,43 @@ var InstallPackagesTask = /** @class */ (function () {
122
122
  }
123
123
  return [4 /*yield*/, this.service.getNextBranchInfo(monorepo.id, options.version)];
124
124
  case 4:
125
- _a = _c.sent(), monorepoBranch = _a.branch, monorepoBranchName = _a.branchName;
125
+ _a = _d.sent(), monorepoBranch = _a.branch, monorepoBranchName = _a.branchName;
126
126
  if (!monorepoBranch) {
127
127
  utils_1.Logger.logError("[".concat(monorepo.title, "]: [").concat(monorepoBranchName, "] branch does not exist"));
128
128
  return [2 /*return*/, false];
129
129
  }
130
130
  return [4 /*yield*/, this.getPackageVersions(monorepoBranchName)];
131
131
  case 5:
132
- versions = _c.sent();
132
+ versions = _d.sent();
133
133
  utils_1.Logger.logMessage("Versions identified for ".concat(monorepoBranchName));
134
134
  Object.keys(versions).forEach(function (key) {
135
135
  utils_1.Logger.logMessage("- [".concat(key, "]: ").concat(versions[key]));
136
136
  });
137
137
  utils_1.Logger.logMessage('\nInstalling packages:\n');
138
138
  _i = 0, consumingProjects_1 = consumingProjects;
139
- _c.label = 6;
139
+ _d.label = 6;
140
140
  case 6:
141
- if (!(_i < consumingProjects_1.length)) return [3 /*break*/, 11];
141
+ if (!(_i < consumingProjects_1.length)) return [3 /*break*/, 13];
142
142
  project = consumingProjects_1[_i];
143
- return [4 /*yield*/, this.service.getNextBranchInfo(project.id, options.version)];
143
+ _d.label = 7;
144
144
  case 7:
145
- _b = _c.sent(), branch = _b.branch, branchName = _b.branchName;
145
+ _d.trys.push([7, 11, , 12]);
146
+ return [4 /*yield*/, this.service.getNextBranchInfo(project.id, options.version)];
147
+ case 8:
148
+ _b = _d.sent(), branch = _b.branch, branchName = _b.branchName;
146
149
  if (!branch) {
147
150
  utils_1.Logger.logError("[".concat(project.title, "]: [").concat(branchName, "] does not exist"));
148
- return [3 /*break*/, 10];
151
+ return [3 /*break*/, 12];
149
152
  }
150
153
  return [4 /*yield*/, this.updateAndSavePackageFiles(project, options.milestone, branchName, versions)];
151
- case 8:
152
- hasUpdates = _c.sent();
154
+ case 9:
155
+ hasUpdates = _d.sent();
153
156
  /**
154
157
  * If there are no changes to the versions, we're done here
155
158
  */
156
159
  if (!hasUpdates) {
157
160
  utils_1.Logger.logWarning("[".concat(project.title, "]: [").concat(branchName, "] does not require any updates"));
158
- return [3 /*break*/, 10];
161
+ return [3 /*break*/, 12];
159
162
  }
160
163
  /**
161
164
  * Run npm i to update our package log file
@@ -167,17 +170,21 @@ var InstallPackagesTask = /** @class */ (function () {
167
170
  * Commit our updated package.json and package-lock.json
168
171
  */
169
172
  return [4 /*yield*/, this.commitUpdatedFiles(project, options.milestone, branchName)];
170
- case 9:
173
+ case 10:
171
174
  /**
172
175
  * Commit our updated package.json and package-lock.json
173
176
  */
174
- _c.sent();
177
+ _d.sent();
175
178
  utils_1.Logger.logMessage("[".concat(project.title, "]: File changes committed"));
176
- _c.label = 10;
177
- case 10:
179
+ return [3 /*break*/, 12];
180
+ case 11:
181
+ _c = _d.sent();
182
+ utils_1.Logger.logError("[".concat(project.title, "]: Something went wrong while attempting to install packages. Please manually check if this project should have any monorepo packages installed."));
183
+ return [3 /*break*/, 12];
184
+ case 12:
178
185
  _i++;
179
186
  return [3 /*break*/, 6];
180
- case 11: return [2 /*return*/, true];
187
+ case 13: return [2 /*return*/, true];
181
188
  }
182
189
  });
183
190
  });
@@ -38,6 +38,8 @@ exports.Commits = {
38
38
  return false;
39
39
  if (commit.title.toLowerCase().includes('merge') && commit.title.includes('master') && commit.title.includes('dev'))
40
40
  return false;
41
+ if (commit.title.toLowerCase().includes('merge') && commit.title.includes('release/') && commit.title.includes('dev'))
42
+ return false;
41
43
  if (commit.title === 'Merge remote-tracking branch \'origin/dev\' into dev')
42
44
  return false;
43
45
  return !mergeRequestLookup[commit.id];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@clickview/ship-it",
3
- "version": "0.0.14",
3
+ "version": "0.0.16",
4
4
  "description": "Release Manager",
5
5
  "main": "./lib/index.js",
6
6
  "bin": {