Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@

* [#924](https://github.com/mozilla/glean.js/pull/924): Only HTTPS server endpoints outside of testing mode.
* In testing mode HTTP may be used. No other protocols are allowed.
* [#951](https://github.com/mozilla/glean.js/pull/951): Expose Uploader, UploadResult and UploadResultStatus.
* These are necessary for creating custom uploaders. Especially from TypeScript.

# v0.24.0 (2021-11-04)

Expand Down
1 change: 1 addition & 0 deletions glean/src/index/node.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,5 @@ import platform from "../platform/node/index.js";
import base from "./base.js";

export { ErrorType } from "../core/error/error_type.js";
export { default as Uploader, UploadResult, UploadResultStatus } from "../core/upload/uploader.js";
export default base(platform);
1 change: 1 addition & 0 deletions glean/src/index/web.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,5 @@ import platform from "../platform/browser/web/index.js";
import base from "./base.js";

export { ErrorType } from "../core/error/error_type.js";
export { default as Uploader, UploadResult, UploadResultStatus } from "../core/upload/uploader.js";
export default base(platform);
1 change: 1 addition & 0 deletions glean/src/index/webext.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,5 @@ import platform from "../platform/browser/webext/index.js";
import base from "./base.js";

export { ErrorType } from "../core/error/error_type.js";
export { default as Uploader, UploadResult, UploadResultStatus } from "../core/upload/uploader.js";
export default base(platform);