Skip to content

Commit bb038c8

Browse files
authored
Merge pull request #224 from dotnetcore/codex/enhance-role-management-functionality
feat: add role management and dynamic permissions
2 parents c8e16d1 + 62efc90 commit bb038c8

File tree

366 files changed

+16714
-17051
lines changed

Some content is hidden

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

366 files changed

+16714
-17051
lines changed

.github/workflows/arm32.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ jobs:
4444
dotnet-version: |
4545
8.0.x
4646
9.0.x
47+
10.0.x
4748
- name: Install dependencies
4849
run: dotnet restore
4950
- name: Build

.github/workflows/arm64.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ jobs:
4444
dotnet-version: |
4545
8.0.x
4646
9.0.x
47+
10.0.x
4748
- name: Install dependencies
4849
run: dotnet restore
4950
- name: Build

.github/workflows/master-ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ jobs:
3535
dotnet-version: |
3636
8.0.x
3737
9.0.x
38+
10.0.x
3839
- name: Restore dependencies
3940
run: dotnet restore
4041
- name: Build

.github/workflows/master-pr-ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ jobs:
3535
dotnet-version: |
3636
8.0.x
3737
9.0.x
38+
10.0.x
3839
- name: Restore dependencies
3940
run: dotnet restore
4041
- name: Build

.github/workflows/mysqlconnector.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ jobs:
4444
dotnet-version: |
4545
8.0.x
4646
9.0.x
47+
10.0.x
4748
- name: Install dependencies
4849
run: dotnet restore
4950
- name: Build

.github/workflows/publish.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ jobs:
4343
dotnet-version: |
4444
8.0.x
4545
9.0.x
46+
10.0.x
4647
- name: Install dependencies
4748
run: dotnet restore
4849
- name: Build

.github/workflows/release-xxx.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ jobs:
4343
dotnet-version: |
4444
8.0.x
4545
9.0.x
46+
10.0.x
4647
- name: Install dependencies
4748
run: dotnet restore
4849
- name: Build

.github/workflows/test-cd.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ jobs:
4545
dotnet-version: |
4646
8.0.x
4747
9.0.x
48+
10.0.x
4849
4950
- name: Install dependencies
5051
run: dotnet restore

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Change log
22
------------------------------
3+
[Unreleased]
4+
* Introduced dynamic role management with CRUD APIs and UI allowing custom permission assignments.
5+
36
[1.10.0]
47
* Use publish timeline virtual id to compare the version between client. To enable this feature the client should use version >=1.8.0 .
58

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
FROM mcr.microsoft.com/dotnet/aspnet:8.0 AS base
1+
FROM mcr.microsoft.com/dotnet/aspnet:10.0.0 AS base
22
RUN sed -i 's/DEFAULT@SECLEVEL=2/DEFAULT@SECLEVEL=1/g' /etc/ssl/openssl.cnf
33
RUN sed -i 's/MinProtocol = TLSv1.2/MinProtocol = TLSv1/g' /etc/ssl/openssl.cnf
44
RUN sed -i 's/DEFAULT@SECLEVEL=2/DEFAULT@SECLEVEL=1/g' /usr/lib/ssl/openssl.cnf
55
RUN sed -i 's/MinProtocol = TLSv1.2/MinProtocol = TLSv1/g' /usr/lib/ssl/openssl.cnf
66
WORKDIR /app
77
EXPOSE 5000
88

9-
FROM mcr.microsoft.com/dotnet/sdk:9.0 AS build
9+
FROM mcr.microsoft.com/dotnet/sdk:10.0 AS build
1010
WORKDIR /src
1111
COPY ["src/AgileConfig.Server.Apisite/AgileConfig.Server.Apisite.csproj", "AgileConfig.Server.Apisite/"]
1212
COPY ["src/AgileConfig.Server.Data.Entity/AgileConfig.Server.Data.Entity.csproj", "AgileConfig.Server.Data.Entity/"]

0 commit comments

Comments
 (0)