Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
63b9fd6
Enhancement to x-ms-parameterized-host extension
amarzavery Apr 8, 2016
d8110cf
positionInOperation defaults to first
amarzavery Apr 9, 2016
1ac04c3
Merge branch 'master' of github.com:Azure/autorest into optional
amarzavery Apr 11, 2016
3dd9e99
Merge branch 'master' of github.com:Azure/autorest into optional
amarzavery Apr 15, 2016
f82044b
Merge branch 'master' of github.com:Azure/autorest into optional
amarzavery Apr 26, 2016
7750284
fixed setting default value for a complex object containing constant …
amarzavery Apr 28, 2016
845fc5b
result of executing gulp regenerate:expected
amarzavery Apr 28, 2016
f0dff3d
Fixed fxcop warnings
amarzavery Apr 28, 2016
5a032ae
remove null check validation for unixtime as they are treated as long…
amarzavery Apr 28, 2016
2f82af1
unixTime in node.js
amarzavery Apr 29, 2016
ff64ad6
Merge branch 'master' of github.com:Azure/autorest into optional
amarzavery Apr 29, 2016
54cfaac
modification
amarzavery Apr 29, 2016
63fee4f
UnixTime tests
amarzavery Apr 29, 2016
5e85f67
FxCop warnings
amarzavery Apr 29, 2016
55af5be
Redesigned the structure of AzureEnvironment and updated the environm…
amarzavery May 3, 2016
2a447e5
Merge branch 'master' of github.com:Azure/autorest into optional
amarzavery May 3, 2016
88e3679
getting rid of underscore.js as a dependency from ms-rest-azure
amarzavery May 3, 2016
cb980a4
Merge branch 'master' of github.com:Azure/autorest into optional
amarzavery May 11, 2016
4f7dc49
updated node.js clientruntime version to 1.13.0 & 1.3.1 for ms-rest-a…
amarzavery May 11, 2016
7f90ee0
Adding release notes for 0.16.0 release
tbombach May 11, 2016
ca68a08
updated activeDirectoryEndpointUrl with slashes
amarzavery May 11, 2016
7c948e1
Merge branch 'release' of github.com:Azure/autorest into optional
amarzavery May 11, 2016
12ac648
Use 1.0.0-SNAPSHOT for Java & Azure.Java
jianghaolu May 11, 2016
af4d522
fix env tests
amarzavery May 11, 2016
2777e8f
Merge pull request #1031 from jianghaolu/release
tbombach May 12, 2016
a76ce51
Merge pull request #1029 from amarzavery/optional
tbombach May 12, 2016
38aa357
Merge branch 'release' of https://github.com/Azure/autorest into release
tbombach May 12, 2016
fe3e5a4
Fix for a null reference exception in JavaCodeNamer when the namespac…
tbombach May 12, 2016
09ffae3
Merge pull request #1032 from tbombach/package_namespace_null
tbombach May 12, 2016
6196277
Updating the dockerfile to use AutoRest 0.16.0
tbombach May 12, 2016
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public class AzureJavaCodeGenerator : JavaCodeGenerator
{
private readonly AzureJavaCodeNamer _namer;

private const string ClientRuntimePackage = "com.microsoft.rest:azure-client-runtime:0.0.1-SNAPSHOT";
private const string ClientRuntimePackage = "com.microsoft.rest:azure-client-runtime:1.0.0-SNAPSHOT from snapshot repo http://adxsnapshots.azurewebsites.net/";
private const string _packageInfoFileName = "package-info.java";

// page extensions class dictionary.
Expand Down
2 changes: 1 addition & 1 deletion AutoRest/Generators/Java/Java/JavaCodeGenerator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ namespace Microsoft.Rest.Generator.Java
{
public class JavaCodeGenerator : CodeGenerator
{
private const string ClientRuntimePackage = "com.microsoft.rest:client-runtime:0.0.1-SNAPSHOT";
private const string ClientRuntimePackage = "com.microsoft.rest:client-runtime:1.0.0-SNAPSHOT from snapshot repo http://adxsnapshots.azurewebsites.net/";
private const string _packageInfoFileName = "package-info.java";

public JavaCodeNamer Namer { get; private set; }
Expand Down
2 changes: 1 addition & 1 deletion AutoRest/Generators/Java/Java/JavaCodeNamer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public JavaCodeNamer(string nameSpace)
{
// List retrieved from
// http://docs.oracle.com/javase/tutorial/java/nutsandbolts/_keywords.html
_package = nameSpace.ToLower(CultureInfo.InvariantCulture);
_package = nameSpace != null ? nameSpace.ToLower(CultureInfo.InvariantCulture) : string.Empty;
new HashSet<string>
{
"abstract", "assert", "boolean", "break", "byte",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ namespace Microsoft.Rest.Generator.Azure.NodeJS
{
public class AzureNodeJSCodeGenerator : NodeJSCodeGenerator
{
private const string ClientRuntimePackage = "ms-rest-azure version 1.13.0";
private const string ClientRuntimePackage = "ms-rest-azure version 1.13.1";

// List of models with paging extensions.
private IList<PageTemplateModel> pageModels;
Expand Down
14 changes: 12 additions & 2 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
## VNext (not released yet)
* Fix ruby require module_definition if namespace is specified. See [#831](https://github.com/Azure/autorest/issues/831)
##2016.05.11 Version 0.16.0
* Fixed ruby require module_definition if namespace is specified. See [#831](https://github.com/Azure/autorest/issues/831)
* Added an exit code for AutoRest.exe to indicate success or error
* Added support for Unix time formatted dates with the `'unix-time'` format (#909)
* Serializing/deserializing Unix time formatted dates in C# and NodeJS to DateTime (C#) and Date (NodeJS)
* Added support for Base64Url formatted values with the `'base64url'` format (#805)
* Serializing/deserializing Base64Url formatted values in C# and NodeJS to byte\[\] (C#) and Buffer (NodeJS)
* Fixed issue where the contents of the output file for SingleFileGeneration are appended instead of replaced (#667)
* Made generated parameter group documentation more accurate for `'x-ms-parameter-grouping'` extension (#634)
* UserAgent header in ServiceClient now includes more detailed information (#583)
* Added the ability to specify a name in generated code for query parameters, entity headers, etc. with the [`'x-ms-client-name'`](https://github.com/Azure/autorest/blob/master/Documentation/swagger-extensions.md#x-ms-client-name)
* Bug fixes in all code generators (#722, #742, #745, #746, #819, #820, #824, #825, #889, #896, #897, #900, #915, #923, #934, #944, #943)

##2016.03.04 Version 0.15.0
* Added Java code generator!
Expand Down
8 changes: 4 additions & 4 deletions ClientRuntimes/NodeJS/ms-rest-azure/lib/azureEnvironment.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ var supportedEnvironments = {
sqlManagementEndpointUrl: 'https://management.core.windows.net:8443/',
sqlServerHostnameSuffix: '.database.windows.net',
galleryEndpointUrl: 'https://gallery.azure.com/',
activeDirectoryEndpointUrl: 'https://login.microsoftonline.com',
activeDirectoryEndpointUrl: 'https://login.microsoftonline.com/',
activeDirectoryResourceId: 'https://management.core.windows.net/',
activeDirectoryGraphResourceId: 'https://graph.windows.net/',
activeDirectoryGraphApiVersion: '2013-04-05',
Expand All @@ -73,7 +73,7 @@ var supportedEnvironments = {
sqlManagementEndpointUrl: 'https://management.core.chinacloudapi.cn:8443/',
sqlServerHostnameSuffix: '.database.chinacloudapi.cn',
galleryEndpointUrl: 'https://gallery.chinacloudapi.cn/',
activeDirectoryEndpointUrl: 'https://login.chinacloudapi.cn',
activeDirectoryEndpointUrl: 'https://login.chinacloudapi.cn/',
activeDirectoryResourceId: 'https://management.core.chinacloudapi.cn/',
activeDirectoryGraphResourceId: 'https://graph.chinacloudapi.cn/',
activeDirectoryGraphApiVersion: '2013-04-05',
Expand All @@ -92,7 +92,7 @@ var supportedEnvironments = {
sqlManagementEndpointUrl: 'https://management.core.usgovcloudapi.net:8443/',
sqlServerHostnameSuffix: '.database.usgovcloudapi.net',
galleryEndpointUrl: 'https://gallery.usgovcloudapi.net/',
activeDirectoryEndpointUrl: 'https://login.microsoftonline.com',
activeDirectoryEndpointUrl: 'https://login.microsoftonline.com/',
activeDirectoryResourceId: 'https://management.core.usgovcloudapi.net/',
activeDirectoryGraphResourceId: 'https://graph.windows.net/',
activeDirectoryGraphApiVersion: '2013-04-05',
Expand All @@ -111,7 +111,7 @@ var supportedEnvironments = {
sqlManagementEndpointUrl: 'https://management.core.cloudapi.de:8443/',
sqlServerHostnameSuffix: '.database.cloudapi.de',
galleryEndpointUrl: 'https://gallery.cloudapi.de/',
activeDirectoryEndpointUrl: 'https://login.microsoftonline.de',
activeDirectoryEndpointUrl: 'https://login.microsoftonline.de/',
activeDirectoryResourceId: 'https://management.core.cloudapi.de/',
activeDirectoryGraphResourceId: 'https://graph.cloudapi.de/',
activeDirectoryGraphApiVersion: '2013-04-05',
Expand Down
2 changes: 1 addition & 1 deletion ClientRuntimes/NodeJS/ms-rest-azure/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"email": "[email protected]",
"url": "https://github.com/Azure/AutoRest"
},
"version": "1.13.0",
"version": "1.13.1",
"description": "Client Runtime for Node.js Azure client libraries generated using AutoRest",
"tags": [ "node", "microsoft", "autorest", "azure", "clientruntime" ],
"keywords": [ "node", "microsoft", "autorest", "azure", "clientruntime" ],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ describe('AzureEnvironment', function() {
it('should show the details of Azure Production environment correctly', function(done) {
var tempEnv = msRestAzure.AzureEnvironment.Azure;
tempEnv.name.should.equal('Azure');
tempEnv.activeDirectoryEndpointUrl.should.equal('https://login.microsoftonline.com');
tempEnv.activeDirectoryEndpointUrl.should.equal('https://login.microsoftonline.com/');
tempEnv.activeDirectoryResourceId.should.equal('https://management.core.windows.net/');
tempEnv.managementEndpointUrl.should.equal('https://management.core.windows.net');
tempEnv.resourceManagerEndpointUrl.should.equal('https://management.azure.com/');
Expand All @@ -26,7 +26,7 @@ describe('AzureEnvironment', function() {
it('should show the details of Azure China environment correctly', function(done) {
var tempEnv = msRestAzure.AzureEnvironment.AzureChina;
tempEnv.name.should.equal('AzureChina');
tempEnv.activeDirectoryEndpointUrl.should.equal('https://login.chinacloudapi.cn');
tempEnv.activeDirectoryEndpointUrl.should.equal('https://login.chinacloudapi.cn/');
tempEnv.activeDirectoryResourceId.should.equal('https://management.core.chinacloudapi.cn/');
tempEnv.managementEndpointUrl.should.equal('https://management.core.chinacloudapi.cn');
tempEnv.resourceManagerEndpointUrl.should.equal('https://management.chinacloudapi.cn');
Expand All @@ -38,7 +38,7 @@ describe('AzureEnvironment', function() {
it('should show the details of Azure USGovernment environment correctly', function(done) {
var tempEnv = msRestAzure.AzureEnvironment.AzureUSGovernment;
tempEnv.name.should.equal('AzureUSGovernment');
tempEnv.activeDirectoryEndpointUrl.should.equal('https://login.microsoftonline.com');
tempEnv.activeDirectoryEndpointUrl.should.equal('https://login.microsoftonline.com/');
tempEnv.activeDirectoryResourceId.should.equal('https://management.core.usgovcloudapi.net/');
tempEnv.managementEndpointUrl.should.equal('https://management.core.usgovcloudapi.net');
tempEnv.resourceManagerEndpointUrl.should.equal('https://management.usgovcloudapi.net');
Expand All @@ -50,7 +50,7 @@ describe('AzureEnvironment', function() {
it('should show the details of Azure GermanCloud environment correctly', function(done) {
var tempEnv = msRestAzure.AzureEnvironment.AzureGermanCloud;
tempEnv.name.should.equal('AzureGermanCloud');
tempEnv.activeDirectoryEndpointUrl.should.equal('https://login.microsoftonline.de');
tempEnv.activeDirectoryEndpointUrl.should.equal('https://login.microsoftonline.de/');
tempEnv.activeDirectoryResourceId.should.equal('https://management.core.cloudapi.de/');
tempEnv.managementEndpointUrl.should.equal('https://management.core.cloudapi.de');
tempEnv.resourceManagerEndpointUrl.should.equal('https://management.microsoftazure.de');
Expand All @@ -65,13 +65,13 @@ describe('AzureEnvironment', function() {
portalUrl: 'http://go.microsoft.com/fwlink/?LinkId=254433',
managementEndpointUrl: 'https://management.core.windows.net',
resourceManagerEndpointUrl: 'https://management.azure.com/',
activeDirectoryEndpointUrl: 'https://login.microsoftonline.com',
activeDirectoryEndpointUrl: 'https://login.microsoftonline.com/',
activeDirectoryResourceId: 'https://management.core.windows.net/'
};
var tempEnv = msRestAzure.AzureEnvironment;
var dfood = tempEnv.add(df);
dfood.name.should.equal('Dogfood');
dfood.activeDirectoryEndpointUrl.should.equal('https://login.microsoftonline.com');
dfood.activeDirectoryEndpointUrl.should.equal('https://login.microsoftonline.com/');
dfood.activeDirectoryResourceId.should.equal('https://management.core.windows.net/');
dfood.managementEndpointUrl.should.equal('https://management.core.windows.net');
dfood.resourceManagerEndpointUrl.should.equal('https://management.azure.com/');
Expand All @@ -80,7 +80,7 @@ describe('AzureEnvironment', function() {

//Verify that the environment properly got added to the prototype
tempEnv.Dogfood.name.should.equal('Dogfood');
tempEnv.Dogfood.activeDirectoryEndpointUrl.should.equal('https://login.microsoftonline.com');
tempEnv.Dogfood.activeDirectoryEndpointUrl.should.equal('https://login.microsoftonline.com/');
tempEnv.Dogfood.activeDirectoryResourceId.should.equal('https://management.core.windows.net/');
tempEnv.Dogfood.managementEndpointUrl.should.equal('https://management.core.windows.net');
tempEnv.Dogfood.resourceManagerEndpointUrl.should.equal('https://management.azure.com/');
Expand Down
4 changes: 2 additions & 2 deletions Tools/dockerfiles/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ RUN apt-get -qqy update && \
RUN bash -c "\
mkdir /opt/autorest && \
cd /opt/autorest && \
wget https://github.com/Azure/autorest/releases/download/AutoRest-0.15.0/autorest.0.15.0.zip && \
unzip autorest.0.15.0.zip"
wget https://github.com/Azure/autorest/releases/download/AutoRest-0.16.0/autorest.0.16.0.zip && \
unzip autorest.0.16.0.zip"

ADD autorest /opt/autorest/autorest

Expand Down