@clickview/ship-it 0.0.52 → 0.0.54-dev.0

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 (56) hide show
  1. package/Dockerfile +1 -3
  2. package/dist/P3/Account.Api.md +20 -0
  3. package/dist/P3/Analytics Web.md +13 -0
  4. package/dist/P3/Batch.Api.md +25 -0
  5. package/dist/P3/Classroom.Api.md +21 -0
  6. package/dist/P3/ClickView Online.md +18 -0
  7. package/dist/P3/ClickView.Cron.JobProcessor.md +28 -0
  8. package/dist/P3/ClickView.Curator.md +39 -0
  9. package/dist/P3/Clients.md +31 -0
  10. package/dist/P3/Collection.Api.md +28 -0
  11. package/dist/P3/Discover.Api.md +23 -0
  12. package/dist/P3/Domain.Api.md +36 -0
  13. package/dist/P3/Exchange.Web.md +6 -0
  14. package/dist/P3/File.Api.IngestService.md +38 -0
  15. package/dist/P3/File.Api.md +26 -0
  16. package/dist/P3/FileGenerator.md +14 -0
  17. package/dist/P3/Hydration.App.md +20 -0
  18. package/dist/P3/Integrations.Api.md +68 -0
  19. package/dist/P3/Krakend.md +29 -0
  20. package/dist/P3/LeadQualifier.App.md +19 -0
  21. package/dist/P3/Library Editor.md +14 -0
  22. package/dist/P3/Library.Api.md +29 -0
  23. package/dist/P3/Lite.md +6 -0
  24. package/dist/P3/LocalCache.Api.md +22 -0
  25. package/dist/P3/LoginAnalytics.Api.md +20 -0
  26. package/dist/P3/Master.Api.md +13 -0
  27. package/dist/P3/Master.Auth.md +28 -0
  28. package/dist/P3/Objects.Api.md +27 -0
  29. package/dist/P3/Permissions.Api.md +23 -0
  30. package/dist/P3/Release Notes.md +1196 -0
  31. package/dist/P3/Search.Api.md +14 -0
  32. package/dist/P3/Share.Api.md +16 -0
  33. package/dist/P3/StreamableLearning.Web.md +6 -0
  34. package/dist/P3/Subjects.API.md +13 -0
  35. package/dist/P3/Tools.md +13 -0
  36. package/dist/P3/Tv.Web.md +35 -0
  37. package/dist/P3/TvConversion.App.md +14 -0
  38. package/dist/P3/TvRecording.App.md +18 -0
  39. package/dist/P3/TvSplice.App.md +14 -0
  40. package/dist/P3/Users.Api.md +46 -0
  41. package/dist/P3/VideoCollections.Api.md +6 -0
  42. package/dist/P3/VideoViews.Api.md +29 -0
  43. package/dist/P3/WorkspaceSplice.App.md +14 -0
  44. package/dist/P3/clickview.md +130 -0
  45. package/dist/P3/index.app.md +58 -0
  46. package/dist/V1/V1 Notes Audit.csv +53 -0
  47. package/dist/W2/W2 Notes Audit.csv +0 -14
  48. package/lib/src/api-clients/slack/SlackApiClient.js +16 -20
  49. package/lib/src/api-clients/team-city/TeamCityApiClient.js +35 -21
  50. package/lib/src/index.js +0 -0
  51. package/lib/src/tasks/InstallPackagesTask.js +183 -57
  52. package/package.json +4 -6
  53. package/.claude/settings.local.json +0 -10
  54. package/dist/P3/P3 Notes Audit.csv +0 -49
  55. package/dist/R1/R1 Notes Audit.csv +0 -117
  56. package/dist/S3/S3 Notes Audit.csv +0 -13
@@ -0,0 +1,28 @@
1
+
2
+ # Before Release
3
+
4
+ ## Tasks
5
+ * [ ] Octopus Deploy
6
+ * [ ] Add `RabbitMq-Shared` variable set
7
+ * [ ] Remove `queues:host`
8
+ * [ ] Remove `queues:port`
9
+
10
+
11
+ # Code Changes
12
+ - Remove call to `GetExternalCustomerIdAsync()` in Wonde `GetNewUserDataAsync()` as the passed in model now has the `ExternalCustomerId`. Closes CORE-2027
13
+ - Remove code related to `GetExternalCustomerIdAsync()` as there are no longer any callers
14
+
15
+ - Update rabbitmq to use SSL. Implements [CORE-2044](https://clickview.atlassian.net/browse/CORE-2044)
16
+
17
+
18
+ # Testing
19
+ Closes CORE-2027
20
+
21
+ * [CORE-2044](https://clickview.atlassian.net/browse/CORE-2044)
22
+
23
+
24
+ # Merge Request Checklist
25
+ - [ ] QA validation is completed.
26
+ - [ ] All dependencies have been addressed.
27
+ - [ ] All before release tasks have been completed.
28
+ - [ ] All after release tasks are ready to be completed.
@@ -0,0 +1,27 @@
1
+
2
+ # Before Release
3
+
4
+ ## Tasks
5
+ * [ ] Add `RabbitMq-Shared` variable set in Octo
6
+
7
+
8
+ # Code Changes
9
+ * Support TLS connection for rabbitmq. Closes CORE-2039
10
+ * Replace `ClickView.Clients.Queue` with `ClickView.GoodStuff.Queues.RabbitMq`
11
+ * Set `EnableSsl = true` and `IgnoreSslErrors = true` for `RabbitMqClientOptions`
12
+ * Update `EventService` to subscribe and unsubscribe from rabbitMq
13
+
14
+ * Fixes a bug where staff restriction wasn't being respected for shared content. Fixes CORE-2026
15
+
16
+
17
+ # Testing
18
+ * CORE-2039
19
+
20
+ CORE-2026
21
+
22
+
23
+ # Merge Request Checklist
24
+ - [ ] QA validation is completed.
25
+ - [ ] All dependencies have been addressed.
26
+ - [ ] All before release tasks have been completed.
27
+ - [ ] All after release tasks are ready to be completed.
@@ -0,0 +1,23 @@
1
+
2
+ # Before Release
3
+
4
+ ## Tasks
5
+ * [ ] Add `RabbitMq-Shared` variable set in Octo
6
+
7
+
8
+ # Code Changes
9
+ * Nuget packages update
10
+ * Replace `ClickView.Clients.Queue` with `ClickView.GoodStuff.Queues.RabbitMq` according to [the guide](https://clickview.quip.com/nlFMAsSqxeaU/2024-05-RabbitMQ-Upgrade)
11
+ * Change the queues port from 5672 to 5671
12
+ * In the RabbitMQ client options, set EnableSsl=true and IgnoreSslErrors=true. Implements INBOX-9149
13
+
14
+
15
+ # Testing
16
+ INBOX-9149
17
+
18
+
19
+ # Merge Request Checklist
20
+ - [ ] QA validation is completed.
21
+ - [ ] All dependencies have been addressed.
22
+ - [ ] All before release tasks have been completed.
23
+ - [ ] All after release tasks are ready to be completed.