@dexteel/mesf-core 5.14.1 → 5.14.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-v5.yml +0 -46
- package/.release-please-manifest.json +1 -1
- package/CHANGELOG.md +13 -0
- package/dist/MESFMain.d.ts +2 -1
- package/dist/index.esm.js +7 -3
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
- package/release-please-config.json +2 -9
- package/.github/workflows/release-please-v4.yml +0 -61
|
@@ -12,52 +12,6 @@ jobs:
|
|
|
12
12
|
- uses: googleapis/release-please-action@v4
|
|
13
13
|
id: release
|
|
14
14
|
with:
|
|
15
|
-
command: manifest
|
|
16
15
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
17
16
|
target-branch: 'next'
|
|
18
17
|
default-branch: 'next'
|
|
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
|
|
52
|
-
|
|
53
|
-
- name: Create Release
|
|
54
|
-
if: ${{ steps.release.outputs.release_created }}
|
|
55
|
-
uses: actions/create-release@v1
|
|
56
|
-
env:
|
|
57
|
-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
58
|
-
with:
|
|
59
|
-
tag_name: ${{ steps.release.outputs.tag_name }}
|
|
60
|
-
release_name: Release ${{ steps.release.outputs.version }}
|
|
61
|
-
body: ${{ steps.release.outputs.changelog }}
|
|
62
|
-
draft: false
|
|
63
|
-
prerelease: false
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,16 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
## [5.14.2](https://github.com/dexteel/mesf-core-frontend/compare/mesf-core-v5.14.1...mesf-core-v5.14.2) (2025-10-28)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* add debugging info ([7a6cc97](https://github.com/dexteel/mesf-core-frontend/commit/7a6cc978f94d22ade442d273ed3450db61e22832))
|
|
9
|
+
|
|
10
|
+
## [5.14.1] - 2025-09-23
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
1
14
|
# Changelog
|
|
2
15
|
|
|
3
16
|
## [5.14.1](https://github.com/dexteel/mesf-core-frontend/compare/@dexteel/mesf-core-v5.14.0...@dexteel/mesf-core-v5.14.1) (2025-09-23)
|
package/dist/MESFMain.d.ts
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import React, { type ReactNode } from "react";
|
|
2
|
+
import { AuthConfig } from "./account";
|
|
2
3
|
import { ConfigurationsType } from "./configurationMenu";
|
|
3
4
|
interface Props {
|
|
4
|
-
authentication:
|
|
5
|
+
authentication: AuthConfig;
|
|
5
6
|
routes: ReactNode;
|
|
6
7
|
navbar: ReactNode;
|
|
7
8
|
navbarTitle?: string;
|
package/dist/index.esm.js
CHANGED
|
@@ -8004,9 +8004,13 @@ var UserProvider = function (_a) {
|
|
|
8004
8004
|
setPermissionsLoaded(true);
|
|
8005
8005
|
}
|
|
8006
8006
|
if (resp && resp.Profiles) {
|
|
8007
|
-
|
|
8008
|
-
|
|
8009
|
-
|
|
8007
|
+
console.log("resp.Profiles type:", typeof resp.Profiles);
|
|
8008
|
+
console.log("resp.Profiles value:", resp.Profiles);
|
|
8009
|
+
if (typeof resp.Profiles === "string") {
|
|
8010
|
+
profilesArray = resp.Profiles.split(",");
|
|
8011
|
+
actions.setProfiles(profilesArray);
|
|
8012
|
+
setProfilesLoaded(true);
|
|
8013
|
+
}
|
|
8010
8014
|
}
|
|
8011
8015
|
return [3 /*break*/, 4];
|
|
8012
8016
|
case 3:
|