Our Postman exporters (both versions 1.0 and 2.0) now support collection variables to better represent requests in cases where multiple servers are involved.
56 posts tagged with "New Feature"
View All TagsGo Improvements
Our GO SDK has been revamped pertaining to multiple bug fixes and new features.
- It now supports OAuth 2.0 Bearer Token for authentication in the generated SDKs.
- It now has a base client that can be used as a single point of entry for the SDK.
- The singleton architecture for clients has been removed to ease up the use in multiple user environments.
- Numerous bug fixes and improvements.
Multiple Base URLs Now Supported in GO SDK
You can now use multiple base URLs in your API description using the new Server Configuration. This feature allows you to
- Vary the Base URL between endpoints.
- Create multiple Environments and define different Base URLs for them.
- Templatize Base URL to allow for configuration using parameters in the client.
Support for Nullable Properties Added to Transformer
A property is nullable if it allows sending null
(in case of JSON/YAML, etc.) or nil
(in case of XML) as value. Several API description formats like Open API, RAML, etc. has support for nullable properties. Transformer now also supports this property and you can convert between different formats without losing this information.
Support for Validation Keywords Added In Transformer
Several API description formats like Swagger, RAML, WSDL, WADL, etc. support various kinds of validation keywords to restrict and validate instance values based on their type. Support for these validation keywords has now been added to Transformer. You can now convert between any of these formats without losing information for these keywords.
Multiple Datetime Formats in PHP
We have now added support for multiple datetime formats in our PHP SDKs. The following formats are supported:
- RFC1123 Datetime:
Mon, 15 Jun 2009 20:45:30 GMT
- RFC3339 Datetime:
2016-03-13T12:52:32.123Z
- Unix Timestamp:
1480809600
Array Serialization Formats in Java and Android
Multiple formats are now supported for Array serialisation in form and query parameters. Formats supported include UnIndexed
, Indexed
, Plain
, CSV
, PSV
, TSV
.
This settings can be set using our API Blueprint CodeGen setting extension named ARRAYSERIALIZATION
.
Multiple Datetime Formats in Java and Android
We have now added support for multiple datetime formats in our Java and Android SDKs. The following formats are supported:
- RFC1123 Datetime:
Mon, 15 Jun 2009 20:45:30 GMT
- RFC3339 Datetime:
2016-03-13T12:52:32.123Z
- Unix Timestamp:
1480809600
Support for Postman v.2.1 and Other Postman Updates Added to Transformer
Postman recently added a new export format i.e. Postman Collection Format v2.1. Along with this, they also improved and added new authentication mechanisms in the older versions (1.0, 2.0). Our parsers have been updated to accommodate all these changes.
WADL Cross References Support Added
WADL components support references to other components using Cross Referencing as per the specification at https://www.w3.org/Submission/wadl/#x3-60002.1 . The support was this was missing from our parsers previously and has now been added! Please transform your files again to get the latest changes.