@diplodoc/client 3.2.0 → 3.3.1

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.
@@ -0,0 +1,48 @@
1
+ name: Update package
2
+
3
+ on:
4
+ workflow_dispatch:
5
+ inputs:
6
+ package:
7
+ description: 'Package name'
8
+ required: true
9
+ type: string
10
+ version:
11
+ description: 'Package version'
12
+ required: true
13
+ type: string
14
+ default: 'latest'
15
+
16
+ jobs:
17
+ update-package:
18
+ runs-on: ubuntu-latest
19
+ steps:
20
+ - uses: actions/checkout@v4
21
+ - name: Setup Node 18
22
+ uses: actions/setup-node@v3
23
+ with:
24
+ node-version: 18
25
+ registry-url: 'https://registry.npmjs.org'
26
+ cache: 'npm'
27
+ - run: npm ci
28
+ - name: Update package
29
+ run: npm i ${{ inputs.package }}@${{ inputs.version }}
30
+ - name: Create and publish PR
31
+ env:
32
+ GH_TOKEN: ${{ secrets.YC_UI_BOT_GITHUB_TOKEN }}
33
+ run: |
34
+ set -e
35
+
36
+ [[ -z $(git diff --stat | grep package.json) ]] && echo "::info::Nothing to update" && exit 0
37
+
38
+ VERSION=$(npm explore --no-workspaces ${{ inputs.package }} "node -pe 'require(\"./package.json\").version'" --shell sh)
39
+
40
+ git config --global user.email "95919151+yc-ui-bot@users.noreply.github.com"
41
+ git config --global user.name "yc-ui-bot"
42
+
43
+ git push -f origin :ci/update-deps/${{ inputs.package }}-$VERSION || true
44
+ git checkout -b ci/update-deps/${{ inputs.package }}-$VERSION
45
+ git add package.json package-lock.json
46
+ git commit -m "deps: Update ${{ inputs.package }} to $VERSION"
47
+ git push -u origin ci/update-deps/${{ inputs.package }}-$VERSION
48
+ gh pr create -f
package/CHANGELOG.md CHANGED
@@ -1,5 +1,26 @@
1
1
  # Changelog
2
2
 
3
+ ## [3.3.1](https://github.com/diplodoc-platform/client/compare/v3.3.0...v3.3.1) (2025-03-26)
4
+
5
+
6
+ ### Dependency update
7
+
8
+ * Update @diplodoc/transform to 4.51.0 ([#122](https://github.com/diplodoc-platform/client/issues/122)) ([ee43a4e](https://github.com/diplodoc-platform/client/commit/ee43a4e7554325a227378ca4adbcfa6a664e7014))
9
+
10
+ ## [3.3.0](https://github.com/diplodoc-platform/client/compare/v3.2.0...v3.3.0) (2025-03-25)
11
+
12
+
13
+ ### Features
14
+
15
+ * move to tabs runtime ([#113](https://github.com/diplodoc-platform/client/issues/113)) ([109b887](https://github.com/diplodoc-platform/client/commit/109b887c4247a780b71b7c3d71e0cb6d10f0a0e5))
16
+ * workflow for deps update ([#120](https://github.com/diplodoc-platform/client/issues/120)) ([ae3383b](https://github.com/diplodoc-platform/client/commit/ae3383b51ddab03e497d5c2657e15d293622323a))
17
+
18
+
19
+ ### Bug Fixes
20
+
21
+ * dev dep ([9581be4](https://github.com/diplodoc-platform/client/commit/9581be4a4f5c4521b78e8b2420dc5cc3e7405540))
22
+ * package ([d74a089](https://github.com/diplodoc-platform/client/commit/d74a08974be6e9e691245ab5832e664125db930d))
23
+
3
24
  ## [3.2.0](https://github.com/diplodoc-platform/client/compare/v3.1.12...v3.2.0) (2025-03-24)
4
25
 
5
26