Skip to content

Commit

Permalink
v0.1.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
CDR-AndrewG authored May 9, 2022
1 parent a3b02e0 commit ee35832
Show file tree
Hide file tree
Showing 2 changed files with 58 additions and 54 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.1.2] - 2022-05-09
### Fixed
- Banking API swagger in data sharing not displaying. [Issue 30](https://github.com/ConsumerDataRight/mock-data-recipient/issues/30)

## [0.1.1] - 2021-12-07
### Added
- GitHub Actions Workflow for Build, Unit Test, and Integration Test project.
Expand Down
108 changes: 54 additions & 54 deletions Source/CDR.DataRecipient.Web/appsettings.json
Original file line number Diff line number Diff line change
@@ -1,60 +1,60 @@
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft": "Warning",
"Microsoft.Hosting.Lifetime": "Information"
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft": "Warning",
"Microsoft.Hosting.Lifetime": "Information"
}
},
"AllowedHosts": "*",
"Kestrel": {
"Endpoints": {
"Https": {
"Url": "https://0.0.0.0:9001",
"Certificate": {
"Path": "Certificates/mock-data-recipient.pfx",
"Password": "#M0ckDataRecipient#"
}
}
}
},
"ConsumerDataStandardsSwagger": "https://consumerdatastandardsaustralia.github.io/standards-archives/standards-1.16.0/includes/swagger/cds_banking.json",
"AcceptAnyServerCertificate": true,
"MockDataRecipient": {
"Register": {
"tlsBaseUri": "https://localhost:7000",
"mtlsBaseUri": "https://localhost:7001",
"oidcDiscoveryUri": "https://localhost:7000/idp/.well-known/openid-configuration",
"tokenEndpoint": "https://localhost:7001/idp/connect/token"
},
"AllowedHosts": "*",
"Kestrel": {
"Endpoints": {
"Https": {
"Url": "https://0.0.0.0:9001",
"Certificate": {
"Path": "Certificates/mock-data-recipient.pfx",
"Password": "#M0ckDataRecipient#"
}
}
}
"SoftwareProduct": {
"softwareProductId": "c6327f87-687a-4369-99a4-eaacd3bb8210",
"brandId": "ffb1c8ba-279e-44d8-96f0-1bc34a6b436f",
"jwksUri": "https://localhost:9001/jwks",
"redirectUris": "https://localhost:9001/consent/callback",
"recipientBaseUri": "https://localhost:9001",
"scope": "openid profile bank:accounts.basic:read bank:accounts.detail:read bank:transactions:read common:customer.basic:read",
"defaultSigningAlgorithm": "PS256",
"clientCertificate": {
"path": "Certificates/client.pfx",
"password": "#M0ckDataRecipient#"
},
"signingCertificate": {
"Path": "Certificates/jwks.pfx",
"Password": "#M0ckDataRecipient#"
}
},
"ConsumerDataStandardsSwagger": "https://consumerdatastandardsaustralia.github.io/standards/includes/swagger/cds_full.json",
"AcceptAnyServerCertificate": true,
"MockDataRecipient": {
"Register": {
"tlsBaseUri": "https://localhost:7000",
"mtlsBaseUri": "https://localhost:7001",
"oidcDiscoveryUri": "https://localhost:7000/idp/.well-known/openid-configuration",
"tokenEndpoint": "https://localhost:7001/idp/connect/token"
},
"SoftwareProduct": {
"softwareProductId": "c6327f87-687a-4369-99a4-eaacd3bb8210",
"brandId": "ffb1c8ba-279e-44d8-96f0-1bc34a6b436f",
"jwksUri": "https://localhost:9001/jwks",
"redirectUris": "https://localhost:9001/consent/callback",
"recipientBaseUri": "https://localhost:9001",
"scope": "openid profile bank:accounts.basic:read bank:accounts.detail:read bank:transactions:read common:customer.basic:read",
"defaultSigningAlgorithm": "PS256",
"clientCertificate": {
"path": "Certificates/client.pfx",
"password": "#M0ckDataRecipient#"
},
"signingCertificate": {
"Path": "Certificates/jwks.pfx",
"Password": "#M0ckDataRecipient#"
}
},
"DataHolder": {
"BrandId": "804FC2FB-18A7-4235-9A49-2AF393D18BC7",
"infosecBaseUri": "https://localhost:8001",
"resourceBaseUri": "https://localhost:8002",
"publicBaseUri": "https://localhost:8000",
"oidcDiscoveryUri": "https://localhost:8001/.well-known/openid-configuration",
"jwksUri": "https://localhost:8001/.well-known/openid-configuration/jwks",
"registrationEndpoint": "https://localhost:8002/connect/register"
},
"Paging": {
"DefaultPageSize": 1000
}
"DataHolder": {
"BrandId": "804FC2FB-18A7-4235-9A49-2AF393D18BC7",
"infosecBaseUri": "https://localhost:8001",
"resourceBaseUri": "https://localhost:8002",
"publicBaseUri": "https://localhost:8000",
"oidcDiscoveryUri": "https://localhost:8001/.well-known/openid-configuration",
"jwksUri": "https://localhost:8001/.well-known/openid-configuration/jwks",
"registrationEndpoint": "https://localhost:8002/connect/register"
},
"Paging": {
"DefaultPageSize": 1000
}
}
}

0 comments on commit ee35832

Please sign in to comment.