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
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
---

## [2.0.1] - 2025-12-23
---
### Changed

- Replaced `axios` with native Node Fetch

## [2.0.0] - 2025-12-19
---
### Breaking Changes
Expand All @@ -21,6 +27,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Updated test workflows to run on Node 24
- Updated documentation to v2
- OIDC Audience defaults to `https://github.com/{org-name}` from `api://AzureADTokenExchange`
- Replaced `axios` with native `fetch` API to fix Node.js 24 `url.parse()` deprecation warning (DEP0169) and reduce bundle size
Copy link

Copilot AI Dec 23, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This changelog entry is duplicated between version 2.0.0 and version 2.0.1. The change should only appear in version 2.0.1 where it was actually implemented. Remove this line from the 2.0.0 section.

Suggested change
- Replaced `axios` with native `fetch` API to fix Node.js 24 `url.parse()` deprecation warning (DEP0169) and reduce bundle size

Copilot uses AI. Check for mistakes.

## [1.0.0] - 2024
---
Expand Down
17 changes: 8 additions & 9 deletions dist/37.index.js → dist/101.index.js
Original file line number Diff line number Diff line change
@@ -1,17 +1,16 @@
"use strict";
exports.id = 37;
exports.ids = [37];
exports.id = 101;
exports.ids = [101];
exports.modules = {

/***/ 4037:
/***/ 9101:
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {

__webpack_require__.r(__webpack_exports__);
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
/* harmony export */ "toFormData": () => (/* binding */ toFormData)
/* harmony export */ toFormData: () => (/* binding */ toFormData)
/* harmony export */ });
/* harmony import */ var fetch_blob_from_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(2777);
/* harmony import */ var formdata_polyfill_esm_min_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(8010);
/* harmony import */ var fetch_blob_from_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(9802);
/* harmony import */ var formdata_polyfill_esm_min_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(3018);



Expand Down Expand Up @@ -367,7 +366,7 @@ async function toFormData(Body, ct) {
let contentType;
let filename;
const entryChunks = [];
const formData = new formdata_polyfill_esm_min_js__WEBPACK_IMPORTED_MODULE_1__/* .FormData */ .Ct();
const formData = new formdata_polyfill_esm_min_js__WEBPACK_IMPORTED_MODULE_1__/* .FormData */ .fS();

const onPartData = ui8a => {
entryValue += decoder.decode(ui8a, {stream: true});
Expand All @@ -378,7 +377,7 @@ async function toFormData(Body, ct) {
};

const appendFileToFormData = () => {
const file = new fetch_blob_from_js__WEBPACK_IMPORTED_MODULE_0__/* .File */ .$B(entryChunks, filename, {type: contentType});
const file = new fetch_blob_from_js__WEBPACK_IMPORTED_MODULE_0__/* .File */ .ZH(entryChunks, filename, {type: contentType});
formData.append(entryName, file);
};

Expand Down
Loading
Loading