Skip to content

Commit 425b616

Browse files
committed
Bump version 2.0.9
1 parent 6dfbdad commit 425b616

28 files changed

+104
-57
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,15 @@
7676

7777
---
7878

79+
## Version 2.0.9
80+
- Restore icons directory
81+
- Add new browser: Aloha Browser, Avira Secure Browser, Lighthouse, Luakit, Norton Private Browser
82+
- Add new OS: Vega OS
83+
- Improve OS detection: watchOS
84+
- `extensions` submodule:
85+
- Add new crawler: atlassian-bot, Cloudflare-AutoRAG, Google-NotebookLM, SemrushBot-SWA
86+
- Add new fetcher: FlipboardProxy
87+
7988
## Version 2.0.8
8089

8190
- Resolve syntax error related to import renaming in ESM build

dist/ua-parser.min.js

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

dist/ua-parser.min.mjs

Lines changed: 3 additions & 3 deletions
Large diffs are not rendered by default.

dist/ua-parser.pack.js

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

dist/ua-parser.pack.mjs

Lines changed: 3 additions & 3 deletions
Large diffs are not rendered by default.

package-lock.json

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

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"title": "UAParser.js",
33
"name": "ua-parser-js",
4-
"version": "2.0.8",
4+
"version": "2.0.9",
55
"author": "Faisal Salman <f@faisalman.com> (http://faisalman.com)",
66
"description": "Detect Browser, Engine, OS, CPU, and Device type/model from User-Agent & Client Hints data. Supports browser & node.js environment",
77
"keywords": [

src/bot-detection/bot-detection.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Type definitions for bot-detection submodule of UAParser.js v2.0.8
1+
// Type definitions for bot-detection submodule of UAParser.js v2.0.9
22
// Project: https://github.com/faisalman/ua-parser-js
33
// Definitions by: Faisal Salman <https://github.com/faisalman>
44

src/bot-detection/bot-detection.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//////////////////////////////////////////////////
2-
/* bot-detection submodule of UAParser.js v2.0.8
2+
/* bot-detection submodule of UAParser.js v2.0.9
33
https://github.com/faisalman/ua-parser-js
44
Author: Faisal Salman <f@faisalman.com>
55
AGPLv3 License */

src/bot-detection/bot-detection.mjs

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// Source: /src/bot-detection/bot-detection.js
44

55
//////////////////////////////////////////////////
6-
/* bot-detection submodule of UAParser.js v2.0.8
6+
/* bot-detection submodule of UAParser.js v2.0.9
77
https://github.com/faisalman/ua-parser-js
88
Author: Faisal Salman <f@faisalman.com>
99
AGPLv3 License */
@@ -83,13 +83,19 @@ const AICrawlers = new BotList(Crawlers, 'name', [
8383
Crawler.APPLE_BOT,
8484
Crawler.APPLE_BOT_EXTENDED,
8585

86+
// Atlassian
87+
Crawler.ATLASSIAN_BOT,
88+
8689
// Brave
8790
Crawler.BRAVE_BOT,
8891

8992
// ByteDance
9093
Crawler.BYTEDANCE_BYTESPIDER,
9194
Crawler.BYTEDANCE_TIKTOKSPIDER,
9295

96+
// Cloudflare
97+
Crawler.CLOUDFLARE_AUTORAG,
98+
9399
// Cohere
94100
Crawler.COHERE_TRAINING_DATA_CRAWLER,
95101

@@ -110,6 +116,7 @@ const AICrawlers = new BotList(Crawlers, 'name', [
110116

111117
// Google
112118
Crawler.GOOGLE_EXTENDED,
119+
Crawler.GOOGLE_NOTEBOOKLM,
113120
Crawler.GOOGLE_OTHER,
114121
Crawler.GOOGLE_OTHER_IMAGE,
115122
Crawler.GOOGLE_OTHER_VIDEO,
@@ -153,6 +160,7 @@ const AICrawlers = new BotList(Crawlers, 'name', [
153160

154161
// Semrush
155162
Crawler.SEMRUSH_BOT_CONTENTSHAKE,
163+
Crawler.SEMRUSH_BOT_SWA,
156164

157165
// Timpi
158166
Crawler.TIMPI_BOT,

0 commit comments

Comments
 (0)