crawler-user-agents 1.0.94 → 1.0.96

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -32,7 +32,7 @@ console.log(crawlers);
32
32
  Each `pattern` is a regular expression. It should work out-of-the-box wih your favorite regex library:
33
33
 
34
34
  * JavaScript: `if (RegExp(entry.pattern).test(req.headers['user-agent']) { ... }`
35
- * PHP: add a slash before and after the pattern: `ìf (preg_match('/'.$entry['pattern'].'/', $_SERVER['HTTP_USER_AGENT'])): ...`
35
+ * PHP: add a slash before and after the pattern: `if (preg_match('/'.$entry['pattern'].'/', $_SERVER['HTTP_USER_AGENT'])): ...`
36
36
  * Python: `if re.search(entry['pattern'], ua): ...`
37
37
 
38
38
  ## Contributing
@@ -4917,6 +4917,14 @@
4917
4917
  "IonCrawl (https://www.ionos.de/terms-gtc/faq-crawler-en/)"
4918
4918
  ]
4919
4919
  },
4920
+ {
4921
+ "pattern": "Uptime-Kuma",
4922
+ "addition_date": "2022/10/17",
4923
+ "url": "https://uptime.kuma.pet/",
4924
+ "instances": [
4925
+ "Uptime-Kuma/1.18.0"
4926
+ ]
4927
+ },
4920
4928
  {
4921
4929
  "pattern": "SeekportBot",
4922
4930
  "addition_date": "2022/10/17",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "crawler-user-agents",
3
- "version": "1.0.94",
3
+ "version": "1.0.96",
4
4
  "main": "crawler-user-agents.json",
5
5
  "typings": "./index.d.ts",
6
6
  "author": "Martin Monperrus <martin.monperrus@gnieh.org>",