Skip to content

Commit dd40de3

Browse files
authored
Merge branch 'main' into bun
2 parents 92089af + 099c7e7 commit dd40de3

File tree

4 files changed

+149
-94
lines changed

4 files changed

+149
-94
lines changed

CHANGELOG.md

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,50 @@
11
# mdn-bcd-collector Changelog
22

3+
## v10.13.5
4+
5+
Released July 18, 2025
6+
7+
### Test Changes
8+
9+
#### Added
10+
11+
- api.DigitalCredential.toJSON
12+
- api.WebTransportWriter.commit
13+
- css.properties.flow-from.none
14+
- css.properties.flow-into.none
15+
- css.properties.flow-into.element
16+
- css.properties.flow-into.content
17+
- css.properties.flow-into.specified_flow
18+
- css.properties.interest-delay
19+
- css.properties.interest-delay-end
20+
- css.properties.interest-delay-start
21+
- css.selectors.heading
22+
- css.selectors.unchecked
23+
24+
#### Removed
25+
26+
- api.CookieStore.getAll.domain_return_property
27+
- api.CookieStore.getAll.expires_return_property
28+
- api.CookieStore.getAll.name_return_property
29+
- api.CookieStore.getAll.partitioned_return_property
30+
- api.CookieStore.getAll.path_return_property
31+
- api.CookieStore.getAll.sameSite_return_property
32+
- api.CookieStore.getAll.secure_return_property
33+
- api.CookieStore.getAll.value_return_property
34+
- api.SpeechRecognitionPhraseList
35+
- css.selectors.target-within
36+
37+
#### Changed
38+
39+
- api.WebSocket
40+
41+
### Commits
42+
43+
- Bun releases new features in patch releases ([#2574](https://github.com/openwebdocs/mdn-bcd-collector/pull/2574))
44+
- Use a dedicated web socket test URL ([#2534](https://github.com/openwebdocs/mdn-bcd-collector/pull/2534))
45+
- Remove now-redundant tests for CookieStore getAll() method ([#2523](https://github.com/openwebdocs/mdn-bcd-collector/pull/2523))
46+
- Run Selenium tests on newer macOS versions ([#2522](https://github.com/openwebdocs/mdn-bcd-collector/pull/2522))
47+
348
## v10.13.4
449

550
Released June 30, 2025

lib/ua-parser.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,10 @@ const parseUA = (userAgent: string, browsers: Browsers): ParsedUserAgent => {
118118
data.version = getMajorMinorVersion(data.fullVersion);
119119
}
120120

121+
if (data.browser.id == "bun") {
122+
data.version = data.fullVersion;
123+
}
124+
121125
if (!(data.browser.id in browsers)) {
122126
return data;
123127
}

0 commit comments

Comments
 (0)