惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

T
Tenable Blog
博客园_首页
Vercel News
Vercel News
WordPress大学
WordPress大学
美团技术团队
G
Google Developers Blog
大猫的无限游戏
大猫的无限游戏
小众软件
小众软件
Y
Y Combinator Blog
博客园 - 【当耐特】
量子位
酷 壳 – CoolShell
酷 壳 – CoolShell
The Cloudflare Blog
T
The Blog of Author Tim Ferriss
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Google DeepMind News
Google DeepMind News
云风的 BLOG
云风的 BLOG
腾讯CDC
M
MIT News - Artificial intelligence
爱范儿
爱范儿
Recent Announcements
Recent Announcements
雷峰网
雷峰网
Last Week in AI
Last Week in AI
宝玉的分享
宝玉的分享
The Register - Security
The Register - Security
Jina AI
Jina AI
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
Hugging Face - Blog
Hugging Face - Blog
P
Privacy & Cybersecurity Law Blog
Recorded Future
Recorded Future
Help Net Security
Help Net Security
N
News and Events Feed by Topic
博客园 - Franky
P
Proofpoint News Feed
L
LINUX DO - 热门话题
S
SegmentFault 最新的问题
The GitHub Blog
The GitHub Blog
K
KPMG report finds enterprise disconnect between AI and its ROI | CIO
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
月光博客
月光博客
D
Docker
Google DeepMind News
Google DeepMind News
有赞技术团队
有赞技术团队
IT之家
IT之家
Security Latest
Security Latest
L
LangChain Blog
V
V2EX
阮一峰的网络日志
阮一峰的网络日志
J
Java Code Geeks

Recent Commits to xhr:main

Overwrite the charset parameter for URLSearchParams objects · whatwg/xhr@d375b28 Editorial: modernize prose · whatwg/xhr@fe6c5fe Meta: update repository files · whatwg/xhr@0822635 Reset request body when open() is called · whatwg/xhr@38e3f59 Review Draft Publication: August 2025 · whatwg/xhr@84b66b3 Meta: link Korean translation · whatwg/xhr@a170690 Meta: link Simplified Chinese translation · whatwg/xhr@f284317 Allow doubles for ProgressEvent's loaded and total · whatwg/xhr@4a6401c Editorial: fix Bikeshed linking errors · whatwg/xhr@150a3b8 Meta: update link for fragment serialization algorithm · whatwg/xhr@f2f0397 Meta: adjust dfn-for of events on XMLHttpRequestEventTarget · whatwg/xhr@fd438ec Review Draft Publication: February 2024 · whatwg/xhr@fdd619d Meta: update repository files · whatwg/xhr@813e308 Meta: update repository files · whatwg/xhr@a2c40a0 Editorial: use HTML's encoding-parse a URL · whatwg/xhr@a5597b9 Review Draft Publication: February 2023 · whatwg/xhr@1cccb46 Add optional submitter argument to FormData constructor · whatwg/xhr@1c2d7f2 Align with Fetch's forbidden request-header refactor · whatwg/xhr@494431a Meta: my employer changed · whatwg/xhr@545cdd5
Meta: update repository files · whatwg/xhr@112c3bb
annevk · 2022-10-17 · via Recent Commits to xhr:main
Original file line numberDiff line numberDiff line change

@@ -11,13 +11,13 @@ jobs:

1111

name: Build

1212

runs-on: ubuntu-20.04

1313

steps:

14-

- uses: actions/checkout@v2

14+

- uses: actions/checkout@v3

1515

with:

1616

fetch-depth: 2

1717

# Note: `python` will also be this version, which various scripts depend on.

18-

- uses: actions/setup-python@v2

18+

- uses: actions/setup-python@v3

1919

with:

20-

python-version: 3.8

20+

python-version: "3.10"

2121

# Note: `make deploy` will do a deploy dry run on PRs.

2222

- run: make deploy

2323

env:

Original file line numberDiff line numberDiff line change

@@ -1,4 +1,3 @@

11

/xhr.spec.whatwg.org/

22

/deploy.sh

33

/xhr.html

4-

/review.sh

Original file line numberDiff line numberDiff line change

@@ -1,5 +1,5 @@

11

SHELL=/bin/bash -o pipefail

2-

.PHONY: local remote deploy review

2+

.PHONY: local remote deploy

33
44

remote: xhr.bs

55

@ (HTTP_STATUS=$$(curl https://api.csswg.org/bikeshed/ \

@@ -21,7 +21,3 @@ local: xhr.bs

2121

deploy: xhr.bs

2222

curl --remote-name --fail https://resources.whatwg.org/build/deploy.sh

2323

bash ./deploy.sh

24-
25-

review: xhr.bs

26-

curl --remote-name --fail https://resources.whatwg.org/build/review.sh

27-

bash ./review.sh

Original file line numberDiff line numberDiff line change

@@ -8,8 +8,9 @@ Thank you for contributing to the XMLHttpRequest Standard! Please describe the c

88

- [ ] [Tests](https://github.com/web-platform-tests/wpt) are written and can be reviewed and commented upon at:

99

*

1010

- [ ] [Implementation bugs](https://github.com/whatwg/meta/blob/main/MAINTAINERS.md#handling-pull-requests) are filed:

11-

* Chrome: …

12-

* Firefox: …

13-

* Safari: …

11+

* Chromium: …

12+

* Gecko: …

13+

* WebKit: …

14+

- [ ] [MDN issue](https://github.com/whatwg/meta/blob/main/MAINTAINERS.md#handling-pull-requests) is filed: …

1415
1516

(See [WHATWG Working Mode: Changes](https://whatwg.org/working-mode#changes) for more details.)