@xh/hoist 67.0.0 → 68.0.0-SNAPSHOT.1725575419404
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
CHANGED
|
@@ -242,14 +242,17 @@ export class ExceptionHandler {
|
|
|
242
242
|
ret = this.cloneAndTrim(ret);
|
|
243
243
|
|
|
244
244
|
// 3) Additional ad-hoc cleanups
|
|
245
|
+
// Remove finger pointing at Hoist
|
|
246
|
+
delete ret.isHoistException;
|
|
247
|
+
|
|
245
248
|
// Remove noisy grails exception wrapper info
|
|
246
|
-
// Remove verbose loadSpec from fetchOptions
|
|
247
249
|
const {serverDetails} = ret;
|
|
248
250
|
if (serverDetails?.className === 'GrailsCompressingFilter') {
|
|
249
251
|
delete serverDetails.className;
|
|
250
252
|
delete serverDetails.lineNumber;
|
|
251
253
|
}
|
|
252
254
|
|
|
255
|
+
// Remove verbose loadSpec from fetchOptions
|
|
253
256
|
const {fetchOptions} = ret;
|
|
254
257
|
if (fetchOptions?.loadSpec) {
|
|
255
258
|
fetchOptions.loadType = fetchOptions.loadSpec.typeDisplay;
|
package/package.json
CHANGED