Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cherry picks changes from TestNewRecorder branch #9

Open
wants to merge 1 commit into
base: CommonRecorderInFeature
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
8 changes: 4 additions & 4 deletions sdk/storage/storage-blob/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@azure/storage-blob",
"sdk-type": "client",
"version": "12.0.0-preview.1",
"version": "12.0.0-preview.2",
"description": "Microsoft Azure Storage SDK for JavaScript - Blob",
"main": "./dist/index.js",
"module": "./dist-esm/src/index.js",
Expand Down Expand Up @@ -78,13 +78,13 @@
"homepage": "https://github.com/Azure/azure-sdk-for-js#readme",
"sideEffects": false,
"dependencies": {
"@azure/core-http": "^1.0.0-preview.1",
"@azure/core-paging": "^1.0.0-preview.1",
"@azure/core-http": "1.0.0-preview.2",
"@azure/core-paging": "1.0.0-preview.1",
"events": "^3.0.0",
"tslib": "^1.9.3"
},
"devDependencies": {
"@azure/identity": "^1.0.0-preview.1",
"@azure/identity": "1.0.0-preview.2",
"@microsoft/api-extractor": "^7.1.5",
"@types/dotenv": "^6.1.0",
"@types/fs-extra": "~7.0.0",
Expand Down
2 changes: 1 addition & 1 deletion sdk/storage/storage-blob/src/utils/constants.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.

export const SDK_VERSION: string = "12.0.0-preview.1";
export const SDK_VERSION: string = "12.0.0-preview.2";
export const SERVICE_VERSION: string = "2018-03-28";

export const BLOCK_BLOB_MAX_UPLOAD_BLOB_BYTES: number = 256 * 1024 * 1024; // 256MB
Expand Down
6 changes: 3 additions & 3 deletions sdk/storage/storage-file/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@azure/storage-file",
"sdk-type": "client",
"version": "12.0.0-preview.1",
"version": "12.0.0-preview.2",
"description": "Microsoft Azure Storage SDK for JavaScript - File",
"main": "./dist/index.js",
"module": "./dist-esm/src/index.js",
Expand Down Expand Up @@ -78,8 +78,8 @@
"homepage": "https://github.com/Azure/azure-sdk-for-js#readme",
"sideEffects": false,
"dependencies": {
"@azure/core-http": "^1.0.0-preview.1",
"@azure/core-paging": "^1.0.0-preview.1",
"@azure/core-http": "1.0.0-preview.2",
"@azure/core-paging": "1.0.0-preview.1",
"events": "^3.0.0",
"tslib": "^1.9.3"
},
Expand Down
2 changes: 1 addition & 1 deletion sdk/storage/storage-file/src/utils/constants.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.

export const SDK_VERSION: string = "12.0.0-preview.1";
export const SDK_VERSION: string = "12.0.0-preview.2";
export const SERVICE_VERSION: string = "2018-03-28";

export const FILE_MAX_SIZE_BYTES: number = 1024 * 1024 * 1024 * 1024; // 1TB
Expand Down
2 changes: 1 addition & 1 deletion sdk/storage/storage-queue/karma.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ module.exports = function(config) {
// start these browsers
// available browser launchers: https://npmjs.org/browse/keyword/karma-launcher
// 'ChromeHeadless', 'Chrome', 'Firefox', 'Edge', 'IE'
browsers: ["ChromeHeadless"],
browsers: ["Chrome"],

// Continuous Integration mode
// if true, Karma captures browsers, runs the tests and exits
Expand Down
11 changes: 6 additions & 5 deletions sdk/storage/storage-queue/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@azure/storage-queue",
"sdk-type": "client",
"version": "12.0.0-preview.1",
"version": "12.0.0-preview.2",
"description": "Microsoft Azure Storage SDK for JavaScript - Queue",
"main": "./dist/index.js",
"module": "./dist-esm/src/index.js",
Expand Down Expand Up @@ -29,7 +29,7 @@
"clean": "rimraf dist dist-esm dist-test typings temp browser/*.js* browser/*.zip statistics.html coverage coverage-browser .nyc_output *.tgz *.log test*.xml TEST*.xml",
"extract-api": "tsc -p . && api-extractor run --local",
"format": "prettier --write --config ../../.prettierrc.json \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"",
"integration-test:browser": "karma start --single-run",
"integration-test:browser": "karma start",
"integration-test:node": "nyc mocha --require source-map-support/register --reporter mocha-multi --reporter-options spec=-,mocha-junit-reporter=- --full-trace -t 120000 --retries 2 dist-test/index.node.js",
"integration-test": "npm run integration-test:node && npm run integration-test:browser",
"lint:fix": "eslint -c ../../.eslintrc.json src test samples --ext .ts --fix",
Expand Down Expand Up @@ -75,12 +75,13 @@
"homepage": "https://github.com/Azure/azure-sdk-for-js#readme",
"sideEffects": false,
"dependencies": {
"@azure/core-http": "^1.0.0-preview.1",
"@azure/core-paging": "^1.0.0-preview.1",
"@azure/core-http": "1.0.0-preview.2",
"@azure/core-paging": "1.0.0-preview.1",
"tslib": "^1.9.3"
},
"devDependencies": {
"@azure/identity": "^1.0.0-preview.1",
"@azure/test-utils-recorder": "1.0.0",
"@azure/identity": "1.0.0-preview.2",
"@microsoft/api-extractor": "^7.1.5",
"@types/dotenv": "^6.1.0",
"@types/fs-extra": "~7.0.0",
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Loading