Skip to content

Commit

Permalink
Fix the issue #27
Browse files Browse the repository at this point in the history
  • Loading branch information
unchase committed Jan 13, 2020
1 parent 280116a commit b28a745
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 16 deletions.
32 changes: 18 additions & 14 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,68 +7,72 @@

These are the changes to each version that has been released on the official [Visual Studio extension gallery](https://marketplace.visualstudio.com/items?itemName=unchase.UnchaseODataConnectedService).

## v1.3.8 `2020-01-11`
## v1.3.9 `(2020-01-13)`

- [x] Fix the [issue #27](https://github.com/unchase/Unchase.Odata.Connectedservice/issues/27)

## v1.3.8 `(2020-01-11)`

- [x] Fix [issue #23](https://github.com/unchase/Unchase.Odata.Connectedservice/issues/23)
- [x] Fix small bug: delete generation code duplicate

## v1.3.7 `2020-01-08`
## v1.3.7 `(2020-01-08)`

- [x] Fix bug for [issue #22](https://github.com/unchase/Unchase.Odata.Connectedservice/issues/22)

## v1.3.6 `2020-01-07`
## v1.3.6 `(2020-01-07)`

- [x] Fix the [issue #22](https://github.com/unchase/Unchase.Odata.Connectedservice/issues/22)

## v1.3.4 `2019-10-20`
## v1.3.4 `(2019-10-20)`

- [x] Update icon resolution

## v1.3.3 `2019-10-03`
## v1.3.3 `(2019-10-03)`

- [x] Add fix: set `DtdProcessing` option in `XmlReaderSettings`

## v1.3.2 `2019-09-23`
## v1.3.2 `(2019-09-23)`

- [x] Add option for accepting all untrusted certificates on the first wizard page

## v1.3.1 `2019-09-21`
## v1.3.1 `(2019-09-21)`

- [x] Add support for emitting dynamic properties on open types for `OData V4`

## v 1.3.0 `2019-09-21`
## v 1.3.0 `(2019-09-21)`

- [x] Close the [issue #5](https://github.com/unchase/Unchase.Odata.Connectedservice/issues/5):
- [x] Add support for loading client code generation parameters from json files (including `Connected Service .json` from `OData Connected Service` by Microsoft)
- [x] Fix bug with multiple untrusted sertificate validation (if multiple OData services are hosted on one endpoint)
- [x] Add more code generation parameters to stored `UserSettings`
- [x] Add `Excluded Operation imports names` to OData V4 generation template for excluding `OperationImports` you need

## v1.2.0 `2019-09-10`
## v1.2.0 `(2019-09-10)`

- [x] Code refactoring
- [x] Add `ExcludedOperationImportsNames` to `AdvancedSettings` and `ODataT4CodeGenerator` (comma separated `OperationImports` (`ActionImports` and `FunctionImports`) names in metadata to exclude from generated code)
- [x] Add methods for selecting `OperationImports` for OData V4

## v1.1.2 `2019-09-07`
## v1.1.2 `(2019-09-07)`

- [x] Fix casting types error in `ODataT4CodeGenerator`. Client-side code generation for `OData v4`: https://graph.microsoft.com/beta/$metadata now works fine.

## v1.1.1 `2019-08-12`
## v1.1.1 `(2019-08-12)`

- [x] Fix bug with metadata file URI
- [x] Add "Browse" button in the first wizard page for choosing metadata file

## v1.1.0 `2019-08-12`
## v1.1.0 `(2019-08-12)`

- [x] Add bug fixes in `FunctionImports` generation
- [x] Add some improvements in the `Function Imports Settings` wizard page

## v1.0.2 `2019-08-11`
## v1.0.2 `(2019-08-11)`

- [x] Add bug fix: downgrade some NuGet-packages for supporting Visual Studio 2017

## v1.0.0 `2019-08-11`
## v1.0.0 `(2019-08-11)`

- [x] Full code refactoring
- [x] Add wizard page for `OData V3` that allows to select function imports that will be generated
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.3.8.0")]
[assembly: AssemblyVersion("1.3.9.0")]
[assembly: AssemblyFileVersion("1.3.8.0")]
[assembly: NeutralResourcesLanguage("en")]

2 changes: 1 addition & 1 deletion src/Unchase.OData.ConnectedService/Provider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public Provider()
BitmapSizeOptions.FromWidthAndHeight(64, 64)
);
CreatedBy = Constants.Author;
Version = new Version(1, 3, 8, 0);
Version = new Version(1, 3, 9, 0);
Version = typeof(Provider).Assembly.GetName().Version;
MoreInfoUri = new Uri(Constants.Website);
}
Expand Down
1 change: 1 addition & 0 deletions src/Unchase.OData.ConnectedService/Wizard.cs
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ public Wizard(ConnectedServiceProviderContext context)
{
// Since ServiceConfigurationV4 is a derived type of ServiceConfiguration. So we can deserialize a ServiceConfiguration into a ServiceConfigurationV4.
var serviceConfig = this.Context.GetExtendedDesignerData<ServiceConfigurationV4>();
ConfigODataEndpointViewModel.LanguageOption = serviceConfig.LanguageOption;
ConfigODataEndpointViewModel.Endpoint = serviceConfig.Endpoint;
ConfigODataEndpointViewModel.EdmxVersion = serviceConfig.EdmxVersion;
ConfigODataEndpointViewModel.ServiceName = serviceConfig.ServiceName;
Expand Down

0 comments on commit b28a745

Please sign in to comment.