We are happy to announce that our .NET SDKs have now switched to the more stable, frequently updated and regularly maintained native HttpClient found in the System.Net.Http
Assembly.
75 posts tagged with "Improvement"
View All TagsNewtonsoft Json.NET Version Update to 10.0.3
Our CSharp .NET SDKs have been updated to use the 10.0.3 version of the Newtonsoft Json.Net utility. This comes with numerous new features, bug fixes, wider support and increased stability.
WSDL Import is Now Improved!
Improvements have been made to WSDL import by fixing minor bugs, adding new features, and improving on the existing ones in an effort to make it more compliant with the official W3C specification
AngularJS Circular Dependency Fix
We have changed the structure of the Angular SDK to break cyclic dependencies. Due to this, the following changes have been made:
- Model deserialization logic has moved out from model files.
- We have added new files
ObjectMapper.js
andModelFactory.js
to the SDK. BaseModel
is now being used to assign values to model properties (when model class is directly instantiated)BaseController
has been added to the SDK.
Please generate your SDK again to get the improved code.
Code Compliance Implemented In Angular
Since we're always working on improving our generated SDK's, today we're announcing some major work done on the Angular.js SDK.
- Angular.js generated code is now standard compliant.
- The standard we're using is John Papa's Angular1 Style Guide.
- The linter can be run from the command-line by using the command
jshint <folder-name-to-lint>
. - The configuration file for the linter will be included with the SDK from now.
Please generated your SDK again to get the standard compliant code.
Model Classes Code Improved
We've made an improvement to how model properties are now generated in the code. The generated SDK now contains both camel case-d version of the property name and the actual property name (where applicable).
Read on to find more details about the change.
Please generate your SDK again to get the improved code.
Node.js Circular Dependency Fix
We have changed the structure of the SDK to break cyclic dependencies. Due to this, the following changes have been made:
- Model deserialization logic has moved out from model classes.
- We have added new files
ObjectMapper.js
andModelFactory.js
to the sdk. - Exception handling in
BaseController
has changed to useObjectMapper
. BaseModel
is now being used to assign values to model properties (when model class is directly instantiated)BaseController
is not being exposed by the API Client now.
Please generate your SDK again to get the improved code.
Adopting AirBnb JS Style Guide and ES6 Primitives
Keeping with our tradition of Continuous Improvement, we are proud to announce a major revamp of NodeJS SDKs!
- Our code now conforms with Airbnb's JavaScript Style Guide.
- We are using ES6 classes, along with other ES6 primitives.
- You can run
npm run lint
to lint your code immediately. - We generate CI/CD files for Travis, CircleCi, Appveyor and Jenkins to run NodeJS tests.
Please generate your SDK again if you want the improved ES6 based code.
Module File in Angular SDKs
A new file, Module.js
has been added to the Angular SDKs. It defines the module of the SDK along with its dependencies.
This is not a breaking change. Everything should work as before, this is just to make it easier to specify the modules that the SDK depends upon.
Added Missing Support for Occurrence Indicators in XSD
XML Schema contains two occurrence indicators minOccurs
and maxOccurs
. The support for these was missing when we parsed any XML Schemas but has been added now.