@diplodoc/client 4.1.2 → 4.1.4
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/deps.yml +4 -0
- package/.github/workflows/package-lock.yaml +4 -0
- package/.github/workflows/prerelease.yaml +8 -2
- package/.github/workflows/quality.yaml +4 -0
- package/.github/workflows/release.yaml +5 -2
- package/.github/workflows/tests.yaml +4 -0
- package/CHANGELOG.md +14 -0
- package/package.json +6 -2
|
@@ -24,6 +24,10 @@ jobs:
|
|
|
24
24
|
node-version: 22
|
|
25
25
|
registry-url: 'https://registry.npmjs.org'
|
|
26
26
|
cache: 'npm'
|
|
27
|
+
- name: Install latest npm (>= 11.5.1)
|
|
28
|
+
run: |
|
|
29
|
+
[ "$(printf '%s\n' "11.5.1" "$(npm -v)" | sort -V | head -n1)" = "11.5.1" ] || npm install -g npm@latest
|
|
30
|
+
shell: bash
|
|
27
31
|
- run: npm ci
|
|
28
32
|
- name: Update package
|
|
29
33
|
run: npm i ${{ inputs.package }}@${{ inputs.version }}
|
|
@@ -23,6 +23,10 @@ jobs:
|
|
|
23
23
|
node-version: 22
|
|
24
24
|
registry-url: 'https://registry.npmjs.org'
|
|
25
25
|
cache: 'npm'
|
|
26
|
+
- name: Install latest npm (>= 11.5.1)
|
|
27
|
+
run: |
|
|
28
|
+
[ "$(printf '%s\n' "11.5.1" "$(npm -v)" | sort -V | head -n1)" = "11.5.1" ] || npm install -g npm@latest
|
|
29
|
+
shell: bash
|
|
26
30
|
- name: Install packages for project
|
|
27
31
|
run: npm i --package-lock-only
|
|
28
32
|
- name: Create and publish commit
|
|
@@ -2,6 +2,10 @@ on: workflow_dispatch
|
|
|
2
2
|
|
|
3
3
|
name: prerelease
|
|
4
4
|
|
|
5
|
+
permissions:
|
|
6
|
+
contents: read
|
|
7
|
+
id-token: write
|
|
8
|
+
|
|
5
9
|
jobs:
|
|
6
10
|
prerelease:
|
|
7
11
|
runs-on: ubuntu-latest
|
|
@@ -14,8 +18,10 @@ jobs:
|
|
|
14
18
|
node-version: 22
|
|
15
19
|
registry-url: 'https://registry.npmjs.org'
|
|
16
20
|
cache: 'npm'
|
|
21
|
+
- name: Install latest npm (>= 11.5.1)
|
|
22
|
+
run: |
|
|
23
|
+
[ "$(printf '%s\n' "11.5.1" "$(npm -v)" | sort -V | head -n1)" = "11.5.1" ] || npm install -g npm@latest
|
|
24
|
+
shell: bash
|
|
17
25
|
- run: npm ci
|
|
18
26
|
- run: npm version --no-git-tag-version 0.0.0-rc-$(git branch --show-current)-$(date "+%Y%m%d%H%M")
|
|
19
27
|
- run: npm publish --tag $(git branch --show-current)
|
|
20
|
-
env:
|
|
21
|
-
NODE_AUTH_TOKEN: ${{secrets.ROBOT_DATAUI_NPM_TOKEN}}
|
|
@@ -18,6 +18,10 @@ jobs:
|
|
|
18
18
|
with:
|
|
19
19
|
node-version: ${{ matrix.node-version }}
|
|
20
20
|
cache: 'npm'
|
|
21
|
+
- name: Install latest npm (>= 11.5.1)
|
|
22
|
+
run: |
|
|
23
|
+
[ "$(printf '%s\n' "11.5.1" "$(npm -v)" | sort -V | head -n1)" = "11.5.1" ] || npm install -g npm@latest
|
|
24
|
+
shell: bash
|
|
21
25
|
- run: npm ci
|
|
22
26
|
- run: npm run lint
|
|
23
27
|
- run: npm run typecheck
|
|
@@ -7,6 +7,7 @@ name: release
|
|
|
7
7
|
permissions:
|
|
8
8
|
contents: write
|
|
9
9
|
pull-requests: write
|
|
10
|
+
id-token: write
|
|
10
11
|
|
|
11
12
|
jobs:
|
|
12
13
|
release:
|
|
@@ -17,6 +18,10 @@ jobs:
|
|
|
17
18
|
with:
|
|
18
19
|
node-version: 22
|
|
19
20
|
registry-url: 'https://registry.npmjs.org'
|
|
21
|
+
- name: Install latest npm (>= 11.5.1)
|
|
22
|
+
run: |
|
|
23
|
+
[ "$(printf '%s\n' "11.5.1" "$(npm -v)" | sort -V | head -n1)" = "11.5.1" ] || npm install -g npm@latest
|
|
24
|
+
shell: bash
|
|
20
25
|
- run: npm ci
|
|
21
26
|
shell: bash
|
|
22
27
|
- uses: codex-team/action-nodejs-package-info@v1
|
|
@@ -30,7 +35,5 @@ jobs:
|
|
|
30
35
|
changelog-types: '[{"type":"feat","section":"Features","hidden":false},{"type":"fix","section":"Bug Fixes","hidden":false},{"type":"perf","section":"Performance Improvements","hidden":false},{"type":"deps","section":"Dependency update","hidden":false}]'
|
|
31
36
|
bump-minor-pre-major: true
|
|
32
37
|
- run: npm publish
|
|
33
|
-
env:
|
|
34
|
-
NODE_AUTH_TOKEN: ${{secrets.ROBOT_DATAUI_NPM_TOKEN}}
|
|
35
38
|
if: ${{ steps.release.outputs.release_created }}
|
|
36
39
|
shell: bash
|
|
@@ -18,5 +18,9 @@ jobs:
|
|
|
18
18
|
with:
|
|
19
19
|
node-version: ${{ matrix.node-version }}
|
|
20
20
|
cache: 'npm'
|
|
21
|
+
- name: Install latest npm (>= 11.5.1)
|
|
22
|
+
run: |
|
|
23
|
+
[ "$(printf '%s\n' "11.5.1" "$(npm -v)" | sort -V | head -n1)" = "11.5.1" ] || npm install -g npm@latest
|
|
24
|
+
shell: bash
|
|
21
25
|
- run: npm ci
|
|
22
26
|
- run: npm run test
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [4.1.4](https://github.com/diplodoc-platform/client/compare/v4.1.3...v4.1.4) (2025-11-19)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* fixed npm version ([#224](https://github.com/diplodoc-platform/client/issues/224)) ([4a0abce](https://github.com/diplodoc-platform/client/commit/4a0abcee8d7255289897ccdf4eabb589059e9b63))
|
|
9
|
+
|
|
10
|
+
## [4.1.3](https://github.com/diplodoc-platform/client/compare/v4.1.2...v4.1.3) (2025-11-19)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* fixed npm version ([#221](https://github.com/diplodoc-platform/client/issues/221)) ([5a0eb62](https://github.com/diplodoc-platform/client/commit/5a0eb62594bb8256466842d29fb4f3c84991a5a2))
|
|
16
|
+
|
|
3
17
|
## [4.1.2](https://github.com/diplodoc-platform/client/compare/v4.1.1...v4.1.2) (2025-11-05)
|
|
4
18
|
|
|
5
19
|
|
package/package.json
CHANGED
|
@@ -1,8 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@diplodoc/client",
|
|
3
|
-
"version": "4.1.
|
|
3
|
+
"version": "4.1.4",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "./build/server/app.js",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "git@github.com:diplodoc-platform/client.git"
|
|
9
|
+
},
|
|
6
10
|
"scripts": {
|
|
7
11
|
"build": "NODE_ENV=production npm run _build && tsc --emitDeclarationOnly --outDir build",
|
|
8
12
|
"build:dev": "NODE_ENV=development npm run _build",
|
|
@@ -20,7 +24,7 @@
|
|
|
20
24
|
"license": "ISC",
|
|
21
25
|
"engines": {
|
|
22
26
|
"node": ">=22",
|
|
23
|
-
"npm": ">=
|
|
27
|
+
"npm": ">=11.5.1"
|
|
24
28
|
},
|
|
25
29
|
"exports": {
|
|
26
30
|
".": {
|