Skip to content

Commit 977ba80

Browse files
authored
Merge pull request #12 from jxnkwlp/feature/abp-8.2
Bump all module version
2 parents 233a958 + cbcaec7 commit 977ba80

File tree

11 files changed

+23
-24
lines changed

11 files changed

+23
-24
lines changed

host/src/Sample.Domain/SampleDomainModule.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public override void ConfigureServices(ServiceConfigurationContext context)
4444
{
4545
Configure<AbpLocalizationOptions>(options =>
4646
{
47-
options.Languages.Add(new LanguageInfo("en", "English", "gb"));
47+
options.Languages.Add(new LanguageInfo("en", "en", "gb"));
4848
options.Languages.Add(new LanguageInfo("zh-Hans", "zh-Hans", "简体中文"));
4949
});
5050

modules/account/common.props

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
<Description>an abp module that provider account service, such as login, 2fa, account link,
77
impersonation, settings. </Description>
88
<PackageTags>abp-module</PackageTags>
9-
<Version>1.3.1</Version>
10-
<PackageVersion>1.3.1</PackageVersion>
9+
<Version>1.4.0</Version>
10+
<PackageVersion>1.4.0</PackageVersion>
1111
</PropertyGroup>
1212

1313
<ItemGroup>

modules/api-keys/common.props

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
<Product>Passingwind.Abp.ApiKey</Product>
66
<Description>an abp module that provider api key authentication and key management.</Description>
77
<PackageTags>abp-module, apikey</PackageTags>
8-
<Version>1.1.0</Version>
9-
<PackageVersion>1.1.0</PackageVersion>
8+
<Version>1.2.0</Version>
9+
<PackageVersion>1.2.0</PackageVersion>
1010
</PropertyGroup>
1111

1212
<ItemGroup>

modules/common.props

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
<Project>
22

33
<Import Project="..\common.props" />
4-
4+
55
<PropertyGroup>
66
<LangVersion>latest</LangVersion>
77
<AssemblyVersion>$(Version)</AssemblyVersion>
88
<FileVersion>$(Version)</FileVersion>
99
<NoWarn>$(NoWarn);CS1591</NoWarn>
10-
10+
1111
<IsPackable>true</IsPackable>
1212
<Authors>Passingwind</Authors>
1313
<Copyright>Passingwind</Copyright>
@@ -27,11 +27,11 @@
2727
<PropertyGroup Condition="'$(Configuration)'=='Release'">
2828
<GenerateDocumentationFile>True</GenerateDocumentationFile>
2929
</PropertyGroup>
30-
30+
3131
<PropertyGroup>
32-
<RoslynatorVersion>4.11.0</RoslynatorVersion>
32+
<RoslynatorVersion>4.12.4</RoslynatorVersion>
3333
</PropertyGroup>
34-
34+
3535
<ItemGroup>
3636
<PackageReference Include="ConfigureAwait.Fody" Version="3.3.2" PrivateAssets="All" />
3737
<PackageReference Include="Fody" Version="6.8.0">
@@ -61,4 +61,4 @@
6161
</PropertyGroup>
6262
</Target>
6363

64-
</Project>
64+
</Project>

modules/dictionary-management/common.props

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
<Product>Passingwind.Abp.DictionaryManagement</Product>
77
<Description>an abp module that provider dynamic dictionary management service</Description>
88
<PackageTags>abp-module</PackageTags>
9-
<Version>1.1.0</Version>
10-
<PackageVersion>1.1.0</PackageVersion>
9+
<Version>1.2.0</Version>
10+
<PackageVersion>1.2.0</PackageVersion>
1111
</PropertyGroup>
1212

1313
<ItemGroup>

modules/dynamic-permission-management/common.props

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,8 @@
66
<Product>Passingwind.Abp.DynamicPermissionManagement</Product>
77
<Description>an abp module that provider dynamic permission management service</Description>
88
<PackageTags>abp-module</PackageTags>
9-
<Version>1.1.0</Version>
10-
<PackageVersion>1.1.0</PackageVersion>
11-
<IsPackable>false</IsPackable>
9+
<Version>1.2.0</Version>
10+
<PackageVersion>1.2.0</PackageVersion>
1211
</PropertyGroup>
1312

1413
<ItemGroup>

modules/file-management/common.props

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
<Product>Passingwind.Abp.FileManagement</Product>
66
<Description>an abp module that provider file and file container management.</Description>
77
<PackageTags>abp-module</PackageTags>
8-
<Version>1.1.0</Version>
9-
<PackageVersion>1.1.0</PackageVersion>
8+
<Version>1.2.0</Version>
9+
<PackageVersion>1.2.0</PackageVersion>
1010
</PropertyGroup>
1111

1212
<ItemGroup>

modules/identity-client/common.props

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
<Product>Passingwind.Abp.IdentityClientManagement</Product>
77
<Description>an abp module that provider dynamic identity provider, support oidc, saml2</Description>
88
<PackageTags>abp, abp-module, OIDC, SAML2</PackageTags>
9-
<Version>1.1.0</Version>
10-
<PackageVersion>1.1.1</PackageVersion>
9+
<Version>1.2.0</Version>
10+
<PackageVersion>1.2.0</PackageVersion>
1111
</PropertyGroup>
1212

1313
<ItemGroup>

modules/identity-client/src/Passingwind.Abp.IdentityClient.AspNetCore/Passingwind.Abp.IdentityClient.AspNetCore.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
</ItemGroup>
1414

1515
<ItemGroup>
16-
<PackageReference Include="ITfoxtec.Identity.Saml2" Version="4.10.8" />
16+
<PackageReference Include="ITfoxtec.Identity.Saml2" Version="4.11.3" />
1717
<PackageReference Include="Microsoft.AspNetCore.Authentication.OpenIdConnect" Version="8.0.*" />
1818
<PackageReference Include="Passingwind.AspNetCore.Authentication.Saml2" Version="0.3.0" />
1919
</ItemGroup>

modules/identity-client/src/Passingwind.Abp.IdentityClient.AspNetCore/Saml2AppService.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ public virtual async Task<string> GetMetadataDescriptorAsync(Uri baseUri, string
9393
{
9494
new AttributeConsumingService
9595
{
96-
ServiceName = new ServiceName(identityClient.Name, "en"),
96+
ServiceNames = new []{ new LocalizedNameType(identityClient.Name, "en") },
9797
RequestedAttributes = CreateRequestedAttributes(),
9898
}
9999
},

0 commit comments

Comments
 (0)