@cosmotech/core 2.0.0 → 2.0.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.
@@ -13,13 +13,13 @@ jobs:
13
13
  runs-on: ubuntu-latest
14
14
  steps:
15
15
  - name: Checkout git repository
16
- uses: actions/checkout@v4
16
+ uses: actions/checkout@v5
17
17
  - name: Enable Corepack
18
18
  run: corepack enable
19
19
  - name: Setup Node
20
- uses: actions/setup-node@v4
20
+ uses: actions/setup-node@v5
21
21
  with:
22
- node-version: '18'
22
+ node-version: '24'
23
23
  cache: 'yarn'
24
24
  - name: Run eslint
25
25
  run: yarn install && yarn eslint .
@@ -0,0 +1,30 @@
1
+ name: Track Dependencies
2
+
3
+ on:
4
+ workflow_dispatch:
5
+ push:
6
+ branches:
7
+ - main
8
+
9
+ jobs:
10
+ dependency_track:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - name: Checkout
14
+ uses: actions/checkout@v5
15
+ - name: Enable Corepack
16
+ run: corepack enable
17
+ - name: Setup Node
18
+ uses: actions/setup-node@v5
19
+ with:
20
+ node-version: '24'
21
+ cache: 'yarn'
22
+ - name: Generate SBOM
23
+ run: yarn dlx -q @cyclonedx/yarn-plugin-cyclonedx -o sbom.json
24
+ - name: Upload CycloneDx bom to dependency track
25
+ uses: DependencyTrack/gh-upload-sbom@v3
26
+ with:
27
+ serverhostname: ${{ secrets.DEPENDENCY_TRACK_SERVER_HOSTNAME }}
28
+ apikey: ${{ secrets.DEPENDENCY_TRACK_API_KEY }}
29
+ project: 'c9e26ece-6f0c-4834-94c3-a20efd1d7fb7'
30
+ bomfilename: 'sbom.json'
Binary file
package/CHANGELOG.md CHANGED
@@ -1,3 +1,14 @@
1
+ ## **2.0.1** <sub><sup>2025-09-19 (7021d37...40b3c7f)</sup></sub>
2
+
3
+ ### Bug Fixes
4
+
5
+ - fix possible bug when multiple local MSAL accounts exist ([8510a1b](https://github.com/Cosmo-Tech/webapp-component-core/commit/8510a1b581234485c7dd1687339f2727a25901b0))
6
+
7
+ ### Dependencies
8
+
9
+ - upgrade to node 24
10
+ - update dependencies
11
+
1
12
  ## **2.0.0** <sub><sup>2025-01-23 (ba70eef...4d0f1df)</sup></sub>
2
13
 
3
14
  ### Features