create-unisphere-project 2.10.0 → 3.0.0
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/dist/CHANGELOG.md +25 -0
- package/dist/_templates/unisphere-project/.github/workflows/cicd.yml +10 -5
- package/dist/_templates/unisphere-project/package-lock.json +1601 -1428
- package/dist/_templates/unisphere-project/package.json +14 -4
- package/dist/package.json +1 -1
- package/dist/src/index.js +1 -26
- package/dist/src/lib/create-unisphere-repo-command.d.ts.map +1 -1
- package/dist/src/lib/create-unisphere-repo-command.js +7 -4
- package/package.json +1 -1
package/dist/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,30 @@
|
|
|
1
1
|
# create-unisphere-project
|
|
2
2
|
|
|
3
|
+
## 3.0.0
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- sync templates with @unisphere/nx@4.3.3 migrations
|
|
8
|
+
- add Security Audit CI step to cicd.yml
|
|
9
|
+
- add audit allowlist to package.json
|
|
10
|
+
- remove ts-jest from devDependencies
|
|
11
|
+
- update documentation .gitignore (simplify entries)
|
|
12
|
+
- fix trailing whitespace in cicd.yml template
|
|
13
|
+
- pin @unisphere/nx to 4.3.3
|
|
14
|
+
- pin @unisphere/cli to 4.1.2
|
|
15
|
+
|
|
16
|
+
## 2.11.0
|
|
17
|
+
|
|
18
|
+
### Minor Changes
|
|
19
|
+
|
|
20
|
+
- release
|
|
21
|
+
|
|
22
|
+
## 2.10.1
|
|
23
|
+
|
|
24
|
+
### Patch Changes
|
|
25
|
+
|
|
26
|
+
- improved behavior
|
|
27
|
+
|
|
3
28
|
## 2.10.0
|
|
4
29
|
|
|
5
30
|
### Minor Changes
|
|
@@ -20,7 +20,7 @@ jobs:
|
|
|
20
20
|
outputs:
|
|
21
21
|
hasChangesets: ${{ steps.changesets.outputs.hasChangesets }}
|
|
22
22
|
steps:
|
|
23
|
-
|
|
23
|
+
|
|
24
24
|
- name: Cache npm
|
|
25
25
|
uses: actions/cache@v3
|
|
26
26
|
with:
|
|
@@ -55,9 +55,9 @@ jobs:
|
|
|
55
55
|
uses: kaltura/unisphere-core/.github/actions/pre-cicd@main
|
|
56
56
|
with:
|
|
57
57
|
repo-path: '${{ github.workspace }}'
|
|
58
|
-
|
|
59
|
-
- name: Setup JFrog
|
|
60
|
-
|
|
58
|
+
|
|
59
|
+
- name: Setup JFrog
|
|
60
|
+
|
|
61
61
|
uses: jfrog/setup-jfrog-cli@v4
|
|
62
62
|
id: setup-jfrog
|
|
63
63
|
env:
|
|
@@ -65,12 +65,17 @@ jobs:
|
|
|
65
65
|
with:
|
|
66
66
|
oidc-provider-name: ovp-github-oidc
|
|
67
67
|
|
|
68
|
-
- name: Install Dependencies
|
|
68
|
+
- name: Install Dependencies
|
|
69
69
|
run: npm ci --prefer-offline --include=optional --no-fund
|
|
70
70
|
env:
|
|
71
71
|
GIT_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
72
72
|
KALTURA_JFROG_TOKEN: ${{ steps.setup-jfrog.outputs.oidc-token }}
|
|
73
73
|
|
|
74
|
+
- name: Security Audit
|
|
75
|
+
run: npx unisphere tools audit
|
|
76
|
+
env:
|
|
77
|
+
KALTURA_JFROG_TOKEN: ${{ steps.setup-jfrog.outputs.oidc-token }}
|
|
78
|
+
|
|
74
79
|
- name: Create Release Pull Request or Publish to npm
|
|
75
80
|
id: changesets
|
|
76
81
|
uses: changesets/action@v1
|