@dexteel/mesf-core 6.1.0 → 6.1.2
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-please-v6.yml +0 -33
- package/.release-please-manifest.json +1 -1
- package/CHANGELOG.md +21 -0
- package/dist/index.esm.js +671 -841
- package/dist/index.esm.js.map +1 -1
- package/dist/pages/trendings/TrendingsPage.d.ts +3 -16
- package/dist/pages/trendings/components/chart/TableComponent.d.ts +12 -0
- package/dist/pages/trendings/components/chart/Trending.d.ts +1 -2
- package/dist/pages/trendings/components/chart/components/modals/loadView/LoadViewModal.d.ts +2 -1
- package/dist/pages/trendings/components/chart/customOptionsComponent.d.ts +0 -2
- package/dist/pages/trendings/components/chart/repository/TrendingRepository.d.ts +11 -41
- package/dist/pages/trendings/components/chart/sections/header.d.ts +1 -3
- package/package.json +1 -1
- package/release-please-config.json +2 -10
- package/.github/workflows/release-please-v4.yml +0 -61
- package/.github/workflows/release-please-v5.yml +0 -63
|
@@ -16,36 +16,3 @@ jobs:
|
|
|
16
16
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
17
17
|
target-branch: 'next-ng'
|
|
18
18
|
default-branch: 'next-ng'
|
|
19
|
-
|
|
20
|
-
- uses: actions/checkout@v4
|
|
21
|
-
if: ${{ steps.release.outputs.release_created }}
|
|
22
|
-
|
|
23
|
-
- name: Setup Node.js
|
|
24
|
-
if: ${{ steps.release.outputs.release_created }}
|
|
25
|
-
uses: actions/setup-node@v4
|
|
26
|
-
with:
|
|
27
|
-
node-version: 'lts/hydrogen' # Adjust this to your Node.js version
|
|
28
|
-
|
|
29
|
-
- name: Update Node.js package versions
|
|
30
|
-
if: ${{ steps.release.outputs.release_created }}
|
|
31
|
-
run: |
|
|
32
|
-
version="${{ steps.release.outputs.version }}"
|
|
33
|
-
find . -name "package.json" -type f -print0 | while IFS= read -r -d '' file; do
|
|
34
|
-
jq ".version = \"${version}\"" "$file" > temp.json && mv temp.json "$file"
|
|
35
|
-
done
|
|
36
|
-
|
|
37
|
-
- name: Update CHANGELOG.md
|
|
38
|
-
if: ${{ steps.release.outputs.release_created }}
|
|
39
|
-
run: |
|
|
40
|
-
version="${{ steps.release.outputs.version }}"
|
|
41
|
-
date=$(date +"%Y-%m-%d")
|
|
42
|
-
echo -e "# Changelog\n\n## [${version}] - ${date}\n\n${{ steps.release.outputs.changelog }}\n\n$(cat CHANGELOG.md)" > CHANGELOG.md
|
|
43
|
-
|
|
44
|
-
- name: Commit changes
|
|
45
|
-
if: ${{ steps.release.outputs.release_created }}
|
|
46
|
-
run: |
|
|
47
|
-
git config --local user.email "action@github.com"
|
|
48
|
-
git config --local user.name "GitHub Action"
|
|
49
|
-
git add .
|
|
50
|
-
git commit -m "chore: update versions and CHANGELOG for ${{ steps.release.outputs.version }}" || echo "No changes to commit"
|
|
51
|
-
git push
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,24 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
## [6.1.2](https://github.com/dexteel/mesf-core-frontend/compare/mesf-core-v6.1.1...mesf-core-v6.1.2) (2025-10-21)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* **Trendings:** revert changes. Wait for v2 ([3ffc4b1](https://github.com/dexteel/mesf-core-frontend/commit/3ffc4b190e5e1e84ae9f6de02897051c3f924667))
|
|
9
|
+
|
|
10
|
+
## [6.1.1](https://github.com/dexteel/mesf-core-frontend/compare/@dexteel/mesf-core-v6.1.0...@dexteel/mesf-core-v6.1.1) (2025-10-15)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* **devops:** remove unnecessary code from release-please yaml ([51f15d2](https://github.com/dexteel/mesf-core-frontend/commit/51f15d20b3c0130ce47375294b77eb59d3e42aa1))
|
|
16
|
+
* **Trendings:** optimize chart updates and add request cancellation for zoom/pan ([#504](https://github.com/dexteel/mesf-core-frontend/issues/504)) ([2277a65](https://github.com/dexteel/mesf-core-frontend/commit/2277a653360ab379d18b1ead252ff480f9eb16f9))
|
|
17
|
+
|
|
18
|
+
## [6.1.0] - 2025-10-13
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
1
22
|
# Changelog
|
|
2
23
|
|
|
3
24
|
## [6.1.0](https://github.com/dexteel/mesf-core-frontend/compare/@dexteel/mesf-core-v6.0.5...@dexteel/mesf-core-v6.1.0) (2025-10-13)
|