document-drive 1.0.0-websockets.1 → 1.0.1

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 (43) hide show
  1. package/README.md +1 -0
  2. package/package.json +74 -88
  3. package/src/cache/index.ts +2 -2
  4. package/src/cache/memory.ts +22 -13
  5. package/src/cache/redis.ts +43 -16
  6. package/src/cache/types.ts +4 -4
  7. package/src/index.ts +6 -3
  8. package/src/queue/base.ts +276 -214
  9. package/src/queue/index.ts +2 -2
  10. package/src/queue/redis.ts +138 -127
  11. package/src/queue/types.ts +44 -38
  12. package/src/read-mode/errors.ts +19 -0
  13. package/src/read-mode/index.ts +125 -0
  14. package/src/read-mode/service.ts +207 -0
  15. package/src/read-mode/types.ts +108 -0
  16. package/src/server/error.ts +61 -26
  17. package/src/server/index.ts +2160 -1785
  18. package/src/server/listener/index.ts +2 -2
  19. package/src/server/listener/manager.ts +475 -437
  20. package/src/server/listener/transmitter/index.ts +4 -5
  21. package/src/server/listener/transmitter/internal.ts +77 -79
  22. package/src/server/listener/transmitter/pull-responder.ts +363 -329
  23. package/src/server/listener/transmitter/switchboard-push.ts +72 -55
  24. package/src/server/listener/transmitter/types.ts +19 -25
  25. package/src/server/types.ts +536 -349
  26. package/src/server/utils.ts +26 -27
  27. package/src/storage/base.ts +81 -0
  28. package/src/storage/browser.ts +233 -216
  29. package/src/storage/filesystem.ts +257 -256
  30. package/src/storage/index.ts +2 -1
  31. package/src/storage/memory.ts +206 -214
  32. package/src/storage/prisma.ts +575 -568
  33. package/src/storage/sequelize.ts +460 -471
  34. package/src/storage/types.ts +83 -67
  35. package/src/utils/default-drives-manager.ts +341 -0
  36. package/src/utils/document-helpers.ts +19 -18
  37. package/src/utils/graphql.ts +288 -34
  38. package/src/utils/index.ts +61 -59
  39. package/src/utils/logger.ts +39 -37
  40. package/src/utils/migrations.ts +58 -0
  41. package/src/utils/run-asap.ts +156 -0
  42. package/CHANGELOG.md +0 -818
  43. package/src/server/listener/transmitter/subscription.ts +0 -364
package/CHANGELOG.md DELETED
@@ -1,818 +0,0 @@
1
- # [1.0.0-alpha.75](https://github.com/powerhouse-inc/document-drive/compare/v1.0.0-alpha.74...v1.0.0-alpha.75) (2024-06-18)
2
-
3
-
4
- ### Features
5
-
6
- * check if operations being added are already stored ([5de4d74](https://github.com/powerhouse-inc/document-drive/commit/5de4d7482e2e6fa60a4e2ca43734771ff501f4d6))
7
-
8
- # [1.0.0-alpha.74](https://github.com/powerhouse-inc/document-drive/compare/v1.0.0-alpha.73...v1.0.0-alpha.74) (2024-06-12)
9
-
10
-
11
- ### Features
12
-
13
- * cleanup listeners when drive is removed ([7c33166](https://github.com/powerhouse-inc/document-drive/commit/7c33166141ee65d7776e5281be0e808bd8936563))
14
-
15
- # [1.0.0-alpha.73](https://github.com/powerhouse-inc/document-drive/compare/v1.0.0-alpha.72...v1.0.0-alpha.73) (2024-06-10)
16
-
17
-
18
- ### Features
19
-
20
- * add storage method to fetch sync units revision ([aa9c16f](https://github.com/powerhouse-inc/document-drive/commit/aa9c16f6b8b90273dc6df007e806274fa2d30f76))
21
- * implemented getSynchronizationUnitsRevision ([4e8f899](https://github.com/powerhouse-inc/document-drive/commit/4e8f89919d1098dbb4376a9e3be137f581b565d2))
22
- * removed unnecessary sync units call on pullResponder ([972d2ec](https://github.com/powerhouse-inc/document-drive/commit/972d2ec15cf0f150a4e2b6e88a09e6df6cb7dbc7))
23
- * removed unnecessary sync units queries ([1c0d98f](https://github.com/powerhouse-inc/document-drive/commit/1c0d98f65dd0e7a52fbb7ad1ad394c256419dc68))
24
-
25
- # [1.0.0-alpha.72](https://github.com/powerhouse-inc/document-drive/compare/v1.0.0-alpha.71...v1.0.0-alpha.72) (2024-06-07)
26
-
27
-
28
- ### Features
29
-
30
- * add sync status to file when add drive operations ([a6c5380](https://github.com/powerhouse-inc/document-drive/commit/a6c5380aafb383c467fc765ee2c2690bdc20cd7c))
31
- * added sync status to files when add document operations ([c89b02c](https://github.com/powerhouse-inc/document-drive/commit/c89b02c01c3589c725ffa700fbf38812ea700259))
32
- * remove related sync status when stopSyncRemoteDrive ([c6577e2](https://github.com/powerhouse-inc/document-drive/commit/c6577e2df3846f15248bacbc8b42f358949db3c8))
33
- * use syncId instead of documentId ([bd4073a](https://github.com/powerhouse-inc/document-drive/commit/bd4073a3d741e03bf99ae9651ef57c5192a1a204))
34
-
35
- # [1.0.0-alpha.71](https://github.com/powerhouse-inc/document-drive/compare/v1.0.0-alpha.70...v1.0.0-alpha.71) (2024-06-07)
36
-
37
-
38
- ### Features
39
-
40
- * added queue actions implementations ([6741a59](https://github.com/powerhouse-inc/document-drive/commit/6741a59d191c5cdd1bfb253c3d5ee28d7f2a0779))
41
- * support operation and action jobs ([7e6c878](https://github.com/powerhouse-inc/document-drive/commit/7e6c878560ce3132d8dc1a71913a83ad5d138da9))
42
-
43
- # [1.0.0-alpha.70](https://github.com/powerhouse-inc/document-drive/compare/v1.0.0-alpha.69...v1.0.0-alpha.70) (2024-06-07)
44
-
45
-
46
- ### Bug Fixes
47
-
48
- * slug caching ([1465ef0](https://github.com/powerhouse-inc/document-drive/commit/1465ef028d825ed2dfe50126c6dc64e8ba4445d5))
49
- * slug caching ([1134dc6](https://github.com/powerhouse-inc/document-drive/commit/1134dc6c1384648f6af5c871d0e51e6acb4e63fb))
50
-
51
- # [1.0.0-alpha.69](https://github.com/powerhouse-inc/document-drive/compare/v1.0.0-alpha.68...v1.0.0-alpha.69) (2024-06-07)
52
-
53
-
54
- ### Bug Fixes
55
-
56
- * optimize get documents ([f6f13ab](https://github.com/powerhouse-inc/document-drive/commit/f6f13abb65d8c34a7ba64787fa4ae4ee024956fa))
57
-
58
- # [1.0.0-alpha.68](https://github.com/powerhouse-inc/document-drive/compare/v1.0.0-alpha.67...v1.0.0-alpha.68) (2024-06-04)
59
-
60
-
61
- ### Bug Fixes
62
-
63
- * redis queue ([e99d1b9](https://github.com/powerhouse-inc/document-drive/commit/e99d1b9f0c704836cc0752e36e0f905dc192e5e1))
64
-
65
- # [1.0.0-alpha.67](https://github.com/powerhouse-inc/document-drive/compare/v1.0.0-alpha.66...v1.0.0-alpha.67) (2024-06-04)
66
-
67
-
68
- ### Features
69
-
70
- * get operations from cache on storage ([8416464](https://github.com/powerhouse-inc/document-drive/commit/84164646609045b2cd8e9e8747e364c746d9e3ec))
71
-
72
- # [1.0.0-alpha.66](https://github.com/powerhouse-inc/document-drive/compare/v1.0.0-alpha.65...v1.0.0-alpha.66) (2024-06-03)
73
-
74
-
75
- ### Features
76
-
77
- * updated libs ([5e47758](https://github.com/powerhouse-inc/document-drive/commit/5e477580524a1defd92dd0bef9b160e182436ec9))
78
-
79
- # [1.0.0-alpha.65](https://github.com/powerhouse-inc/document-drive/compare/v1.0.0-alpha.64...v1.0.0-alpha.65) (2024-05-30)
80
-
81
-
82
- ### Features
83
-
84
- * fetch resulting state for last unskipped operation ([8297353](https://github.com/powerhouse-inc/document-drive/commit/8297353dc8eaca107d8134580dee67c3265b05b5))
85
-
86
- # [1.0.0-alpha.64](https://github.com/powerhouse-inc/document-drive/compare/v1.0.0-alpha.63...v1.0.0-alpha.64) (2024-05-30)
87
-
88
-
89
- ### Features
90
-
91
- * update document-model lib version ([#180](https://github.com/powerhouse-inc/document-drive/issues/180)) ([83cec58](https://github.com/powerhouse-inc/document-drive/commit/83cec58cb02388a3b2a643dd5af6c31cd850242d))
92
-
93
- # [1.0.0-alpha.63](https://github.com/powerhouse-inc/document-drive/compare/v1.0.0-alpha.62...v1.0.0-alpha.63) (2024-05-30)
94
-
95
-
96
- ### Bug Fixes
97
-
98
- * operations query ([8dd11c7](https://github.com/powerhouse-inc/document-drive/commit/8dd11c72058452f3e8febac472d01ad56d959e17))
99
-
100
- # [1.0.0-alpha.62](https://github.com/powerhouse-inc/document-drive/compare/v1.0.0-alpha.61...v1.0.0-alpha.62) (2024-05-30)
101
-
102
-
103
- ### Bug Fixes
104
-
105
- * added drive and documentId filter ([718405f](https://github.com/powerhouse-inc/document-drive/commit/718405febbe8e53a3fd392cdd4acf2b041347eaf))
106
-
107
- # [1.0.0-alpha.61](https://github.com/powerhouse-inc/document-drive/compare/v1.0.0-alpha.60...v1.0.0-alpha.61) (2024-05-30)
108
-
109
-
110
- ### Features
111
-
112
- * store resulting state as bytes and only retrieve state for last op of each scope ([c6a5004](https://github.com/powerhouse-inc/document-drive/commit/c6a5004a3dd07ee1ce2f5521bb7a6aa5e970465e))
113
-
114
- # [1.0.0-alpha.60](https://github.com/powerhouse-inc/document-drive/compare/v1.0.0-alpha.59...v1.0.0-alpha.60) (2024-05-29)
115
-
116
-
117
- ### Features
118
-
119
- * avoid duplicated getDocument call ([c0684bc](https://github.com/powerhouse-inc/document-drive/commit/c0684bc0746d8bafb9393cdaeebfb60b38a8a32f))
120
-
121
- # [1.0.0-alpha.59](https://github.com/powerhouse-inc/document-drive/compare/v1.0.0-alpha.58...v1.0.0-alpha.59) (2024-05-28)
122
-
123
-
124
- ### Features
125
-
126
- * enable operation id ([#174](https://github.com/powerhouse-inc/document-drive/issues/174)) ([1d77fd2](https://github.com/powerhouse-inc/document-drive/commit/1d77fd2f6a4618371c6fc4c072d4eab7d27a662a))
127
-
128
- # [1.0.0-alpha.58](https://github.com/powerhouse-inc/document-drive/compare/v1.0.0-alpha.57...v1.0.0-alpha.58) (2024-05-28)
129
-
130
-
131
- ### Features
132
-
133
- * don't save queue job result ([efbf239](https://github.com/powerhouse-inc/document-drive/commit/efbf239e5f77592267446d5c11d670a82f1f6e58))
134
-
135
- # [1.0.0-alpha.57](https://github.com/powerhouse-inc/document-drive/compare/v1.0.0-alpha.56...v1.0.0-alpha.57) (2024-05-22)
136
-
137
-
138
- ### Features
139
-
140
- * new release ([17796e8](https://github.com/powerhouse-inc/document-drive/commit/17796e8577d16d3095a8adf3c40e7bd7146b6142))
141
-
142
- # [1.0.0-alpha.56](https://github.com/powerhouse-inc/document-drive/compare/v1.0.0-alpha.55...v1.0.0-alpha.56) (2024-05-22)
143
-
144
-
145
- ### Features
146
-
147
- * add queues and append only conflict resolution ([d17abd6](https://github.com/powerhouse-inc/document-drive/commit/d17abd664a7381f80faa6530f83ca9e224282ba1)), closes [#153](https://github.com/powerhouse-inc/document-drive/issues/153)
148
-
149
- # 1.0.0-experimental.1 (2024-05-15)
150
-
151
-
152
- ### Bug Fixes
153
-
154
- * acknowledge porper document ([c7abd01](https://github.com/powerhouse-inc/document-drive/commit/c7abd0138346b2482546a7a731b22be3e61c8ccd))
155
- * add exports ([#157](https://github.com/powerhouse-inc/document-drive/issues/157)) ([1c74344](https://github.com/powerhouse-inc/document-drive/commit/1c74344f225aa0dc12b06603937c137b6be2afe7))
156
- * added exports ([04958fb](https://github.com/powerhouse-inc/document-drive/commit/04958fb7c6595bc5e700196e481c4746e6702301))
157
- * added name field to getDocument ([2cba21a](https://github.com/powerhouse-inc/document-drive/commit/2cba21aa6c4efcde50d8524f46dd22804b96f7d0))
158
- * apply auto lint ([803cf91](https://github.com/powerhouse-inc/document-drive/commit/803cf91b3c427dd9c6b1ef9a76c92a4cfa480fbd))
159
- * cast result of json parse ([83ee12b](https://github.com/powerhouse-inc/document-drive/commit/83ee12be711c74047eb7a4a86e235b7ab16e0a69))
160
- * delete drive handling ([6547274](https://github.com/powerhouse-inc/document-drive/commit/6547274d4ebe02e737aa429699af39fbabe2184b))
161
- * duplicate driv entry ([c89c27e](https://github.com/powerhouse-inc/document-drive/commit/c89c27e892a2b1d345cf5b28b00722f3cef88228))
162
- * generate drive Id if empty string ([9c5044c](https://github.com/powerhouse-inc/document-drive/commit/9c5044cb21b9f311b999ab60612e8e61991d0dad))
163
- * handle signals in sequence ([9660b08](https://github.com/powerhouse-inc/document-drive/commit/9660b089e554e570ff6312645b799e1af9e09596))
164
- * missing operations in return values ([6d6cf56](https://github.com/powerhouse-inc/document-drive/commit/6d6cf56426d75b41aad1df0e8735e2a3dcc34221))
165
- * operation data filter ([0e91f21](https://github.com/powerhouse-inc/document-drive/commit/0e91f2110a5942404b864199af8ebabd00112dea))
166
- * prisma schema ([bac17dd](https://github.com/powerhouse-inc/document-drive/commit/bac17ddd305788252529706c0c2e8b2207c64838))
167
- * queue actions ([8a9f3c0](https://github.com/powerhouse-inc/document-drive/commit/8a9f3c0ed0ff78fcebf3630ca3c3b64c245a3baf))
168
- * remove react settings ([6e11865](https://github.com/powerhouse-inc/document-drive/commit/6e1186575de9a457add141fc916d6ea78fd066d5))
169
- * remove sentry ([75faf6a](https://github.com/powerhouse-inc/document-drive/commit/75faf6acff391bb2f5fac016190a481019a225ee))
170
- * reverse since change ([3e09362](https://github.com/powerhouse-inc/document-drive/commit/3e093623ca2f315e7faebeee3b3f3fc42bad083b))
171
- * semantic release ([94077da](https://github.com/powerhouse-inc/document-drive/commit/94077da1f383ee2bf1530af9a4f2749cbc8d4e89))
172
- * transmitter not found ([0fac28b](https://github.com/powerhouse-inc/document-drive/commit/0fac28b6f3de37b13899075c88fd37a9ce355013))
173
- * types ([37ebeca](https://github.com/powerhouse-inc/document-drive/commit/37ebeca0ff18a8f60c4604ace6ba17bad730f4cb))
174
- * update revision field if new operations are added ([45eb259](https://github.com/powerhouse-inc/document-drive/commit/45eb259b479655dde575835ce5c1aa6ad68a94f1))
175
- * wording issues ([fcbb994](https://github.com/powerhouse-inc/document-drive/commit/fcbb994d49eb035cdb9e553b104b6c8279b7fbef))
176
-
177
-
178
- ### Features
179
-
180
- * add ts-reset lib ([760c3fb](https://github.com/powerhouse-inc/document-drive/commit/760c3fbe685775be506835a1975541539c8fb862))
181
- * add unique constraint on operation index ([b058834](https://github.com/powerhouse-inc/document-drive/commit/b058834a8b48c2f6db971427e9633a91141c1079))
182
- * added .env.example ([c781094](https://github.com/powerhouse-inc/document-drive/commit/c781094ad7f7312efeee3e94695e809c5d4c6722))
183
- * added acknowledge function to pull responder ([e72a721](https://github.com/powerhouse-inc/document-drive/commit/e72a721713bb947b0ba93be1c38797e209865e5c))
184
- * added addAction methods and addInternalListener ([9a076b3](https://github.com/powerhouse-inc/document-drive/commit/9a076b3155060825d442351a2cd36d935a17ca44))
185
- * added basic implementation of push and pull transmitter ([1ffb004](https://github.com/powerhouse-inc/document-drive/commit/1ffb00443bf442a17e545f2451e9b399edfcc0d3))
186
- * added basic push strands implementatioN ([c858b75](https://github.com/powerhouse-inc/document-drive/commit/c858b7544365429ce4535a6c849cf785a5cafcd5))
187
- * added basic transmitters ([996ff0f](https://github.com/powerhouse-inc/document-drive/commit/996ff0f0c7ea212f1ed96ebc05690d0689bf3429))
188
- * added clearStorage support ([#82](https://github.com/powerhouse-inc/document-drive/issues/82)) ([323a93f](https://github.com/powerhouse-inc/document-drive/commit/323a93f0aaf1da1bd66b3b3292e35aefd92e9c5f))
189
- * added clipboard flag to operations table ([f6ce677](https://github.com/powerhouse-inc/document-drive/commit/f6ce677b5e3d723074a40bb834f4029cd1c13b9a))
190
- * added clipboard to document ([3f8c295](https://github.com/powerhouse-inc/document-drive/commit/3f8c29573cbd08f071492b56f4b31f688af7c9db))
191
- * added debug and trace methods and logger export ([c7336de](https://github.com/powerhouse-inc/document-drive/commit/c7336de1f4b0e55a4c8d4e5efe5b063c7a4ccc88))
192
- * added document cache ([deae523](https://github.com/powerhouse-inc/document-drive/commit/deae523851b98fcd250825a4b2918b364525660f))
193
- * added drive events and improved sync error handling ([647c833](https://github.com/powerhouse-inc/document-drive/commit/647c8339b2166767c240a286d9ea12b032695417))
194
- * added duplicate folders id tests ([#143](https://github.com/powerhouse-inc/document-drive/issues/143)) ([abd3688](https://github.com/powerhouse-inc/document-drive/commit/abd3688bb284257a8f088e905e1f7cf6de1f8f5d))
195
- * added experimental release ([#155](https://github.com/powerhouse-inc/document-drive/issues/155)) ([adc52a5](https://github.com/powerhouse-inc/document-drive/commit/adc52a56655ef97de588cb03b6922ab69e72a8e9))
196
- * added exponential retry backoff to prisma transactions ([b38e72f](https://github.com/powerhouse-inc/document-drive/commit/b38e72fdfd29f4c39e15f606fccc942ec966fffe))
197
- * added getDrive by slug to memory adapter ([5515c34](https://github.com/powerhouse-inc/document-drive/commit/5515c34ecc18a6f14931a1a66cee454f14dbe03f))
198
- * added getDriveBySlug ([680cf71](https://github.com/powerhouse-inc/document-drive/commit/680cf71209853689e1414f90f58f079460be94d5))
199
- * added graphql requests for pull responder ([6578bae](https://github.com/powerhouse-inc/document-drive/commit/6578bae242a0c625531ac8b9bdec4c51727f57e6))
200
- * added init of pullResponder ([3961916](https://github.com/powerhouse-inc/document-drive/commit/3961916bbb780c0555d3d7e106ab25c80e988c7b))
201
- * added internal transmitter ([d728aed](https://github.com/powerhouse-inc/document-drive/commit/d728aed8ae692a83a0b998ccd6d7e36496e08b95))
202
- * added internal transmitter service ([6863620](https://github.com/powerhouse-inc/document-drive/commit/68636202d5bfd081ef979263fd697086529a1d10))
203
- * added listener functions ([6bc1803](https://github.com/powerhouse-inc/document-drive/commit/6bc180358826adf8a0ce6f247df37d8de245d8e7))
204
- * added missing forceSync param ([04cd42c](https://github.com/powerhouse-inc/document-drive/commit/04cd42c5cc1f173dd04e362fde7ba2e592142d62))
205
- * added namespace option for browser storage ([2fb312a](https://github.com/powerhouse-inc/document-drive/commit/2fb312a020d6593157c401814e0327d260f64718))
206
- * added operation queues with memory and redis adapters ([#139](https://github.com/powerhouse-inc/document-drive/issues/139)) ([df54c4a](https://github.com/powerhouse-inc/document-drive/commit/df54c4a0ab069d0bc96cd0988967dc421c332668)), closes [#154](https://github.com/powerhouse-inc/document-drive/issues/154)
207
- * added prisma connection ([ef87ca7](https://github.com/powerhouse-inc/document-drive/commit/ef87ca7681c4336a68f15ecf35906cdfc9c8aa0a))
208
- * added registerListener function to PullResponderTransmitter ([814c160](https://github.com/powerhouse-inc/document-drive/commit/814c1603ef011402db30f373c3b5fbb2d3f12c58))
209
- * added retry mechanism to transaction ([e01a2cb](https://github.com/powerhouse-inc/document-drive/commit/e01a2cb6e1c64d37655255191fc4af13254201fe))
210
- * added semantic release ([f1c31a6](https://github.com/powerhouse-inc/document-drive/commit/f1c31a6bd2012ac6d51a7a3a5b94f656887e6b5a))
211
- * added sequelize adapter ([#19](https://github.com/powerhouse-inc/document-drive/issues/19)) ([71529d8](https://github.com/powerhouse-inc/document-drive/commit/71529d8d60eb6ff0390bdebb1bb660fb680c99f3))
212
- * added strandUpdate events ([1143716](https://github.com/powerhouse-inc/document-drive/commit/11437161fd1b0b0f37a7ef50833022507e4699f3))
213
- * added support for update noop operations ([#42](https://github.com/powerhouse-inc/document-drive/issues/42)) ([c59e15a](https://github.com/powerhouse-inc/document-drive/commit/c59e15a69f08f2abe654ce15c090f1212aee7606))
214
- * added update operations in prisma storage addDocumentOperations ([#71](https://github.com/powerhouse-inc/document-drive/issues/71)) ([eeb96af](https://github.com/powerhouse-inc/document-drive/commit/eeb96afbad520f90ce8c9b71bf573950dadadf4b))
215
- * added winston as default logger ([77c2451](https://github.com/powerhouse-inc/document-drive/commit/77c2451e4ceaddb11dd378a89f89c4245db51cb0))
216
- * also transmit scope state on internal transmitters ([c75a5d5](https://github.com/powerhouse-inc/document-drive/commit/c75a5d5b01ddaf166f0d86cd0afab4f888757a17))
217
- * avoid duplicating sync units on listener manager ([ad9a015](https://github.com/powerhouse-inc/document-drive/commit/ad9a015d8b50ba444362b85b1f57b9349037c325))
218
- * bug fixing ([1bb6097](https://github.com/powerhouse-inc/document-drive/commit/1bb60972588b5b95d2bb52354d8b35319d21eed5))
219
- * bump document-model dep ([7442070](https://github.com/powerhouse-inc/document-drive/commit/744207006dad191e214f0547d78d185530476560))
220
- * bump libs ([8b18624](https://github.com/powerhouse-inc/document-drive/commit/8b18624c05792d086b31a0b42b99cf42f3dc0627))
221
- * bump lint deps ([c4a68c9](https://github.com/powerhouse-inc/document-drive/commit/c4a68c9d1c8fea85d85d18eebf66a53d57438dbd))
222
- * cache updated document as soon as possible ([0b3327c](https://github.com/powerhouse-inc/document-drive/commit/0b3327cea01b508e0c07f05dee7fdcb4a6aaea35))
223
- * change unimportant rules to warn ([3958150](https://github.com/powerhouse-inc/document-drive/commit/395815033e8fe5e937342b5b2ba1d57ba64cbc8d))
224
- * check if there are conflicting operations when storing operations ([2487ab1](https://github.com/powerhouse-inc/document-drive/commit/2487ab10017ab819c560a115409829027dad9fda))
225
- * continue initializing remaining drives if one fails ([5cd9962](https://github.com/powerhouse-inc/document-drive/commit/5cd9962785e399aa5eb06f2b87a97fed72b51178))
226
- * defined types and functions ([0b57ae9](https://github.com/powerhouse-inc/document-drive/commit/0b57ae969f023f06ffc4859d1f8f514ef7a2508f))
227
- * delay sync updates after receiving strands ([e1d3a87](https://github.com/powerhouse-inc/document-drive/commit/e1d3a871a99042d397b7c7928432028251fba55d))
228
- * delete sync units before removing document ([6b54e1d](https://github.com/powerhouse-inc/document-drive/commit/6b54e1dfb7249c0c6e061e916783ac92cb5d1481))
229
- * do not consider already skipped operations when adding operations to document ([0778863](https://github.com/powerhouse-inc/document-drive/commit/077886351a1dbde484331a30778fa4daf12cf2a2))
230
- * don't send operation with index equal to fromRevision ([f279046](https://github.com/powerhouse-inc/document-drive/commit/f279046f156c3b9c35c1c7cdd950319078f09e04))
231
- * emit missing operation error ([8250681](https://github.com/powerhouse-inc/document-drive/commit/82506819148565aa6a7034b8e4a6d27ec9d3a0a3))
232
- * emit single sync status event for multiple strands ([1b9cf53](https://github.com/powerhouse-inc/document-drive/commit/1b9cf5313cca31f696c104b169d1210a3c2b829f))
233
- * emit sync events when updating listeners ([b1899bb](https://github.com/powerhouse-inc/document-drive/commit/b1899bbe6a3d555fc6ea5236c55b1417def11ec2))
234
- * filter out drive strand if filter excludes it ([a6d3cd2](https://github.com/powerhouse-inc/document-drive/commit/a6d3cd25e63c917cf0033429ab75d265e76bde32))
235
- * fix adding files with documents ([b033ff9](https://github.com/powerhouse-inc/document-drive/commit/b033ff99be62a7024448c51186b26aaa6d49215c))
236
- * fix filter operations with since timestamp ([8a19d30](https://github.com/powerhouse-inc/document-drive/commit/8a19d30f892a9862be15c670d8114f4493198245))
237
- * fixed array access error ([ed1a3a9](https://github.com/powerhouse-inc/document-drive/commit/ed1a3a953a0a52d629eb8a69f83ce18b976076af))
238
- * fixed date comparison ([6d28a3b](https://github.com/powerhouse-inc/document-drive/commit/6d28a3bfd6b338deaa5ede718b7a9ebc0cccf498))
239
- * fixed state on internal transmitter strand ([5dbe930](https://github.com/powerhouse-inc/document-drive/commit/5dbe930af551375117d36f9b4d36fd613de8d9f7))
240
- * fixed unit tests ([46edd15](https://github.com/powerhouse-inc/document-drive/commit/46edd150aa4deb8814b4d1e6bd41b13e42b6ae91))
241
- * force deploy ([#126](https://github.com/powerhouse-inc/document-drive/issues/126)) ([e02d22e](https://github.com/powerhouse-inc/document-drive/commit/e02d22ee00471f3f20544cc27155108143d22512))
242
- * format changelog ([99dd18b](https://github.com/powerhouse-inc/document-drive/commit/99dd18bf95b798423e4dc83c2b4fd088a612b9c8))
243
- * get drive by id or slug ([95c171e](https://github.com/powerhouse-inc/document-drive/commit/95c171e97eb7e27a65129d7fc400fae862d62fdc))
244
- * implementation of switchboard transmitter ([cfbdc85](https://github.com/powerhouse-inc/document-drive/commit/cfbdc8570dfc86b6fe949c5246b240c634917a99))
245
- * implemented operation validation for document operations ([39bedf4](https://github.com/powerhouse-inc/document-drive/commit/39bedf43d2a3b1fda51d82f26b7f92b93a7cce5b))
246
- * improve add operations insert statement ([1c238ce](https://github.com/powerhouse-inc/document-drive/commit/1c238cef779e62bf89d2341a05a3af3633b9ec59))
247
- * improved error reporting and fixed operation hash check ([c6cc70f](https://github.com/powerhouse-inc/document-drive/commit/c6cc70f627dbdd2eab6399543fd41544fb959506))
248
- * improved operation errors ([a05772d](https://github.com/powerhouse-inc/document-drive/commit/a05772d023c600dd85d50be65f1ee80b19d546ef))
249
- * init listener manager ([0edb539](https://github.com/powerhouse-inc/document-drive/commit/0edb53988f691672a3c3e0ce3179142bc09b6b58))
250
- * initial work on tests migration ([3046dc1](https://github.com/powerhouse-inc/document-drive/commit/3046dc16a0405476a0af22aaf605be6ce43bf4c5))
251
- * instantiate listeners on server initialization ([367396d](https://github.com/powerhouse-inc/document-drive/commit/367396d8205b6ba81f7c4261d516be2eebfb664e))
252
- * integrated append only conflict resolution ([#153](https://github.com/powerhouse-inc/document-drive/issues/153)) ([16f12b6](https://github.com/powerhouse-inc/document-drive/commit/16f12b655963bd34575a00af3deb49182a35863a))
253
- * only add listeners once ([12ca458](https://github.com/powerhouse-inc/document-drive/commit/12ca458ce9a4b5577fc45c5a8bcca5d905bd80ee))
254
- * only emit event when syncStatus changes ([1cedf61](https://github.com/powerhouse-inc/document-drive/commit/1cedf6110fead2410a61d0d8f261a57d11c48fa1))
255
- * proceed with loop only after previous request is done ([d7eec70](https://github.com/powerhouse-inc/document-drive/commit/d7eec7044233c060c56e98698360070198a540dd))
256
- * replaced winston with console ([bbb7fc5](https://github.com/powerhouse-inc/document-drive/commit/bbb7fc53fa8cb5da97c6068e95ab77d5149d87fc))
257
- * run pull loop immediately for the first time ([802a126](https://github.com/powerhouse-inc/document-drive/commit/802a126e4ec90b5b62ad3e228cee73daa06cf651))
258
- * set sync status success if no new strands ([7a9627c](https://github.com/powerhouse-inc/document-drive/commit/7a9627cd72c80ae3c56a933bcd92c3da87529e00))
259
- * skip hash generation when replaying documents ([697ea35](https://github.com/powerhouse-inc/document-drive/commit/697ea35ae79a6697c8bfd4810a8d28139bf1a01f))
260
- * stop drive sync if triggers are removed ([dcf2df2](https://github.com/powerhouse-inc/document-drive/commit/dcf2df256f43f234bfb9188c750521fb57df880f))
261
- * store and sync operation context ([b2e5d5e](https://github.com/powerhouse-inc/document-drive/commit/b2e5d5efe59ed382fe6f984c193959218cbac4e0))
262
- * sync protocol draft ([f5ef843](https://github.com/powerhouse-inc/document-drive/commit/f5ef8436f9dfa50b546c77363bc8edfb887d671c))
263
- * trigger release ([a99370f](https://github.com/powerhouse-inc/document-drive/commit/a99370fbfea65bbc20f3fc3c39f0a26087795603))
264
- * trigger release ([75d8cc7](https://github.com/powerhouse-inc/document-drive/commit/75d8cc73c7022ecb6c71945486539e3b61ad9e1d))
265
- * trigger release ([33209d5](https://github.com/powerhouse-inc/document-drive/commit/33209d59cf4f44946b524a88c9008fef40aceea9))
266
- * Update CHANGELOG.md ([dc9d571](https://github.com/powerhouse-inc/document-drive/commit/dc9d5712092eec57d156b967f91a3079ce6dd917))
267
- * update config ([c0197a6](https://github.com/powerhouse-inc/document-drive/commit/c0197a6bd86cdb706883e9cd7f0cad017fa115de))
268
- * update document-model and document-model-libs ([#145](https://github.com/powerhouse-inc/document-drive/issues/145)) ([87dff17](https://github.com/powerhouse-inc/document-drive/commit/87dff17b5c8a76010e09dff2d8e6dba55fb262a5))
269
- * update document-model-libs version ([#100](https://github.com/powerhouse-inc/document-drive/issues/100)) ([0648328](https://github.com/powerhouse-inc/document-drive/commit/06483288af745f94aa9a81e526a03ae72197aa99))
270
- * update updatedOperations instead of create ([f87691d](https://github.com/powerhouse-inc/document-drive/commit/f87691dadee45b08f357f5b9df7374bbf7dd39f1))
271
- * updated document model dep ([37fa455](https://github.com/powerhouse-inc/document-drive/commit/37fa4556c44b000837bcb95673c90cf06af784c7))
272
- * updated document model dep ([c9876dc](https://github.com/powerhouse-inc/document-drive/commit/c9876dc83462d80b1c4c4213f9aab6f791f60f61))
273
- * updated document-model ([6d2eb8b](https://github.com/powerhouse-inc/document-drive/commit/6d2eb8b6eb35696b84d6dbe4586ec410ff5c61e6))
274
- * updated document-model-libs dep ([44bced0](https://github.com/powerhouse-inc/document-drive/commit/44bced07a07d6f65f105f342c8b07f98b5f1bbc4))
275
- * updated document-model-libs dep ([e73b813](https://github.com/powerhouse-inc/document-drive/commit/e73b81352899b1478512f2e9a50d61e534c6c360))
276
- * updated IDocumentDriveServer type ([ea1d7b4](https://github.com/powerhouse-inc/document-drive/commit/ea1d7b4ad3b4804db398de6a5d7f60088bee3118))
277
- * updated prisma schema with syncUnits and listeners ([224cbfe](https://github.com/powerhouse-inc/document-drive/commit/224cbfe51d97a2107ea114cc00a7a1665278f85c))
278
- * use prisma transaction ([4a02fb8](https://github.com/powerhouse-inc/document-drive/commit/4a02fb8c7d2b93253c4cd7104318772e3b199b61))
279
- * use reshuffleByTimestamp + added BasciClient + tests ([#129](https://github.com/powerhouse-inc/document-drive/issues/129)) ([8e0cfae](https://github.com/powerhouse-inc/document-drive/commit/8e0cfae5e0d2de52064689f023e4a80c170d8c84))
280
- * use serializable transactions ([267cae4](https://github.com/powerhouse-inc/document-drive/commit/267cae47ba3fec4a4863169350cbf961172caebf))
281
-
282
- # [1.0.0-experimental.5](https://github.com/powerhouse-inc/document-drive/compare/v1.0.0-experimental.4...v1.0.0-experimental.5) (2024-05-09)
283
-
284
- ### Features
285
-
286
- - updated IDocumentDriveServer type ([09dfbd4](https://github.com/powerhouse-inc/document-drive/commit/09dfbd41da5a805c842a69bedf168d5cff0976f0))
287
-
288
- # [1.0.0-experimental.4](https://github.com/powerhouse-inc/document-drive/compare/v1.0.0-experimental.3...v1.0.0-experimental.4) (2024-05-08)
289
-
290
- ### Bug Fixes
291
-
292
- - add exports ([#157](https://github.com/powerhouse-inc/document-drive/issues/157)) ([59b5753](https://github.com/powerhouse-inc/document-drive/commit/59b57539216aea41f633c7a3f88cf93974c5f0e5))
293
-
294
- # [1.0.0-experimental.3](https://github.com/powerhouse-inc/document-drive/compare/v1.0.0-experimental.2...v1.0.0-experimental.3) (2024-05-08)
295
-
296
- ### Bug Fixes
297
-
298
- - added exports ([412aced](https://github.com/powerhouse-inc/document-drive/commit/412acedb614750d6fe0ca23cdcff90e1003a99ad))
299
-
300
- # [1.0.0-experimental.2](https://github.com/powerhouse-inc/document-drive/compare/v1.0.0-experimental.1...v1.0.0-experimental.2) (2024-05-08)
301
-
302
- ### Features
303
-
304
- - added operation queues with memory and redis adapters ([#139](https://github.com/powerhouse-inc/document-drive/issues/139)) ([7839cea](https://github.com/powerhouse-inc/document-drive/commit/7839ceadb666d2358a7e06167862c7f179b7ad5a)), closes [#154](https://github.com/powerhouse-inc/document-drive/issues/154)
305
-
306
- # 1.0.0-experimental.1 (2024-05-07)
307
-
308
- ### Bug Fixes
309
-
310
- - acknowledge porper document ([c7abd01](https://github.com/powerhouse-inc/document-drive/commit/c7abd0138346b2482546a7a731b22be3e61c8ccd))
311
- - added name field to getDocument ([2cba21a](https://github.com/powerhouse-inc/document-drive/commit/2cba21aa6c4efcde50d8524f46dd22804b96f7d0))
312
- - apply auto lint ([803cf91](https://github.com/powerhouse-inc/document-drive/commit/803cf91b3c427dd9c6b1ef9a76c92a4cfa480fbd))
313
- - cast result of json parse ([83ee12b](https://github.com/powerhouse-inc/document-drive/commit/83ee12be711c74047eb7a4a86e235b7ab16e0a69))
314
- - delete drive handling ([6547274](https://github.com/powerhouse-inc/document-drive/commit/6547274d4ebe02e737aa429699af39fbabe2184b))
315
- - duplicate driv entry ([c89c27e](https://github.com/powerhouse-inc/document-drive/commit/c89c27e892a2b1d345cf5b28b00722f3cef88228))
316
- - generate drive Id if empty string ([9c5044c](https://github.com/powerhouse-inc/document-drive/commit/9c5044cb21b9f311b999ab60612e8e61991d0dad))
317
- - handle signals in sequence ([9660b08](https://github.com/powerhouse-inc/document-drive/commit/9660b089e554e570ff6312645b799e1af9e09596))
318
- - missing operations in return values ([6d6cf56](https://github.com/powerhouse-inc/document-drive/commit/6d6cf56426d75b41aad1df0e8735e2a3dcc34221))
319
- - operation data filter ([0e91f21](https://github.com/powerhouse-inc/document-drive/commit/0e91f2110a5942404b864199af8ebabd00112dea))
320
- - prisma schema ([bac17dd](https://github.com/powerhouse-inc/document-drive/commit/bac17ddd305788252529706c0c2e8b2207c64838))
321
- - remove react settings ([6e11865](https://github.com/powerhouse-inc/document-drive/commit/6e1186575de9a457add141fc916d6ea78fd066d5))
322
- - remove sentry ([75faf6a](https://github.com/powerhouse-inc/document-drive/commit/75faf6acff391bb2f5fac016190a481019a225ee))
323
- - reverse since change ([3e09362](https://github.com/powerhouse-inc/document-drive/commit/3e093623ca2f315e7faebeee3b3f3fc42bad083b))
324
- - semantic release ([94077da](https://github.com/powerhouse-inc/document-drive/commit/94077da1f383ee2bf1530af9a4f2749cbc8d4e89))
325
- - transmitter not found ([0fac28b](https://github.com/powerhouse-inc/document-drive/commit/0fac28b6f3de37b13899075c88fd37a9ce355013))
326
- - types ([37ebeca](https://github.com/powerhouse-inc/document-drive/commit/37ebeca0ff18a8f60c4604ace6ba17bad730f4cb))
327
- - update revision field if new operations are added ([45eb259](https://github.com/powerhouse-inc/document-drive/commit/45eb259b479655dde575835ce5c1aa6ad68a94f1))
328
- - wording issues ([fcbb994](https://github.com/powerhouse-inc/document-drive/commit/fcbb994d49eb035cdb9e553b104b6c8279b7fbef))
329
-
330
- ### Features
331
-
332
- - add ts-reset lib ([760c3fb](https://github.com/powerhouse-inc/document-drive/commit/760c3fbe685775be506835a1975541539c8fb862))
333
- - add unique constraint on operation index ([b058834](https://github.com/powerhouse-inc/document-drive/commit/b058834a8b48c2f6db971427e9633a91141c1079))
334
- - added .env.example ([c781094](https://github.com/powerhouse-inc/document-drive/commit/c781094ad7f7312efeee3e94695e809c5d4c6722))
335
- - added acknowledge function to pull responder ([e72a721](https://github.com/powerhouse-inc/document-drive/commit/e72a721713bb947b0ba93be1c38797e209865e5c))
336
- - added addAction methods and addInternalListener ([9a076b3](https://github.com/powerhouse-inc/document-drive/commit/9a076b3155060825d442351a2cd36d935a17ca44))
337
- - added basic implementation of push and pull transmitter ([1ffb004](https://github.com/powerhouse-inc/document-drive/commit/1ffb00443bf442a17e545f2451e9b399edfcc0d3))
338
- - added basic push strands implementatioN ([c858b75](https://github.com/powerhouse-inc/document-drive/commit/c858b7544365429ce4535a6c849cf785a5cafcd5))
339
- - added basic transmitters ([996ff0f](https://github.com/powerhouse-inc/document-drive/commit/996ff0f0c7ea212f1ed96ebc05690d0689bf3429))
340
- - added clearStorage support ([#82](https://github.com/powerhouse-inc/document-drive/issues/82)) ([323a93f](https://github.com/powerhouse-inc/document-drive/commit/323a93f0aaf1da1bd66b3b3292e35aefd92e9c5f))
341
- - added clipboard flag to operations table ([f6ce677](https://github.com/powerhouse-inc/document-drive/commit/f6ce677b5e3d723074a40bb834f4029cd1c13b9a))
342
- - added clipboard to document ([3f8c295](https://github.com/powerhouse-inc/document-drive/commit/3f8c29573cbd08f071492b56f4b31f688af7c9db))
343
- - added debug and trace methods and logger export ([c7336de](https://github.com/powerhouse-inc/document-drive/commit/c7336de1f4b0e55a4c8d4e5efe5b063c7a4ccc88))
344
- - added document cache ([deae523](https://github.com/powerhouse-inc/document-drive/commit/deae523851b98fcd250825a4b2918b364525660f))
345
- - added drive events and improved sync error handling ([647c833](https://github.com/powerhouse-inc/document-drive/commit/647c8339b2166767c240a286d9ea12b032695417))
346
- - added duplicate folders id tests ([#143](https://github.com/powerhouse-inc/document-drive/issues/143)) ([abd3688](https://github.com/powerhouse-inc/document-drive/commit/abd3688bb284257a8f088e905e1f7cf6de1f8f5d))
347
- - added experimental release ([#155](https://github.com/powerhouse-inc/document-drive/issues/155)) ([adc52a5](https://github.com/powerhouse-inc/document-drive/commit/adc52a56655ef97de588cb03b6922ab69e72a8e9))
348
- - added exponential retry backoff to prisma transactions ([b38e72f](https://github.com/powerhouse-inc/document-drive/commit/b38e72fdfd29f4c39e15f606fccc942ec966fffe))
349
- - added getDrive by slug to memory adapter ([5515c34](https://github.com/powerhouse-inc/document-drive/commit/5515c34ecc18a6f14931a1a66cee454f14dbe03f))
350
- - added getDriveBySlug ([680cf71](https://github.com/powerhouse-inc/document-drive/commit/680cf71209853689e1414f90f58f079460be94d5))
351
- - added graphql requests for pull responder ([6578bae](https://github.com/powerhouse-inc/document-drive/commit/6578bae242a0c625531ac8b9bdec4c51727f57e6))
352
- - added init of pullResponder ([3961916](https://github.com/powerhouse-inc/document-drive/commit/3961916bbb780c0555d3d7e106ab25c80e988c7b))
353
- - added internal transmitter ([d728aed](https://github.com/powerhouse-inc/document-drive/commit/d728aed8ae692a83a0b998ccd6d7e36496e08b95))
354
- - added internal transmitter service ([6863620](https://github.com/powerhouse-inc/document-drive/commit/68636202d5bfd081ef979263fd697086529a1d10))
355
- - added listener functions ([6bc1803](https://github.com/powerhouse-inc/document-drive/commit/6bc180358826adf8a0ce6f247df37d8de245d8e7))
356
- - added namespace option for browser storage ([2fb312a](https://github.com/powerhouse-inc/document-drive/commit/2fb312a020d6593157c401814e0327d260f64718))
357
- - added prisma connection ([ef87ca7](https://github.com/powerhouse-inc/document-drive/commit/ef87ca7681c4336a68f15ecf35906cdfc9c8aa0a))
358
- - added registerListener function to PullResponderTransmitter ([814c160](https://github.com/powerhouse-inc/document-drive/commit/814c1603ef011402db30f373c3b5fbb2d3f12c58))
359
- - added retry mechanism to transaction ([e01a2cb](https://github.com/powerhouse-inc/document-drive/commit/e01a2cb6e1c64d37655255191fc4af13254201fe))
360
- - added semantic release ([f1c31a6](https://github.com/powerhouse-inc/document-drive/commit/f1c31a6bd2012ac6d51a7a3a5b94f656887e6b5a))
361
- - added sequelize adapter ([#19](https://github.com/powerhouse-inc/document-drive/issues/19)) ([71529d8](https://github.com/powerhouse-inc/document-drive/commit/71529d8d60eb6ff0390bdebb1bb660fb680c99f3))
362
- - added strandUpdate events ([1143716](https://github.com/powerhouse-inc/document-drive/commit/11437161fd1b0b0f37a7ef50833022507e4699f3))
363
- - added support for update noop operations ([#42](https://github.com/powerhouse-inc/document-drive/issues/42)) ([c59e15a](https://github.com/powerhouse-inc/document-drive/commit/c59e15a69f08f2abe654ce15c090f1212aee7606))
364
- - added update operations in prisma storage addDocumentOperations ([#71](https://github.com/powerhouse-inc/document-drive/issues/71)) ([eeb96af](https://github.com/powerhouse-inc/document-drive/commit/eeb96afbad520f90ce8c9b71bf573950dadadf4b))
365
- - added winston as default logger ([77c2451](https://github.com/powerhouse-inc/document-drive/commit/77c2451e4ceaddb11dd378a89f89c4245db51cb0))
366
- - also transmit scope state on internal transmitters ([c75a5d5](https://github.com/powerhouse-inc/document-drive/commit/c75a5d5b01ddaf166f0d86cd0afab4f888757a17))
367
- - avoid duplicating sync units on listener manager ([ad9a015](https://github.com/powerhouse-inc/document-drive/commit/ad9a015d8b50ba444362b85b1f57b9349037c325))
368
- - bug fixing ([1bb6097](https://github.com/powerhouse-inc/document-drive/commit/1bb60972588b5b95d2bb52354d8b35319d21eed5))
369
- - bump document-model dep ([7442070](https://github.com/powerhouse-inc/document-drive/commit/744207006dad191e214f0547d78d185530476560))
370
- - bump libs ([8b18624](https://github.com/powerhouse-inc/document-drive/commit/8b18624c05792d086b31a0b42b99cf42f3dc0627))
371
- - bump lint deps ([c4a68c9](https://github.com/powerhouse-inc/document-drive/commit/c4a68c9d1c8fea85d85d18eebf66a53d57438dbd))
372
- - cache updated document as soon as possible ([0b3327c](https://github.com/powerhouse-inc/document-drive/commit/0b3327cea01b508e0c07f05dee7fdcb4a6aaea35))
373
- - change unimportant rules to warn ([3958150](https://github.com/powerhouse-inc/document-drive/commit/395815033e8fe5e937342b5b2ba1d57ba64cbc8d))
374
- - check if there are conflicting operations when storing operations ([2487ab1](https://github.com/powerhouse-inc/document-drive/commit/2487ab10017ab819c560a115409829027dad9fda))
375
- - continue initializing remaining drives if one fails ([5cd9962](https://github.com/powerhouse-inc/document-drive/commit/5cd9962785e399aa5eb06f2b87a97fed72b51178))
376
- - defined types and functions ([0b57ae9](https://github.com/powerhouse-inc/document-drive/commit/0b57ae969f023f06ffc4859d1f8f514ef7a2508f))
377
- - delay sync updates after receiving strands ([e1d3a87](https://github.com/powerhouse-inc/document-drive/commit/e1d3a871a99042d397b7c7928432028251fba55d))
378
- - delete sync units before removing document ([6b54e1d](https://github.com/powerhouse-inc/document-drive/commit/6b54e1dfb7249c0c6e061e916783ac92cb5d1481))
379
- - do not consider already skipped operations when adding operations to document ([0778863](https://github.com/powerhouse-inc/document-drive/commit/077886351a1dbde484331a30778fa4daf12cf2a2))
380
- - don't send operation with index equal to fromRevision ([f279046](https://github.com/powerhouse-inc/document-drive/commit/f279046f156c3b9c35c1c7cdd950319078f09e04))
381
- - emit missing operation error ([8250681](https://github.com/powerhouse-inc/document-drive/commit/82506819148565aa6a7034b8e4a6d27ec9d3a0a3))
382
- - emit single sync status event for multiple strands ([1b9cf53](https://github.com/powerhouse-inc/document-drive/commit/1b9cf5313cca31f696c104b169d1210a3c2b829f))
383
- - emit sync events when updating listeners ([b1899bb](https://github.com/powerhouse-inc/document-drive/commit/b1899bbe6a3d555fc6ea5236c55b1417def11ec2))
384
- - filter out drive strand if filter excludes it ([a6d3cd2](https://github.com/powerhouse-inc/document-drive/commit/a6d3cd25e63c917cf0033429ab75d265e76bde32))
385
- - fix filter operations with since timestamp ([8a19d30](https://github.com/powerhouse-inc/document-drive/commit/8a19d30f892a9862be15c670d8114f4493198245))
386
- - fixed array access error ([ed1a3a9](https://github.com/powerhouse-inc/document-drive/commit/ed1a3a953a0a52d629eb8a69f83ce18b976076af))
387
- - fixed date comparison ([6d28a3b](https://github.com/powerhouse-inc/document-drive/commit/6d28a3bfd6b338deaa5ede718b7a9ebc0cccf498))
388
- - fixed state on internal transmitter strand ([5dbe930](https://github.com/powerhouse-inc/document-drive/commit/5dbe930af551375117d36f9b4d36fd613de8d9f7))
389
- - fixed unit tests ([46edd15](https://github.com/powerhouse-inc/document-drive/commit/46edd150aa4deb8814b4d1e6bd41b13e42b6ae91))
390
- - force deploy ([#126](https://github.com/powerhouse-inc/document-drive/issues/126)) ([e02d22e](https://github.com/powerhouse-inc/document-drive/commit/e02d22ee00471f3f20544cc27155108143d22512))
391
- - get drive by id or slug ([95c171e](https://github.com/powerhouse-inc/document-drive/commit/95c171e97eb7e27a65129d7fc400fae862d62fdc))
392
- - implementation of switchboard transmitter ([cfbdc85](https://github.com/powerhouse-inc/document-drive/commit/cfbdc8570dfc86b6fe949c5246b240c634917a99))
393
- - implemented operation validation for document operations ([39bedf4](https://github.com/powerhouse-inc/document-drive/commit/39bedf43d2a3b1fda51d82f26b7f92b93a7cce5b))
394
- - improve add operations insert statement ([1c238ce](https://github.com/powerhouse-inc/document-drive/commit/1c238cef779e62bf89d2341a05a3af3633b9ec59))
395
- - improved error reporting and fixed operation hash check ([c6cc70f](https://github.com/powerhouse-inc/document-drive/commit/c6cc70f627dbdd2eab6399543fd41544fb959506))
396
- - improved operation errors ([a05772d](https://github.com/powerhouse-inc/document-drive/commit/a05772d023c600dd85d50be65f1ee80b19d546ef))
397
- - init listener manager ([0edb539](https://github.com/powerhouse-inc/document-drive/commit/0edb53988f691672a3c3e0ce3179142bc09b6b58))
398
- - initial work on tests migration ([3046dc1](https://github.com/powerhouse-inc/document-drive/commit/3046dc16a0405476a0af22aaf605be6ce43bf4c5))
399
- - instantiate listeners on server initialization ([367396d](https://github.com/powerhouse-inc/document-drive/commit/367396d8205b6ba81f7c4261d516be2eebfb664e))
400
- - integrated append only conflict resolution ([#153](https://github.com/powerhouse-inc/document-drive/issues/153)) ([5ecb264](https://github.com/powerhouse-inc/document-drive/commit/5ecb264ec6a4804653ff81d213c42d5e8cfb341b))
401
- - only add listeners once ([12ca458](https://github.com/powerhouse-inc/document-drive/commit/12ca458ce9a4b5577fc45c5a8bcca5d905bd80ee))
402
- - only emit event when syncStatus changes ([1cedf61](https://github.com/powerhouse-inc/document-drive/commit/1cedf6110fead2410a61d0d8f261a57d11c48fa1))
403
- - proceed with loop only after previous request is done ([d7eec70](https://github.com/powerhouse-inc/document-drive/commit/d7eec7044233c060c56e98698360070198a540dd))
404
- - replaced winston with console ([bbb7fc5](https://github.com/powerhouse-inc/document-drive/commit/bbb7fc53fa8cb5da97c6068e95ab77d5149d87fc))
405
- - run pull loop immediately for the first time ([802a126](https://github.com/powerhouse-inc/document-drive/commit/802a126e4ec90b5b62ad3e228cee73daa06cf651))
406
- - set sync status success if no new strands ([7a9627c](https://github.com/powerhouse-inc/document-drive/commit/7a9627cd72c80ae3c56a933bcd92c3da87529e00))
407
- - skip hash generation when replaying documents ([697ea35](https://github.com/powerhouse-inc/document-drive/commit/697ea35ae79a6697c8bfd4810a8d28139bf1a01f))
408
- - stop drive sync if triggers are removed ([dcf2df2](https://github.com/powerhouse-inc/document-drive/commit/dcf2df256f43f234bfb9188c750521fb57df880f))
409
- - store and sync operation context ([b2e5d5e](https://github.com/powerhouse-inc/document-drive/commit/b2e5d5efe59ed382fe6f984c193959218cbac4e0))
410
- - sync protocol draft ([f5ef843](https://github.com/powerhouse-inc/document-drive/commit/f5ef8436f9dfa50b546c77363bc8edfb887d671c))
411
- - trigger release ([a99370f](https://github.com/powerhouse-inc/document-drive/commit/a99370fbfea65bbc20f3fc3c39f0a26087795603))
412
- - trigger release ([75d8cc7](https://github.com/powerhouse-inc/document-drive/commit/75d8cc73c7022ecb6c71945486539e3b61ad9e1d))
413
- - trigger release ([33209d5](https://github.com/powerhouse-inc/document-drive/commit/33209d59cf4f44946b524a88c9008fef40aceea9))
414
- - update config ([c0197a6](https://github.com/powerhouse-inc/document-drive/commit/c0197a6bd86cdb706883e9cd7f0cad017fa115de))
415
- - update document-model and document-model-libs ([#145](https://github.com/powerhouse-inc/document-drive/issues/145)) ([87dff17](https://github.com/powerhouse-inc/document-drive/commit/87dff17b5c8a76010e09dff2d8e6dba55fb262a5))
416
- - update document-model-libs version ([#100](https://github.com/powerhouse-inc/document-drive/issues/100)) ([0648328](https://github.com/powerhouse-inc/document-drive/commit/06483288af745f94aa9a81e526a03ae72197aa99))
417
- - update updatedOperations instead of create ([f87691d](https://github.com/powerhouse-inc/document-drive/commit/f87691dadee45b08f357f5b9df7374bbf7dd39f1))
418
- - updated document model dep ([37fa455](https://github.com/powerhouse-inc/document-drive/commit/37fa4556c44b000837bcb95673c90cf06af784c7))
419
- - updated document model dep ([c9876dc](https://github.com/powerhouse-inc/document-drive/commit/c9876dc83462d80b1c4c4213f9aab6f791f60f61))
420
- - updated document-model ([6d2eb8b](https://github.com/powerhouse-inc/document-drive/commit/6d2eb8b6eb35696b84d6dbe4586ec410ff5c61e6))
421
- - updated document-model-libs dep ([44bced0](https://github.com/powerhouse-inc/document-drive/commit/44bced07a07d6f65f105f342c8b07f98b5f1bbc4))
422
- - updated document-model-libs dep ([e73b813](https://github.com/powerhouse-inc/document-drive/commit/e73b81352899b1478512f2e9a50d61e534c6c360))
423
- - updated prisma schema with syncUnits and listeners ([224cbfe](https://github.com/powerhouse-inc/document-drive/commit/224cbfe51d97a2107ea114cc00a7a1665278f85c))
424
- - use prisma transaction ([4a02fb8](https://github.com/powerhouse-inc/document-drive/commit/4a02fb8c7d2b93253c4cd7104318772e3b199b61))
425
- - use reshuffleByTimestamp + added BasciClient + tests ([#129](https://github.com/powerhouse-inc/document-drive/issues/129)) ([8e0cfae](https://github.com/powerhouse-inc/document-drive/commit/8e0cfae5e0d2de52064689f023e4a80c170d8c84))
426
- - use serializable transactions ([267cae4](https://github.com/powerhouse-inc/document-drive/commit/267cae47ba3fec4a4863169350cbf961172caebf))
427
-
428
- # [1.0.0-alpha.54](https://github.com/powerhouse-inc/document-drive/compare/v1.0.0-alpha.53...v1.0.0-alpha.54) (2024-05-07)
429
-
430
- ### Features
431
-
432
- - added experimental release ([#155](https://github.com/powerhouse-inc/document-drive/issues/155)) ([adc52a5](https://github.com/powerhouse-inc/document-drive/commit/adc52a56655ef97de588cb03b6922ab69e72a8e9))
433
-
434
- # [1.0.0-alpha.53](https://github.com/powerhouse-inc/document-drive/compare/v1.0.0-alpha.52...v1.0.0-alpha.53) (2024-04-30)
435
-
436
- ### Features
437
-
438
- - added getDrive by slug to memory adapter ([5515c34](https://github.com/powerhouse-inc/document-drive/commit/5515c34ecc18a6f14931a1a66cee454f14dbe03f))
439
- - added getDriveBySlug ([680cf71](https://github.com/powerhouse-inc/document-drive/commit/680cf71209853689e1414f90f58f079460be94d5))
440
- - get drive by id or slug ([95c171e](https://github.com/powerhouse-inc/document-drive/commit/95c171e97eb7e27a65129d7fc400fae862d62fdc))
441
-
442
- # [1.0.0-alpha.52](https://github.com/powerhouse-inc/document-drive/compare/v1.0.0-alpha.51...v1.0.0-alpha.52) (2024-04-24)
443
-
444
- ### Features
445
-
446
- - store and sync operation context ([b2e5d5e](https://github.com/powerhouse-inc/document-drive/commit/b2e5d5efe59ed382fe6f984c193959218cbac4e0))
447
-
448
- # [1.0.0-alpha.51](https://github.com/powerhouse-inc/document-drive/compare/v1.0.0-alpha.50...v1.0.0-alpha.51) (2024-04-24)
449
-
450
- ### Features
451
-
452
- - added exponential retry backoff to prisma transactions ([b38e72f](https://github.com/powerhouse-inc/document-drive/commit/b38e72fdfd29f4c39e15f606fccc942ec966fffe))
453
-
454
- # [1.0.0-alpha.50](https://github.com/powerhouse-inc/document-drive/compare/v1.0.0-alpha.49...v1.0.0-alpha.50) (2024-04-23)
455
-
456
- ### Features
457
-
458
- - update document-model and document-model-libs ([#145](https://github.com/powerhouse-inc/document-drive/issues/145)) ([87dff17](https://github.com/powerhouse-inc/document-drive/commit/87dff17b5c8a76010e09dff2d8e6dba55fb262a5))
459
-
460
- # [1.0.0-alpha.49](https://github.com/powerhouse-inc/document-drive/compare/v1.0.0-alpha.48...v1.0.0-alpha.49) (2024-04-23)
461
-
462
- ### Features
463
-
464
- - added duplicate folders id tests ([#143](https://github.com/powerhouse-inc/document-drive/issues/143)) ([abd3688](https://github.com/powerhouse-inc/document-drive/commit/abd3688bb284257a8f088e905e1f7cf6de1f8f5d))
465
-
466
- # [1.0.0-alpha.48](https://github.com/powerhouse-inc/document-drive/compare/v1.0.0-alpha.47...v1.0.0-alpha.48) (2024-04-23)
467
-
468
- ### Features
469
-
470
- - added retry mechanism to transaction ([e01a2cb](https://github.com/powerhouse-inc/document-drive/commit/e01a2cb6e1c64d37655255191fc4af13254201fe))
471
-
472
- # [1.0.0-alpha.47](https://github.com/powerhouse-inc/document-drive/compare/v1.0.0-alpha.46...v1.0.0-alpha.47) (2024-04-23)
473
-
474
- ### Features
475
-
476
- - use serializable transactions ([267cae4](https://github.com/powerhouse-inc/document-drive/commit/267cae47ba3fec4a4863169350cbf961172caebf))
477
-
478
- # [1.0.0-alpha.46](https://github.com/powerhouse-inc/document-drive/compare/v1.0.0-alpha.45...v1.0.0-alpha.46) (2024-04-23)
479
-
480
- ### Features
481
-
482
- - do not consider already skipped operations when adding operations to document ([0778863](https://github.com/powerhouse-inc/document-drive/commit/077886351a1dbde484331a30778fa4daf12cf2a2))
483
-
484
- # [1.0.0-alpha.45](https://github.com/powerhouse-inc/document-drive/compare/v1.0.0-alpha.44...v1.0.0-alpha.45) (2024-04-22)
485
-
486
- ### Features
487
-
488
- - continue initializing remaining drives if one fails ([5cd9962](https://github.com/powerhouse-inc/document-drive/commit/5cd9962785e399aa5eb06f2b87a97fed72b51178))
489
-
490
- # [1.0.0-alpha.44](https://github.com/powerhouse-inc/document-drive/compare/v1.0.0-alpha.43...v1.0.0-alpha.44) (2024-04-22)
491
-
492
- ### Features
493
-
494
- - cache updated document as soon as possible ([0b3327c](https://github.com/powerhouse-inc/document-drive/commit/0b3327cea01b508e0c07f05dee7fdcb4a6aaea35))
495
-
496
- # [1.0.0-alpha.43](https://github.com/powerhouse-inc/document-drive/compare/v1.0.0-alpha.42...v1.0.0-alpha.43) (2024-04-19)
497
-
498
- ### Features
499
-
500
- - fixed array access error ([ed1a3a9](https://github.com/powerhouse-inc/document-drive/commit/ed1a3a953a0a52d629eb8a69f83ce18b976076af))
501
-
502
- # [1.0.0-alpha.42](https://github.com/powerhouse-inc/document-drive/compare/v1.0.0-alpha.41...v1.0.0-alpha.42) (2024-04-19)
503
-
504
- ### Features
505
-
506
- - trigger release ([a99370f](https://github.com/powerhouse-inc/document-drive/commit/a99370fbfea65bbc20f3fc3c39f0a26087795603))
507
-
508
- # [1.0.0-alpha.41](https://github.com/powerhouse-inc/document-drive/compare/v1.0.0-alpha.40...v1.0.0-alpha.41) (2024-04-18)
509
-
510
- ### Features
511
-
512
- - updated document-model ([6d2eb8b](https://github.com/powerhouse-inc/document-drive/commit/6d2eb8b6eb35696b84d6dbe4586ec410ff5c61e6))
513
-
514
- # [1.0.0-alpha.40](https://github.com/powerhouse-inc/document-drive/compare/v1.0.0-alpha.39...v1.0.0-alpha.40) (2024-04-18)
515
-
516
- ### Features
517
-
518
- - skip hash generation when replaying documents ([697ea35](https://github.com/powerhouse-inc/document-drive/commit/697ea35ae79a6697c8bfd4810a8d28139bf1a01f))
519
-
520
- # [1.0.0-alpha.39](https://github.com/powerhouse-inc/document-drive/compare/v1.0.0-alpha.38...v1.0.0-alpha.39) (2024-04-18)
521
-
522
- ### Features
523
-
524
- - trigger release ([75d8cc7](https://github.com/powerhouse-inc/document-drive/commit/75d8cc73c7022ecb6c71945486539e3b61ad9e1d))
525
-
526
- # [1.0.0-alpha.38](https://github.com/powerhouse-inc/document-drive/compare/v1.0.0-alpha.37...v1.0.0-alpha.38) (2024-04-17)
527
-
528
- ### Bug Fixes
529
-
530
- - types ([37ebeca](https://github.com/powerhouse-inc/document-drive/commit/37ebeca0ff18a8f60c4604ace6ba17bad730f4cb))
531
-
532
- ### Features
533
-
534
- - added document cache ([deae523](https://github.com/powerhouse-inc/document-drive/commit/deae523851b98fcd250825a4b2918b364525660f))
535
-
536
- # [1.0.0-alpha.37](https://github.com/powerhouse-inc/document-drive/compare/v1.0.0-alpha.36...v1.0.0-alpha.37) (2024-04-17)
537
-
538
- ### Features
539
-
540
- - fixed unit tests ([46edd15](https://github.com/powerhouse-inc/document-drive/commit/46edd150aa4deb8814b4d1e6bd41b13e42b6ae91))
541
- - initial work on tests migration ([3046dc1](https://github.com/powerhouse-inc/document-drive/commit/3046dc16a0405476a0af22aaf605be6ce43bf4c5))
542
-
543
- # [1.0.0-alpha.36](https://github.com/powerhouse-inc/document-drive/compare/v1.0.0-alpha.35...v1.0.0-alpha.36) (2024-04-16)
544
-
545
- ### Features
546
-
547
- - added namespace option for browser storage ([2fb312a](https://github.com/powerhouse-inc/document-drive/commit/2fb312a020d6593157c401814e0327d260f64718))
548
-
549
- # [1.0.0-alpha.35](https://github.com/powerhouse-inc/document-drive/compare/v1.0.0-alpha.34...v1.0.0-alpha.35) (2024-04-16)
550
-
551
- ### Features
552
-
553
- - use reshuffleByTimestamp + added BasciClient + tests ([#129](https://github.com/powerhouse-inc/document-drive/issues/129)) ([8e0cfae](https://github.com/powerhouse-inc/document-drive/commit/8e0cfae5e0d2de52064689f023e4a80c170d8c84))
554
-
555
- # [1.0.0-alpha.34](https://github.com/powerhouse-inc/document-drive/compare/v1.0.0-alpha.33...v1.0.0-alpha.34) (2024-04-12)
556
-
557
- ### Features
558
-
559
- - force deploy ([#126](https://github.com/powerhouse-inc/document-drive/issues/126)) ([e02d22e](https://github.com/powerhouse-inc/document-drive/commit/e02d22ee00471f3f20544cc27155108143d22512))
560
-
561
- # [1.0.0-alpha.33](https://github.com/powerhouse-inc/document-drive/compare/v1.0.0-alpha.32...v1.0.0-alpha.33) (2024-04-11)
562
-
563
- ### Features
564
-
565
- - added debug and trace methods and logger export ([c7336de](https://github.com/powerhouse-inc/document-drive/commit/c7336de1f4b0e55a4c8d4e5efe5b063c7a4ccc88))
566
-
567
- # [1.0.0-alpha.32](https://github.com/powerhouse-inc/document-drive/compare/v1.0.0-alpha.31...v1.0.0-alpha.32) (2024-04-11)
568
-
569
- ### Features
570
-
571
- - replaced winston with console ([bbb7fc5](https://github.com/powerhouse-inc/document-drive/commit/bbb7fc53fa8cb5da97c6068e95ab77d5149d87fc))
572
-
573
- # [1.0.0-alpha.31](https://github.com/powerhouse-inc/document-drive/compare/v1.0.0-alpha.30...v1.0.0-alpha.31) (2024-04-10)
574
-
575
- ### Bug Fixes
576
-
577
- - remove sentry ([75faf6a](https://github.com/powerhouse-inc/document-drive/commit/75faf6acff391bb2f5fac016190a481019a225ee))
578
-
579
- # [1.0.0-alpha.30](https://github.com/powerhouse-inc/document-drive/compare/v1.0.0-alpha.29...v1.0.0-alpha.30) (2024-04-10)
580
-
581
- ### Bug Fixes
582
-
583
- - delete drive handling ([6547274](https://github.com/powerhouse-inc/document-drive/commit/6547274d4ebe02e737aa429699af39fbabe2184b))
584
-
585
- # [1.0.0-alpha.29](https://github.com/powerhouse-inc/document-drive/compare/v1.0.0-alpha.28...v1.0.0-alpha.29) (2024-04-10)
586
-
587
- ### Features
588
-
589
- - added winston as default logger ([77c2451](https://github.com/powerhouse-inc/document-drive/commit/77c2451e4ceaddb11dd378a89f89c4245db51cb0))
590
-
591
- # [1.0.0-alpha.28](https://github.com/powerhouse-inc/document-drive/compare/v1.0.0-alpha.27...v1.0.0-alpha.28) (2024-04-05)
592
-
593
- ### Features
594
-
595
- - avoid duplicating sync units on listener manager ([ad9a015](https://github.com/powerhouse-inc/document-drive/commit/ad9a015d8b50ba444362b85b1f57b9349037c325))
596
- - delay sync updates after receiving strands ([e1d3a87](https://github.com/powerhouse-inc/document-drive/commit/e1d3a871a99042d397b7c7928432028251fba55d))
597
-
598
- # [1.0.0-alpha.27](https://github.com/powerhouse-inc/document-drive/compare/v1.0.0-alpha.26...v1.0.0-alpha.27) (2024-04-03)
599
-
600
- ### Features
601
-
602
- - updated document-model-libs dep ([44bced0](https://github.com/powerhouse-inc/document-drive/commit/44bced07a07d6f65f105f342c8b07f98b5f1bbc4))
603
- - updated document-model-libs dep ([e73b813](https://github.com/powerhouse-inc/document-drive/commit/e73b81352899b1478512f2e9a50d61e534c6c360))
604
-
605
- # [1.0.0-alpha.26](https://github.com/powerhouse-inc/document-drive/compare/v1.0.0-alpha.25...v1.0.0-alpha.26) (2024-04-03)
606
-
607
- ### Features
608
-
609
- - only add listeners once ([12ca458](https://github.com/powerhouse-inc/document-drive/commit/12ca458ce9a4b5577fc45c5a8bcca5d905bd80ee))
610
-
611
- # [1.0.0-alpha.25](https://github.com/powerhouse-inc/document-drive/compare/v1.0.0-alpha.24...v1.0.0-alpha.25) (2024-04-02)
612
-
613
- ### Features
614
-
615
- - update updatedOperations instead of create ([f87691d](https://github.com/powerhouse-inc/document-drive/commit/f87691dadee45b08f357f5b9df7374bbf7dd39f1))
616
- - use prisma transaction ([4a02fb8](https://github.com/powerhouse-inc/document-drive/commit/4a02fb8c7d2b93253c4cd7104318772e3b199b61))
617
-
618
- # [1.0.0-alpha.24](https://github.com/powerhouse-inc/document-drive/compare/v1.0.0-alpha.23...v1.0.0-alpha.24) (2024-04-01)
619
-
620
- ### Features
621
-
622
- - add unique constraint on operation index ([b058834](https://github.com/powerhouse-inc/document-drive/commit/b058834a8b48c2f6db971427e9633a91141c1079))
623
- - check if there are conflicting operations when storing operations ([2487ab1](https://github.com/powerhouse-inc/document-drive/commit/2487ab10017ab819c560a115409829027dad9fda))
624
-
625
- # [1.0.0-alpha.23](https://github.com/powerhouse-inc/document-drive/compare/v1.0.0-alpha.22...v1.0.0-alpha.23) (2024-03-29)
626
-
627
- ### Bug Fixes
628
-
629
- - generate drive Id if empty string ([9c5044c](https://github.com/powerhouse-inc/document-drive/commit/9c5044cb21b9f311b999ab60612e8e61991d0dad))
630
-
631
- # [1.0.0-alpha.22](https://github.com/powerhouse-inc/document-drive/compare/v1.0.0-alpha.21...v1.0.0-alpha.22) (2024-03-29)
632
-
633
- ### Features
634
-
635
- - emit missing operation error ([8250681](https://github.com/powerhouse-inc/document-drive/commit/82506819148565aa6a7034b8e4a6d27ec9d3a0a3))
636
-
637
- # [1.0.0-alpha.21](https://github.com/powerhouse-inc/document-drive/compare/v1.0.0-alpha.20...v1.0.0-alpha.21) (2024-03-29)
638
-
639
- ### Features
640
-
641
- - update document-model-libs version ([#100](https://github.com/powerhouse-inc/document-drive/issues/100)) ([0648328](https://github.com/powerhouse-inc/document-drive/commit/06483288af745f94aa9a81e526a03ae72197aa99))
642
-
643
- # [1.0.0-alpha.20](https://github.com/powerhouse-inc/document-drive/compare/v1.0.0-alpha.19...v1.0.0-alpha.20) (2024-03-28)
644
-
645
- ### Features
646
-
647
- - updated document model dep ([37fa455](https://github.com/powerhouse-inc/document-drive/commit/37fa4556c44b000837bcb95673c90cf06af784c7))
648
-
649
- # [1.0.0-alpha.19](https://github.com/powerhouse-inc/document-drive/compare/v1.0.0-alpha.18...v1.0.0-alpha.19) (2024-03-28)
650
-
651
- ### Features
652
-
653
- - updated document model dep ([c9876dc](https://github.com/powerhouse-inc/document-drive/commit/c9876dc83462d80b1c4c4213f9aab6f791f60f61))
654
-
655
- # [1.0.0-alpha.18](https://github.com/powerhouse-inc/document-drive/compare/v1.0.0-alpha.17...v1.0.0-alpha.18) (2024-03-27)
656
-
657
- ### Features
658
-
659
- - only emit event when syncStatus changes ([1cedf61](https://github.com/powerhouse-inc/document-drive/commit/1cedf6110fead2410a61d0d8f261a57d11c48fa1))
660
-
661
- # [1.0.0-alpha.17](https://github.com/powerhouse-inc/document-drive/compare/v1.0.0-alpha.16...v1.0.0-alpha.17) (2024-03-06)
662
-
663
- ### Features
664
-
665
- - added clearStorage support ([#82](https://github.com/powerhouse-inc/document-drive/issues/82)) ([323a93f](https://github.com/powerhouse-inc/document-drive/commit/323a93f0aaf1da1bd66b3b3292e35aefd92e9c5f))
666
-
667
- # [1.0.0-alpha.16](https://github.com/powerhouse-inc/document-drive/compare/v1.0.0-alpha.15...v1.0.0-alpha.16) (2024-03-04)
668
-
669
- ### Features
670
-
671
- - fixed state on internal transmitter strand ([5dbe930](https://github.com/powerhouse-inc/document-drive/commit/5dbe930af551375117d36f9b4d36fd613de8d9f7))
672
-
673
- # [1.0.0-alpha.15](https://github.com/powerhouse-inc/document-drive/compare/v1.0.0-alpha.14...v1.0.0-alpha.15) (2024-03-04)
674
-
675
- ### Features
676
-
677
- - instantiate listeners on server initialization ([367396d](https://github.com/powerhouse-inc/document-drive/commit/367396d8205b6ba81f7c4261d516be2eebfb664e))
678
-
679
- # [1.0.0-alpha.14](https://github.com/powerhouse-inc/document-drive/compare/v1.0.0-alpha.13...v1.0.0-alpha.14) (2024-02-29)
680
-
681
- ### Features
682
-
683
- - added addAction methods and addInternalListener ([9a076b3](https://github.com/powerhouse-inc/document-drive/commit/9a076b3155060825d442351a2cd36d935a17ca44))
684
- - also transmit scope state on internal transmitters ([c75a5d5](https://github.com/powerhouse-inc/document-drive/commit/c75a5d5b01ddaf166f0d86cd0afab4f888757a17))
685
-
686
- # [1.0.0-alpha.13](https://github.com/powerhouse-inc/document-drive/compare/v1.0.0-alpha.12...v1.0.0-alpha.13) (2024-02-28)
687
-
688
- ### Bug Fixes
689
-
690
- - wording issues ([fcbb994](https://github.com/powerhouse-inc/document-drive/commit/fcbb994d49eb035cdb9e553b104b6c8279b7fbef))
691
-
692
- ### Features
693
-
694
- - added internal transmitter ([d728aed](https://github.com/powerhouse-inc/document-drive/commit/d728aed8ae692a83a0b998ccd6d7e36496e08b95))
695
-
696
- # [1.0.0-alpha.12](https://github.com/powerhouse-inc/document-drive/compare/v1.0.0-alpha.11...v1.0.0-alpha.12) (2024-02-26)
697
-
698
- ### Features
699
-
700
- - stop drive sync if triggers are removed ([dcf2df2](https://github.com/powerhouse-inc/document-drive/commit/dcf2df256f43f234bfb9188c750521fb57df880f))
701
-
702
- # [1.0.0-alpha.11](https://github.com/powerhouse-inc/document-drive/compare/v1.0.0-alpha.10...v1.0.0-alpha.11) (2024-02-22)
703
-
704
- ### Features
705
-
706
- - filter out drive strand if filter excludes it ([a6d3cd2](https://github.com/powerhouse-inc/document-drive/commit/a6d3cd25e63c917cf0033429ab75d265e76bde32))
707
-
708
- # [1.0.0-alpha.10](https://github.com/powerhouse-inc/document-drive/compare/v1.0.0-alpha.9...v1.0.0-alpha.10) (2024-02-21)
709
-
710
- ### Features
711
-
712
- - improve add operations insert statement ([1c238ce](https://github.com/powerhouse-inc/document-drive/commit/1c238cef779e62bf89d2341a05a3af3633b9ec59))
713
-
714
- # [1.0.0-alpha.9](https://github.com/powerhouse-inc/document-drive/compare/v1.0.0-alpha.8...v1.0.0-alpha.9) (2024-02-21)
715
-
716
- ### Features
717
-
718
- - added update operations in prisma storage addDocumentOperations ([#71](https://github.com/powerhouse-inc/document-drive/issues/71)) ([eeb96af](https://github.com/powerhouse-inc/document-drive/commit/eeb96afbad520f90ce8c9b71bf573950dadadf4b))
719
-
720
- # [1.0.0-alpha.8](https://github.com/powerhouse-inc/document-drive/compare/v1.0.0-alpha.7...v1.0.0-alpha.8) (2024-02-21)
721
-
722
- ### Features
723
-
724
- - set sync status success if no new strands ([7a9627c](https://github.com/powerhouse-inc/document-drive/commit/7a9627cd72c80ae3c56a933bcd92c3da87529e00))
725
-
726
- # [1.0.0-alpha.7](https://github.com/powerhouse-inc/document-drive/compare/v1.0.0-alpha.6...v1.0.0-alpha.7) (2024-02-20)
727
-
728
- ### Features
729
-
730
- - fixed date comparison ([6d28a3b](https://github.com/powerhouse-inc/document-drive/commit/6d28a3bfd6b338deaa5ede718b7a9ebc0cccf498))
731
-
732
- # [1.0.0-alpha.6](https://github.com/powerhouse-inc/document-drive/compare/v1.0.0-alpha.5...v1.0.0-alpha.6) (2024-02-20)
733
-
734
- ### Bug Fixes
735
-
736
- - reverse since change ([3e09362](https://github.com/powerhouse-inc/document-drive/commit/3e093623ca2f315e7faebeee3b3f3fc42bad083b))
737
-
738
- # [1.0.0-alpha.5](https://github.com/powerhouse-inc/document-drive/compare/v1.0.0-alpha.4...v1.0.0-alpha.5) (2024-02-20)
739
-
740
- ### Features
741
-
742
- - trigger release ([33209d5](https://github.com/powerhouse-inc/document-drive/commit/33209d59cf4f44946b524a88c9008fef40aceea9))
743
-
744
- # [1.0.0-alpha.4](https://github.com/powerhouse-inc/document-drive/compare/v1.0.0-alpha.3...v1.0.0-alpha.4) (2024-02-20)
745
-
746
- ### Features
747
-
748
- - fix filter operations with since timestamp ([8a19d30](https://github.com/powerhouse-inc/document-drive/commit/8a19d30f892a9862be15c670d8114f4493198245))
749
-
750
- # [1.0.0-alpha.3](https://github.com/powerhouse-inc/document-drive/compare/v1.0.0-alpha.2...v1.0.0-alpha.3) (2024-02-20)
751
-
752
- ### Features
753
-
754
- - bump document-model dep ([7442070](https://github.com/powerhouse-inc/document-drive/commit/744207006dad191e214f0547d78d185530476560))
755
-
756
- # [1.0.0-alpha.2](https://github.com/powerhouse-inc/document-drive/compare/v1.0.0-alpha.1...v1.0.0-alpha.2) (2024-02-20)
757
-
758
- ### Features
759
-
760
- - emit single sync status event for multiple strands ([1b9cf53](https://github.com/powerhouse-inc/document-drive/commit/1b9cf5313cca31f696c104b169d1210a3c2b829f))
761
- - improved error reporting and fixed operation hash check ([c6cc70f](https://github.com/powerhouse-inc/document-drive/commit/c6cc70f627dbdd2eab6399543fd41544fb959506))
762
- - proceed with loop only after previous request is done ([d7eec70](https://github.com/powerhouse-inc/document-drive/commit/d7eec7044233c060c56e98698360070198a540dd))
763
-
764
- # 1.0.0-alpha.1 (2024-02-16)
765
-
766
- ### Bug Fixes
767
-
768
- - acknowledge porper document ([c7abd01](https://github.com/powerhouse-inc/document-drive/commit/c7abd0138346b2482546a7a731b22be3e61c8ccd))
769
- - added name field to getDocument ([2cba21a](https://github.com/powerhouse-inc/document-drive/commit/2cba21aa6c4efcde50d8524f46dd22804b96f7d0))
770
- - apply auto lint ([803cf91](https://github.com/powerhouse-inc/document-drive/commit/803cf91b3c427dd9c6b1ef9a76c92a4cfa480fbd))
771
- - cast result of json parse ([83ee12b](https://github.com/powerhouse-inc/document-drive/commit/83ee12be711c74047eb7a4a86e235b7ab16e0a69))
772
- - duplicate driv entry ([c89c27e](https://github.com/powerhouse-inc/document-drive/commit/c89c27e892a2b1d345cf5b28b00722f3cef88228))
773
- - handle signals in sequence ([9660b08](https://github.com/powerhouse-inc/document-drive/commit/9660b089e554e570ff6312645b799e1af9e09596))
774
- - missing operations in return values ([6d6cf56](https://github.com/powerhouse-inc/document-drive/commit/6d6cf56426d75b41aad1df0e8735e2a3dcc34221))
775
- - operation data filter ([0e91f21](https://github.com/powerhouse-inc/document-drive/commit/0e91f2110a5942404b864199af8ebabd00112dea))
776
- - prisma schema ([bac17dd](https://github.com/powerhouse-inc/document-drive/commit/bac17ddd305788252529706c0c2e8b2207c64838))
777
- - remove react settings ([6e11865](https://github.com/powerhouse-inc/document-drive/commit/6e1186575de9a457add141fc916d6ea78fd066d5))
778
- - semantic release ([94077da](https://github.com/powerhouse-inc/document-drive/commit/94077da1f383ee2bf1530af9a4f2749cbc8d4e89))
779
- - transmitter not found ([0fac28b](https://github.com/powerhouse-inc/document-drive/commit/0fac28b6f3de37b13899075c88fd37a9ce355013))
780
- - update revision field if new operations are added ([45eb259](https://github.com/powerhouse-inc/document-drive/commit/45eb259b479655dde575835ce5c1aa6ad68a94f1))
781
-
782
- ### Features
783
-
784
- - add ts-reset lib ([760c3fb](https://github.com/powerhouse-inc/document-drive/commit/760c3fbe685775be506835a1975541539c8fb862))
785
- - added .env.example ([c781094](https://github.com/powerhouse-inc/document-drive/commit/c781094ad7f7312efeee3e94695e809c5d4c6722))
786
- - added acknowledge function to pull responder ([e72a721](https://github.com/powerhouse-inc/document-drive/commit/e72a721713bb947b0ba93be1c38797e209865e5c))
787
- - added basic implementation of push and pull transmitter ([1ffb004](https://github.com/powerhouse-inc/document-drive/commit/1ffb00443bf442a17e545f2451e9b399edfcc0d3))
788
- - added basic push strands implementatioN ([c858b75](https://github.com/powerhouse-inc/document-drive/commit/c858b7544365429ce4535a6c849cf785a5cafcd5))
789
- - added basic transmitters ([996ff0f](https://github.com/powerhouse-inc/document-drive/commit/996ff0f0c7ea212f1ed96ebc05690d0689bf3429))
790
- - added clipboard flag to operations table ([f6ce677](https://github.com/powerhouse-inc/document-drive/commit/f6ce677b5e3d723074a40bb834f4029cd1c13b9a))
791
- - added clipboard to document ([3f8c295](https://github.com/powerhouse-inc/document-drive/commit/3f8c29573cbd08f071492b56f4b31f688af7c9db))
792
- - added drive events and improved sync error handling ([647c833](https://github.com/powerhouse-inc/document-drive/commit/647c8339b2166767c240a286d9ea12b032695417))
793
- - added graphql requests for pull responder ([6578bae](https://github.com/powerhouse-inc/document-drive/commit/6578bae242a0c625531ac8b9bdec4c51727f57e6))
794
- - added init of pullResponder ([3961916](https://github.com/powerhouse-inc/document-drive/commit/3961916bbb780c0555d3d7e106ab25c80e988c7b))
795
- - added internal transmitter service ([6863620](https://github.com/powerhouse-inc/document-drive/commit/68636202d5bfd081ef979263fd697086529a1d10))
796
- - added listener functions ([6bc1803](https://github.com/powerhouse-inc/document-drive/commit/6bc180358826adf8a0ce6f247df37d8de245d8e7))
797
- - added prisma connection ([ef87ca7](https://github.com/powerhouse-inc/document-drive/commit/ef87ca7681c4336a68f15ecf35906cdfc9c8aa0a))
798
- - added registerListener function to PullResponderTransmitter ([814c160](https://github.com/powerhouse-inc/document-drive/commit/814c1603ef011402db30f373c3b5fbb2d3f12c58))
799
- - added semantic release ([f1c31a6](https://github.com/powerhouse-inc/document-drive/commit/f1c31a6bd2012ac6d51a7a3a5b94f656887e6b5a))
800
- - added sequelize adapter ([#19](https://github.com/powerhouse-inc/document-drive/issues/19)) ([71529d8](https://github.com/powerhouse-inc/document-drive/commit/71529d8d60eb6ff0390bdebb1bb660fb680c99f3))
801
- - added strandUpdate events ([1143716](https://github.com/powerhouse-inc/document-drive/commit/11437161fd1b0b0f37a7ef50833022507e4699f3))
802
- - added support for update noop operations ([#42](https://github.com/powerhouse-inc/document-drive/issues/42)) ([c59e15a](https://github.com/powerhouse-inc/document-drive/commit/c59e15a69f08f2abe654ce15c090f1212aee7606))
803
- - bug fixing ([1bb6097](https://github.com/powerhouse-inc/document-drive/commit/1bb60972588b5b95d2bb52354d8b35319d21eed5))
804
- - bump libs ([8b18624](https://github.com/powerhouse-inc/document-drive/commit/8b18624c05792d086b31a0b42b99cf42f3dc0627))
805
- - bump lint deps ([c4a68c9](https://github.com/powerhouse-inc/document-drive/commit/c4a68c9d1c8fea85d85d18eebf66a53d57438dbd))
806
- - change unimportant rules to warn ([3958150](https://github.com/powerhouse-inc/document-drive/commit/395815033e8fe5e937342b5b2ba1d57ba64cbc8d))
807
- - defined types and functions ([0b57ae9](https://github.com/powerhouse-inc/document-drive/commit/0b57ae969f023f06ffc4859d1f8f514ef7a2508f))
808
- - delete sync units before removing document ([6b54e1d](https://github.com/powerhouse-inc/document-drive/commit/6b54e1dfb7249c0c6e061e916783ac92cb5d1481))
809
- - don't send operation with index equal to fromRevision ([f279046](https://github.com/powerhouse-inc/document-drive/commit/f279046f156c3b9c35c1c7cdd950319078f09e04))
810
- - emit sync events when updating listeners ([b1899bb](https://github.com/powerhouse-inc/document-drive/commit/b1899bbe6a3d555fc6ea5236c55b1417def11ec2))
811
- - implementation of switchboard transmitter ([cfbdc85](https://github.com/powerhouse-inc/document-drive/commit/cfbdc8570dfc86b6fe949c5246b240c634917a99))
812
- - implemented operation validation for document operations ([39bedf4](https://github.com/powerhouse-inc/document-drive/commit/39bedf43d2a3b1fda51d82f26b7f92b93a7cce5b))
813
- - improved operation errors ([a05772d](https://github.com/powerhouse-inc/document-drive/commit/a05772d023c600dd85d50be65f1ee80b19d546ef))
814
- - init listener manager ([0edb539](https://github.com/powerhouse-inc/document-drive/commit/0edb53988f691672a3c3e0ce3179142bc09b6b58))
815
- - run pull loop immediately for the first time ([802a126](https://github.com/powerhouse-inc/document-drive/commit/802a126e4ec90b5b62ad3e228cee73daa06cf651))
816
- - sync protocol draft ([f5ef843](https://github.com/powerhouse-inc/document-drive/commit/f5ef8436f9dfa50b546c77363bc8edfb887d671c))
817
- - update config ([c0197a6](https://github.com/powerhouse-inc/document-drive/commit/c0197a6bd86cdb706883e9cd7f0cad017fa115de))
818
- - updated prisma schema with syncUnits and listeners ([224cbfe](https://github.com/powerhouse-inc/document-drive/commit/224cbfe51d97a2107ea114cc00a7a1665278f85c))