Skip to content

Commit 92f6d08

Browse files
authored
Merge pull request #110 from jcdcdev/dev/v16
16.0.0
2 parents a97906b + ac9771f commit 92f6d08

File tree

106 files changed

+2290
-2984
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

106 files changed

+2290
-2984
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ jobs:
1313
project-path: src/Umbraco.Community.SimpleDashboards/Umbraco.Community.SimpleDashboards.csproj
1414
npm-working-dir: src/Umbraco.Community.SimpleDashboards.Client
1515
npm-enabled: true
16-
umbraco-version: 15
16+
umbraco-version: 16
1717
dotnet-version: "9"
1818
npm-version: "22.x"

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
project-path: src/Umbraco.Community.SimpleDashboards/Umbraco.Community.SimpleDashboards.csproj
1919
npm-working-dir: src/Umbraco.Community.SimpleDashboards.Client
2020
npm-enabled: true
21-
umbraco-version: 15
21+
umbraco-version: 16
2222
dotnet-version: "9"
2323
npm-version: "22.x"
2424
- name: Release

SECURITY.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,14 @@ The following table outlines the versions of the project that are currently supp
1111
| ---------------------------------------------------------------------------------- | --------------- | -------------------- | ----------- |
1212
| [10.x](https://github.com/jcdcdev/Umbraco.Community.SimpleDashboards/tree/v10) | 10 | 2024-06-16 | 2025-06-16 |
1313
| [13.x](https://github.com/jcdcdev/Umbraco.Community.SimpleDashboards/tree/v13) | 13 | 2025-12-14 | 2026-12-14 |
14-
| [14.x](https://github.com/jcdcdev/Umbraco.Community.SimpleDashboards/tree/v14) | 14 | 2025-03-02 | 2025-05-30 |
1514
| [15.x](https://github.com/jcdcdev/Umbraco.Community.SimpleDashboards/tree/v15) | 15 | 2025-08-14 | 2025-11-14 |
15+
| [16.x](https://github.com/jcdcdev/Umbraco.Community.SimpleDashboards/tree/v16) | 16 | 2026-03-12 | 2026-06-12 |
1616
## Unsupported Versions
1717

1818
| Package Version | Umbraco Version | End of Life |
1919
| ---------------------------------------------------------------------------------- | --------------- | ----------- |
2020
| [12.x](https://github.com/jcdcdev/Umbraco.Community.SimpleDashboards/tree/v12) | 12 | 2024-06-29 |
21+
| [14.x](https://github.com/jcdcdev/Umbraco.Community.SimpleDashboards/tree/v14) | 14 | 2025-05-30 |
2122

2223

2324
## Future Support

src/Umbraco.Community.SimpleDashboards.Client/openapi-ts.config.ts

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
1-
import { defineConfig, defaultPlugins } from '@hey-api/openapi-ts';
1+
import {defineConfig, defaultPlugins} from '@hey-api/openapi-ts';
22

33
export default defineConfig({
44
input: 'http://localhost:54813/umbraco/swagger/SimpleDashboards/swagger.json',
55
plugins: [
66
...defaultPlugins,
7-
'legacy/fetch',
8-
'@hey-api/schemas',
97
{
10-
dates: true,
11-
name: '@hey-api/transformers',
8+
name: '@hey-api/client-fetch',
9+
exportFromIndex: true,
10+
throwOnError: true,
1211
},
1312
{
14-
enums: 'javascript',
1513
name: '@hey-api/typescript',
14+
enums: 'typescript',
15+
readOnlyWriteOnlyBehavior: 'off',
1616
},
1717
{
1818
name: '@hey-api/sdk',
19-
transformer: true,
20-
},
19+
asClass: true,
20+
}
2121
],
2222
output: {
2323
format: 'prettier',

0 commit comments

Comments
 (0)