Skip to content

Commit 3bb9e2e

Browse files
authored
Merge pull request #159 from ndaidong/3.1.4
v3.1.4
2 parents 7a0e721 + ef7bf6c commit 3bb9e2e

File tree

8 files changed

+23
-23
lines changed

8 files changed

+23
-23
lines changed

Diff for: .github/workflows/ci-test.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212

1313
strategy:
1414
matrix:
15-
node_version: [14.x, 15.x, 16.x, 17.x, 18.x]
15+
node_version: [14.x, 15.x, 16.x, 17.x, 18.x, 19.x]
1616

1717
steps:
1818
- uses: actions/checkout@v2
@@ -27,7 +27,6 @@ jobs:
2727
FACEBOOK_APP_ID: ${{ secrets.FACEBOOK_APP_ID }}
2828
FACEBOOK_CLIENT_TOKEN: ${{ secrets.FACEBOOK_CLIENT_TOKEN }}
2929
run: |
30-
npm i -g standard
3130
npm install
3231
npm run lint
3332
npm run build --if-present

Diff for: SECURITY.md

+7-12
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,16 @@
22

33
## Supported Versions
44

5-
The following versions are being supported with security updates.
5+
Due to resource limitations, only the latest stable minor release is getting bugfixes (including security ones).
66

7-
| Version | Supported |
8-
| ------- | ------------------ |
9-
| 1.4.x | :white_check_mark: |
10-
| 1.3.x | :white_check_mark: |
11-
| 1.2.x | :white_check_mark: |
12-
| 1.1.x | :white_check_mark: |
13-
| 1.0.x | :white_check_mark: |
14-
| 0.x.x | :x: |
7+
So e.g. if the latest stable version is 3.1.4, then 3.1.x line will still get security fixes but older versions (like 3.0.x) won't get any fixes.
8+
9+
Description above is a general rule and may be altered on case by case basis.
1510

1611
## Reporting a Vulnerability
1712

18-
If you discover a security issue, please bring it to their attention right away!
13+
You can report low severity vulnerabilities as GitHub issues.
1914

20-
Please **DO NOT** file a public issue, instead send your report privately to `security-report@pwshub.com`.
15+
More severe vulnerabilities should be reported to the my email [email protected] or Twitter [@ndaidong](https://twitter.com/ndaidong).
2116

22-
Security reports are greatly appreciated and we will publicly thank you for it, although we keep your name confidential if you request it.
17+
---

Diff for: dist/cjs/oembed-parser.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// [email protected].3, by @ndaidong - built with esbuild at 2022-10-26T05:04:53.355Z - published under MIT license
1+
// [email protected].4, by @ndaidong - built with esbuild at 2022-11-13T05:18:59.638Z - published under MIT license
22
var __create = Object.create;
33
var __defProp = Object.defineProperty;
44
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;

Diff for: dist/cjs/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"name": "oembed-parser",
3-
"version": "3.1.3",
3+
"version": "3.1.4",
44
"main": "./oembed-parser.js"
55
}

Diff for: dist/oembed-parser.esm.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// [email protected].3, by @ndaidong - built with esbuild at 2022-10-26T05:04:53.355Z - published under MIT license
1+
// [email protected].4, by @ndaidong - built with esbuild at 2022-11-13T05:18:59.638Z - published under MIT license
22

33
// src/utils/linker.js
44
var isValid = (url = "") => {

Diff for: package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "3.1.3",
2+
"version": "3.1.4",
33
"name": "oembed-parser",
44
"description": "Get oEmbed data from given URL.",
55
"homepage": "https://www.npmjs.com/package/oembed-parser",
@@ -39,8 +39,8 @@
3939
"cross-fetch": "^3.1.5"
4040
},
4141
"devDependencies": {
42-
"esbuild": "^0.15.12",
43-
"jest": "^29.2.2",
42+
"esbuild": "^0.15.13",
43+
"jest": "^29.3.1",
4444
"nock": "^13.2.9",
4545
"standard": "^17.0.0"
4646
},

Diff for: src/utils/providers.latest.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// provider data, synchronized at 2022-10-26T05:04:37.983Z
1+
// provider data, synchronized at 2022-11-13T05:17:54.675Z
22

33
/* eslint-disable */
44

Diff for: src/utils/providers.prev.js

+8-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// provider data, synchronized at 2022-10-13T02:14:43.201Z
1+
// provider data, synchronized at 2022-10-26T05:04:37.983Z
22

33
/* eslint-disable */
44

@@ -974,7 +974,7 @@ export const providers = [
974974
"s": [
975975
"pod\\.univ-lille\\.fr/video/*"
976976
],
977-
"e": "pod.univ-lille.fr/oembed"
977+
"e": "pod.univ-lille.fr/video/oembed"
978978
},
979979
{
980980
"s": [
@@ -1281,6 +1281,12 @@ export const providers = [
12811281
],
12821282
"e": "api.picturelfy.com/service/oembed/"
12831283
},
1284+
{
1285+
"s": [
1286+
"*\\.builder\\.pikasso\\.xyz/embed/*"
1287+
],
1288+
"e": "builder.pikasso.xyz/api/oembed"
1289+
},
12841290
{
12851291
"s": [],
12861292
"e": "beta.pingvp.com.kpnis.nl/p/oembed.php"

0 commit comments

Comments
 (0)