x-twitter-scraper 0.4.4 → 0.4.5
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.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/SECURITY.md +12 -18
- data/lib/x_twitter_scraper/internal/util.rb +1 -1
- data/lib/x_twitter_scraper/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 96a110a16a759489aa7803fe46b1f93e8e4a2fa1b98c5aa30e56e56adb2cb53f
|
|
4
|
+
data.tar.gz: e73def41689f49e3adb3abcb4ef37e16c9bfc6de4627982496bdde73604484a0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: dc1952fa0e535871074858d27da39385649d9cb207af6c81ea5e2913e32d5d30e8148f9368bef3cf7ac90dc8dcc9da86ea8a99c5a962206e4c9ac472790ffc9f
|
|
7
|
+
data.tar.gz: ef72e6f46a8498788f4d90b2fa77eb640fbe477335f8cab300b9d62117dd060437a8f240d83b91eede2af39c238b767997f32c6db135c3792629a3012f64d406
|
data/README.md
CHANGED
data/SECURITY.md
CHANGED
|
@@ -1,27 +1,21 @@
|
|
|
1
1
|
# Security Policy
|
|
2
2
|
|
|
3
|
-
##
|
|
3
|
+
## Supported Versions
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
Security fixes target the latest published release.
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
## Reporting A Vulnerability
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
Report vulnerabilities privately through
|
|
10
|
+
[support@xquik.com](mailto:support@xquik.com).
|
|
10
11
|
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
disclosure practices by allowing us a reasonable amount of time to investigate and address the issue
|
|
14
|
-
before making any information public.
|
|
12
|
+
Do not open public issues for secrets, credential handling defects, private
|
|
13
|
+
data exposure, or package supply-chain concerns.
|
|
15
14
|
|
|
16
|
-
|
|
15
|
+
We aim to acknowledge reports within 3 business days. We will coordinate a
|
|
16
|
+
disclosure timeline after confirming the issue.
|
|
17
17
|
|
|
18
|
-
|
|
19
|
-
or products provided by X Twitter Scraper, please follow the respective company's security reporting guidelines.
|
|
18
|
+
## Scope
|
|
20
19
|
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
Please contact support@xquik.com for any questions or concerns regarding the security of our services.
|
|
24
|
-
|
|
25
|
-
---
|
|
26
|
-
|
|
27
|
-
Thank you for helping us keep the SDKs and systems they interact with secure.
|
|
20
|
+
Security-sensitive areas include API key handling, request construction,
|
|
21
|
+
response parsing, dependencies, generated code, and release metadata.
|
|
@@ -501,7 +501,7 @@ module XTwitterScraper
|
|
|
501
501
|
# @type [Regexp]
|
|
502
502
|
JSON_CONTENT = %r{^application/(?:[a-zA-Z0-9.-]+\+)?json(?!l)}
|
|
503
503
|
# @type [Regexp]
|
|
504
|
-
JSONL_CONTENT = %r{
|
|
504
|
+
JSONL_CONTENT = %r{\Aapplication/(?:x-(?:n|l)djson|(?:x-)?jsonl)}
|
|
505
505
|
|
|
506
506
|
class << self
|
|
507
507
|
# @api private
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: x-twitter-scraper
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.4.
|
|
4
|
+
version: 0.4.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Xquik
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-07-
|
|
11
|
+
date: 2026-07-21 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: base64
|