Skip to content

Commit 11fd991

Browse files
chore(deps): update oxlint monorepo (#635)
This PR contains the following updates: | Package | Change | [Age](https://docs.renovatebot.com/merge-confidence/) | [Confidence](https://docs.renovatebot.com/merge-confidence/) | |---|---|---|---| | [oxfmt](https://oxc.rs) ([source](https://redirect.github.com/oxc-project/oxc/tree/HEAD/npm/oxfmt)) | [`^0.21.0` → `^0.23.0`](https://renovatebot.com/diffs/npm/oxfmt/0.21.0/0.23.0) | ![age](https://developer.mend.io/api/mc/badges/age/npm/oxfmt/0.23.0?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/oxfmt/0.21.0/0.23.0?slim=true) | | [oxlint](https://oxc.rs) ([source](https://redirect.github.com/oxc-project/oxc/tree/HEAD/npm/oxlint)) | [`1.36.0` → `1.38.0`](https://renovatebot.com/diffs/npm/oxlint/1.36.0/1.38.0) | ![age](https://developer.mend.io/api/mc/badges/age/npm/oxlint/1.38.0?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/oxlint/1.36.0/1.38.0?slim=true) | --- ### Release Notes <details> <summary>oxc-project/oxc (oxfmt)</summary> ### [`v0.23.0`](https://redirect.github.com/oxc-project/oxc/compare/oxfmt_v0.22.0...oxfmt_v0.23.0) [Compare Source](https://redirect.github.com/oxc-project/oxc/compare/oxfmt_v0.22.0...oxfmt_v0.23.0) ### [`v0.22.0`](https://redirect.github.com/oxc-project/oxc/blob/HEAD/npm/oxfmt/CHANGELOG.md#0220---2026-01-05) [Compare Source](https://redirect.github.com/oxc-project/oxc/compare/oxfmt_v0.21.0...oxfmt_v0.22.0) ##### 💥 BREAKING CHANGES - [`f7da875`](https://redirect.github.com/oxc-project/oxc/commit/f7da875) oxlint: \[**BREAKING**] Remove oxc\_language\_server binary ([#&#8203;17457](https://redirect.github.com/oxc-project/oxc/issues/17457)) (Boshen) ##### 🚀 Features - [`8fd4ea9`](https://redirect.github.com/oxc-project/oxc/commit/8fd4ea9) oxfmt: `options.embeddedLanguageFormatting` is now `"auto"` by default ([#&#8203;17649](https://redirect.github.com/oxc-project/oxc/issues/17649)) (leaysgur) </details> <details> <summary>oxc-project/oxc (oxlint)</summary> ### [`v1.38.0`](https://redirect.github.com/oxc-project/oxc/compare/oxlint_v1.37.0...oxlint_v1.38.0) [Compare Source](https://redirect.github.com/oxc-project/oxc/compare/oxlint_v1.37.0...oxlint_v1.38.0) ### [`v1.37.0`](https://redirect.github.com/oxc-project/oxc/blob/HEAD/npm/oxlint/CHANGELOG.md#1370---2026-01-05) [Compare Source](https://redirect.github.com/oxc-project/oxc/compare/oxlint_v1.36.0...oxlint_v1.37.0) ##### 💥 BREAKING CHANGES - [`f7da875`](https://redirect.github.com/oxc-project/oxc/commit/f7da875) oxlint: \[**BREAKING**] Remove oxc\_language\_server binary ([#&#8203;17457](https://redirect.github.com/oxc-project/oxc/issues/17457)) (Boshen) ##### 📚 Documentation - [`7e5fc90`](https://redirect.github.com/oxc-project/oxc/commit/7e5fc90) linter: Update list of plugins that are reserved. ([#&#8203;17516](https://redirect.github.com/oxc-project/oxc/issues/17516)) (connorshea) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://redirect.github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/node-modules/urllib). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi42OS4xIiwidXBkYXRlZEluVmVyIjoiNDIuNjkuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6W119--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: MK <[email protected]>
1 parent 4c2ebef commit 11fd991

File tree

3 files changed

+87
-89
lines changed

3 files changed

+87
-89
lines changed

README.md

Lines changed: 13 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -89,8 +89,8 @@ When making a request:
8989
await request('https://example.com', {
9090
method: 'GET',
9191
data: {
92-
'a': 'hello',
93-
'b': 'world',
92+
a: 'hello',
93+
b: 'world',
9494
},
9595
});
9696
```
@@ -142,12 +142,12 @@ This example can use `options.data` with `application/json` content type:
142142
await request('https://example.com', {
143143
method: 'POST',
144144
headers: {
145-
'content-type': 'application/json'
145+
'content-type': 'application/json',
146146
},
147147
data: {
148148
a: 'hello',
149149
b: 'world',
150-
}
150+
},
151151
});
152152
```
153153

@@ -170,11 +170,7 @@ Upload multi files with a `hello` field.
170170
```js
171171
await request('https://example.com/upload', {
172172
method: 'POST',
173-
files: [
174-
__filename,
175-
fs.createReadStream(__filename),
176-
Buffer.from('mock file content'),
177-
],
173+
files: [__filename, fs.createReadStream(__filename), Buffer.from('mock file content')],
178174
data: {
179175
hello: 'hello urllib with multi files',
180176
},
@@ -241,12 +237,14 @@ setGlobalDispatcher(mockAgent);
241237

242238
const mockPool = mockAgent.get('http://localhost:7001');
243239

244-
mockPool.intercept({
245-
path: '/foo',
246-
method: 'POST',
247-
}).reply(400, {
248-
message: 'mock 400 bad request',
249-
});
240+
mockPool
241+
.intercept({
242+
path: '/foo',
243+
method: 'POST',
244+
})
245+
.reply(400, {
246+
message: 'mock 400 bad request',
247+
});
250248

251249
const response = await request('http://localhost:7001/foo', {
252250
method: 'POST',

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@
101101
"husky": "^9.1.7",
102102
"iconv-lite": "^0.6.3",
103103
"lint-staged": "^16.2.7",
104-
"oxfmt": "^0.21.0",
104+
"oxfmt": "^0.23.0",
105105
"oxlint": "^1.35.0",
106106
"oxlint-tsgolint": "^0.10.0",
107107
"proxy": "^1.0.2",

pnpm-lock.yaml

Lines changed: 73 additions & 73 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)