musora-content-services 2.151.0 → 2.151.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.
- package/CHANGELOG.md +7 -0
- package/package.json +1 -1
- package/src/services/sync/run-scope.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [2.151.1](https://github.com/railroadmedia/musora-content-services/compare/v2.151.0...v2.151.1) (2026-04-08)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* broken abort rejection after merge conflict fail ([#909](https://github.com/railroadmedia/musora-content-services/issues/909)) ([e75ebea](https://github.com/railroadmedia/musora-content-services/commit/e75ebeace9f5738d9accf6c546cd343ac7c98855))
|
|
11
|
+
|
|
5
12
|
## [2.151.0](https://github.com/railroadmedia/musora-content-services/compare/v2.149.0...v2.151.0) (2026-04-08)
|
|
6
13
|
|
|
7
14
|
|
package/package.json
CHANGED
|
@@ -19,7 +19,7 @@ export default class SyncRunScope {
|
|
|
19
19
|
// does NOT attempt to pass abort signal to the function
|
|
20
20
|
abortable<T>(fn: () => Promise<T>): Promise<T> {
|
|
21
21
|
if (this.signal.aborted) {
|
|
22
|
-
reject(new SyncAbortError('Operation aborted', { reason: this.signal.reason }))
|
|
22
|
+
return Promise.reject(new SyncAbortError('Operation aborted', { reason: this.signal.reason }))
|
|
23
23
|
}
|
|
24
24
|
return fn()
|
|
25
25
|
}
|