github Azure/azure-sdk-for-js @azure/storage-queue_12.0.0-preview.4

latest releases: @azure-tools/test-recorder_3.3.0, @azure/template_1.0.12-beta.3768426, @azure/service-bus_7.10.0-beta.1...
pre-release4 years ago

2019.10 12.0.0-preview.4

  • Library tries to load the proxy settings from the environment variables like HTTP_PROXY if the proxy settings are not provided when clients like QueueServiceClient or QueueClient are instantiated.
  • Added development connection string support to connect to the storage emulator Azurite - Extension for VS Code
    • Development Connection String
      • DefaultEndpointsProtocol=http;AccountName=devstoreaccount1;AccountKey=Eby8vdM02xNOcqFlqUwJPLlmEtlCDXJ1OUzFT50uSRZ6IFsuFq2UVErCz4I6tq/K1SZFPTOtr/KBHBeksoGMGw==; QueueEndpoint=http://127.0.0.1:10001/devstoreaccount1;
    • Shorthand notation is also supported
      • UseDevelopmentStorage=true (or UseDevelopmentStorage=true;DevelopmentStorageProxyUri=http://myProxyUri)
  • Added name properties on all the clients for convenience.
    • accountName is added to MessageIdClient, MessagesClient, QueueClient and QueueServiceClient.
    • queueName is added to MessageIdClient, MessagesClient and QueueClient.
    • messageId is added to MessageIdClient.
  • [Breaking] Models.StorageServiceProperties is renamed to Models.QueueServiceProperties.
  • [Breaking] Models.StorageServiceStats is renamed to Models.QueueServiceStatistics.
  • [Breaking] Replace string with boolean flag to specify dataset to include when listing queues.
    Before this change the option is specified as
    queueServiceClient.listShares({
      include: "metadata"
    });
    After this change:
    queueServiceClient.listShares({
      includeMetadata: true
    });

Don't miss a new azure-sdk-for-js release

NewReleases is sending notifications on new releases.