Skip to content

Commit 69448ed

Browse files
authored
Container registry/blob push pull support (Azure#20529)
### Packages impacted by this PR - `@azure/container-registry` ### Issues associated with this PR - Fixes Azure#20512 ### Are there test cases added in this PR? _(If not, why?)_ Yes. ### Checklists - [x] Added impacted package name to the issue description - [ ] Does this PR needs any fixes in the SDK Generator?** _(If so, create an Issue in the [Autorest/typescript](https://github.com/Azure/autorest.typescript) repository and link it here)_ - [x] Added a changelog (if necessary)
1 parent fc453be commit 69448ed

35 files changed

+7191
-849
lines changed

sdk/containerregistry/container-registry/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,12 @@
1010

1111
### Other Changes
1212

13+
## 1.1.0-beta.1 (2022-04-05)
14+
15+
### Features Added
16+
17+
- Add a new `ContainerRegistryBlobClient` to allow upload and download of OCI blobs and manifests. [PR #20529](https://github.com/Azure/azure-sdk-for-js/pull/20529)
18+
1319
## 1.0.0 (2022-01-11)
1420

1521
This release marks the general availability release of Azure Container Registry client SDK library.

sdk/containerregistry/container-registry/package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@azure/container-registry",
3-
"version": "1.0.1",
3+
"version": "1.1.0-beta.1",
44
"description": "An isomorphic client library for the Azure Container Registry service.",
55
"sdk-type": "client",
66
"main": "dist/index.js",
@@ -25,27 +25,27 @@
2525
},
2626
"scripts": {
2727
"audit": "node ../../../common/scripts/rush-audit.js && rimraf node_modules package-lock.json && npm i --package-lock-only 2>&1 && npm audit",
28-
"build:browser": "tsc -p . && dev-tool run bundle",
29-
"build:node": "tsc -p . && dev-tool run bundle",
28+
"build:browser": "echo \"Browser is not supported\" && exit 0",
29+
"build:node": "tsc -p . && dev-tool run bundle --browser-test=false",
3030
"build:samples": "echo Obsolete.",
31-
"build:test": "tsc -p . && dev-tool run bundle",
32-
"build": "npm run clean && tsc -p . && dev-tool run bundle && api-extractor run --local",
31+
"build:test": "tsc -p . && dev-tool run bundle --browser-test=false",
32+
"build": "npm run clean && tsc -p . && dev-tool run bundle --browser-test=false && api-extractor run --local",
3333
"check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"",
3434
"clean": "rimraf dist dist-* temp types *.tgz *.log",
3535
"execute:samples": "dev-tool samples run samples-dev",
3636
"extract-api": "tsc -p . && api-extractor run --local",
3737
"format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"",
3838
"generate:client": "autorest --typescript ./swagger/README.md",
39-
"integration-test:browser": "dev-tool run test:browser",
39+
"integration-test:browser": "echo skipped",
4040
"integration-test:node": "dev-tool run test:node-js-input -- --timeout 5000000 --full-trace \"dist-esm/test/**/*.spec.js\"",
4141
"integration-test": "npm run integration-test:node && npm run integration-test:browser",
4242
"lint:fix": "eslint package.json api-extractor.json src test --ext .ts --fix --fix-type [problem,suggestion]",
4343
"lint": "eslint package.json api-extractor.json src test --ext .ts",
4444
"pack": "npm pack 2>&1",
45-
"test:browser": "npm run build:test && npm run unit-test:browser && npm run integration-test:browser",
45+
"test:browser": "echo skipped",
4646
"test:node": "npm run build:test && npm run unit-test:node && npm run integration-test:node",
4747
"test": "npm run build:test && npm run unit-test && npm run integration-test",
48-
"unit-test:browser": "dev-tool run test:browser",
48+
"unit-test:browser": "echo skipped",
4949
"unit-test:node": "dev-tool run test:node-ts-input -- --timeout 1200000 --full-trace \"test/**/*.spec.ts\"",
5050
"unit-test": "npm run unit-test:node && npm run unit-test:browser"
5151
},
@@ -76,7 +76,7 @@
7676
"dependencies": {
7777
"@azure/core-auth": "^1.3.0",
7878
"@azure/core-client": "^1.0.0",
79-
"@azure/core-rest-pipeline": "^1.1.0",
79+
"@azure/core-rest-pipeline": "^1.8.0",
8080
"@azure/core-paging": "^1.1.1",
8181
"@azure/core-tracing": "1.0.0-preview.13",
8282
"@azure/logger": "^1.0.0",

0 commit comments

Comments
 (0)