File tree Expand file tree Collapse file tree 4 files changed +5
-0
lines changed Expand file tree Collapse file tree 4 files changed +5
-0
lines changed Original file line number Diff line number Diff line change 44
55* [ #924 ] ( https://github.com/mozilla/glean.js/pull/924 ) : Only HTTPS server endpoints outside of testing mode.
66 * In testing mode HTTP may be used. No other protocols are allowed.
7+ * [ #951 ] ( https://github.com/mozilla/glean.js/pull/951 ) : Expose Uploader, UploadResult and UploadResultStatus.
8+ * These are necessary for creating custom uploaders. Especially from TypeScript.
79
810# v0.24.0 (2021-11-04)
911
Original file line number Diff line number Diff line change @@ -6,4 +6,5 @@ import platform from "../platform/node/index.js";
66import base from "./base.js" ;
77
88export { ErrorType } from "../core/error/error_type.js" ;
9+ export { default as Uploader , UploadResult , UploadResultStatus } from "../core/upload/uploader.js" ;
910export default base ( platform ) ;
Original file line number Diff line number Diff line change @@ -6,4 +6,5 @@ import platform from "../platform/browser/web/index.js";
66import base from "./base.js" ;
77
88export { ErrorType } from "../core/error/error_type.js" ;
9+ export { default as Uploader , UploadResult , UploadResultStatus } from "../core/upload/uploader.js" ;
910export default base ( platform ) ;
Original file line number Diff line number Diff line change @@ -6,4 +6,5 @@ import platform from "../platform/browser/webext/index.js";
66import base from "./base.js" ;
77
88export { ErrorType } from "../core/error/error_type.js" ;
9+ export { default as Uploader , UploadResult , UploadResultStatus } from "../core/upload/uploader.js" ;
910export default base ( platform ) ;
You can’t perform that action at this time.
0 commit comments