edge-functions 1.6.4 → 1.6.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.
- package/.github/workflows/release.yml +1 -2
- package/.releaserc +52 -25
- package/CHANGELOG.md +25 -0
- package/package.json +1 -1
package/.releaserc
CHANGED
|
@@ -7,29 +7,56 @@
|
|
|
7
7
|
"channel": "stage"
|
|
8
8
|
}
|
|
9
9
|
],
|
|
10
|
-
"
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
"options": {
|
|
24
|
-
"preset": {
|
|
25
|
-
"name": "conventionalchangelog",
|
|
26
|
-
"issuePrefixes": ["ISSUE-"],
|
|
27
|
-
"issueUrlFormat": "https://github.com/aziontech/vulcan/issues/{id}"
|
|
10
|
+
"plugins": [
|
|
11
|
+
[
|
|
12
|
+
"@semantic-release/commit-analyzer",
|
|
13
|
+
{
|
|
14
|
+
"preset": "conventionalcommits",
|
|
15
|
+
"parserOpts": {
|
|
16
|
+
"headerPattern": "^(\\[ISSUE-.*])?\\s?(\\w+):\\s(.*)$",
|
|
17
|
+
"headerCorrespondence": [
|
|
18
|
+
"scope",
|
|
19
|
+
"type",
|
|
20
|
+
"subject"
|
|
21
|
+
]
|
|
22
|
+
}
|
|
28
23
|
}
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
24
|
+
],
|
|
25
|
+
[
|
|
26
|
+
"@semantic-release/release-notes-generator",
|
|
27
|
+
{
|
|
28
|
+
"preset": "conventionalcommits",
|
|
29
|
+
"parserOpts": {
|
|
30
|
+
"headerPattern": "^(\\[ISSUE-.*])?\\s?(\\w+):\\s(.*)$",
|
|
31
|
+
"headerCorrespondence": [
|
|
32
|
+
"scope",
|
|
33
|
+
"type",
|
|
34
|
+
"subject"
|
|
35
|
+
]
|
|
36
|
+
},
|
|
37
|
+
"options": {
|
|
38
|
+
"preset": {
|
|
39
|
+
"name": "conventionalchangelog",
|
|
40
|
+
"issuePrefixes": [
|
|
41
|
+
"ISSUE-"
|
|
42
|
+
],
|
|
43
|
+
"issueUrlFormat": "https://github.com/aziontech/vulcan/issues/{id}"
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
],
|
|
48
|
+
"@semantic-release/npm",
|
|
49
|
+
"@semantic-release/changelog",
|
|
50
|
+
[
|
|
51
|
+
"@semantic-release/git",
|
|
52
|
+
{
|
|
53
|
+
"assets": [
|
|
54
|
+
"package.json",
|
|
55
|
+
"CHANGELOG.md"
|
|
56
|
+
],
|
|
57
|
+
"message": "chore(release): ${nextRelease.version} \n\n${nextRelease.notes}"
|
|
58
|
+
}
|
|
59
|
+
],
|
|
60
|
+
"@semantic-release/github"
|
|
61
|
+
]
|
|
62
|
+
}
|
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
### [1.6.5](https://github.com/aziontech/vulcan/compare/v1.6.4...v1.6.5) (2023-09-14)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* Add npm semantic release plugin in plugins list ([703a8ea](https://github.com/aziontech/vulcan/commit/703a8ea0f04f8d1de4489a8dd9f3523566334a4a))
|
|
7
|
+
* Add write permissions in release workflow ([39c1cae](https://github.com/aziontech/vulcan/commit/39c1cae20cc5371a1a7ba49d4754474ee61735d0))
|
|
8
|
+
* permissions in release workflow ([#126](https://github.com/aziontech/vulcan/issues/126)) ([37ebee6](https://github.com/aziontech/vulcan/commit/37ebee608564de0d8903f9b09788c3aaffcd2315))
|
|
9
|
+
* Remove skip ci option in git plugin ([d954fdc](https://github.com/aziontech/vulcan/commit/d954fdc76944c954662e3828054f5b06c854e865))
|
|
10
|
+
* semantic release plugins config ([f7c30a2](https://github.com/aziontech/vulcan/commit/f7c30a26dd7eb0051bf9306be66cbcb78253286a))
|
|
11
|
+
* semantic release plugins config ([#124](https://github.com/aziontech/vulcan/issues/124)) ([89289e0](https://github.com/aziontech/vulcan/commit/89289e066b01880f566d396a2214c528e6db93a3))
|
|
12
|
+
* set correct options in plugins section ([3a0c8f2](https://github.com/aziontech/vulcan/commit/3a0c8f2cf4c70fc70da0c19e6c5172a4bb8aef0a))
|
|
13
|
+
|
|
14
|
+
### [1.6.4-stage.2](https://github.com/aziontech/vulcan/compare/v1.6.4-stage.1...v1.6.4-stage.2) (2023-09-14)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Bug Fixes
|
|
18
|
+
|
|
19
|
+
* Add npm semantic release plugin in plugins list ([703a8ea](https://github.com/aziontech/vulcan/commit/703a8ea0f04f8d1de4489a8dd9f3523566334a4a))
|
|
20
|
+
* Add write permissions in release workflow ([39c1cae](https://github.com/aziontech/vulcan/commit/39c1cae20cc5371a1a7ba49d4754474ee61735d0))
|
|
21
|
+
* permissions in release workflow ([#126](https://github.com/aziontech/vulcan/issues/126)) ([37ebee6](https://github.com/aziontech/vulcan/commit/37ebee608564de0d8903f9b09788c3aaffcd2315))
|
|
22
|
+
* Remove skip ci option in git plugin ([d954fdc](https://github.com/aziontech/vulcan/commit/d954fdc76944c954662e3828054f5b06c854e865))
|
|
23
|
+
* semantic release plugins config ([f7c30a2](https://github.com/aziontech/vulcan/commit/f7c30a26dd7eb0051bf9306be66cbcb78253286a))
|
|
24
|
+
* semantic release plugins config ([#124](https://github.com/aziontech/vulcan/issues/124)) ([89289e0](https://github.com/aziontech/vulcan/commit/89289e066b01880f566d396a2214c528e6db93a3))
|
|
25
|
+
* set correct options in plugins section ([3a0c8f2](https://github.com/aziontech/vulcan/commit/3a0c8f2cf4c70fc70da0c19e6c5172a4bb8aef0a))
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "edge-functions",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.6.
|
|
4
|
+
"version": "1.6.5",
|
|
5
5
|
"description": "Tool to launch and build JavaScript/Frameworks. This tool automates polyfills for Edge Computing and assists in creating Workers, notably for the Azion platform.",
|
|
6
6
|
"main": "lib/main.js",
|
|
7
7
|
"bin": {
|