Skip to content

Commit 5b7c738

Browse files
author
awstools
committed
Publish v1.0.0-alpha.6
1 parent b5579c1 commit 5b7c738

File tree

9 files changed

+74
-13
lines changed

9 files changed

+74
-13
lines changed
+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Change Log
2+
3+
All notable changes to this project will be documented in this file.
4+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5+
6+
# 1.0.0-alpha.1 (2020-01-15)
7+
8+
9+
### Features
10+
11+
* add client-s3-control ([#729](https://github.com/aws/aws-sdk-js-v3/issues/729)) ([43794db](https://github.com/aws/aws-sdk-js-v3/commit/43794db))

clients/client-s3-control/package.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@aws-sdk/client-s3-control",
33
"description": "@aws-sdk/client-s3-control client",
4-
"version": "1.0.0-alpha.0",
4+
"version": "1.0.0-alpha.1",
55
"scripts": {
66
"clean": "npm run remove-definitions && npm run remove-dist && npm run remove-js && npm run remove-maps",
77
"build-documentation": "npm run clean && typedoc ./",
@@ -25,7 +25,6 @@
2525
},
2626
"sideEffects": false,
2727
"dependencies": {
28-
"tslib": "^1.8.0",
2928
"@aws-crypto/sha256-browser": "^0.1.0-preview.1",
3029
"@aws-sdk/config-resolver": "^1.0.0-alpha.1",
3130
"@aws-sdk/credential-provider-node": "^1.0.0-alpha.0",
@@ -57,15 +56,16 @@
5756
"@aws-sdk/util-utf8-browser": "^1.0.0-alpha.1",
5857
"@aws-sdk/util-utf8-node": "^1.0.0-alpha.1",
5958
"@aws-sdk/xml-builder": "^1.0.0-alpha.0",
60-
"pixl-xml": "^1.0.13"
59+
"pixl-xml": "^1.0.13",
60+
"tslib": "^1.8.0"
6161
},
6262
"devDependencies": {
63-
"rimraf": "^3.0.0",
64-
"typedoc": "^0.15.0",
65-
"typescript": "^3.6.3",
6663
"@types/node": "^12.7.5",
6764
"@types/pixl-xml": "^1.0.1",
68-
"tslib": "^1.8.0"
65+
"rimraf": "^3.0.0",
66+
"tslib": "^1.8.0",
67+
"typedoc": "^0.15.0",
68+
"typescript": "^3.6.3"
6969
},
7070
"engines": {
7171
"node": ">=8.0.0"

clients/client-s3/CHANGELOG.md

+15
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,21 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# 1.0.0-alpha.2 (2020-01-15)
7+
8+
9+
10+
# 1.0.0-alpha.5 (2020-01-14)
11+
12+
13+
### Features
14+
15+
* add rest-xml clients ([#728](https://github.com/aws/aws-sdk-js-v3/issues/728)) ([8b4efe5](https://github.com/aws/aws-sdk-js-v3/commit/8b4efe5))
16+
17+
18+
19+
20+
621
# 1.0.0-alpha.1 (2020-01-14)
722

823

clients/client-s3/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@aws-sdk/client-s3",
33
"description": "@aws-sdk/client-s3 client",
4-
"version": "1.0.0-alpha.1",
4+
"version": "1.0.0-alpha.2",
55
"scripts": {
66
"clean": "npm run remove-definitions && npm run remove-dist && npm run remove-js && npm run remove-maps",
77
"build-documentation": "npm run clean && typedoc ./",
@@ -41,7 +41,7 @@
4141
"@aws-sdk/middleware-host-header": "^1.0.0-alpha.0",
4242
"@aws-sdk/middleware-location-constraint": "^1.0.0-alpha.0",
4343
"@aws-sdk/middleware-retry": "^1.0.0-alpha.1",
44-
"@aws-sdk/middleware-sdk-s3": "^1.0.0-alpha.0",
44+
"@aws-sdk/middleware-sdk-s3": "^1.0.0-alpha.3",
4545
"@aws-sdk/middleware-serde": "^1.0.0-alpha.1",
4646
"@aws-sdk/middleware-signing": "^1.0.0-alpha.0",
4747
"@aws-sdk/middleware-ssec": "^1.0.0-alpha.0",

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "aws-sdk-js-v3",
33
"private": true,
4-
"version": "1.0.0-alpha.5",
4+
"version": "1.0.0-alpha.6",
55
"description": "AWS SDK for JavaScript from the future",
66
"main": "index.js",
77
"scripts": {
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
11
# Change Log
22

33
All notable changes to this project will be documented in this file.
4-
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
4+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5+
6+
# 1.0.0-alpha.1 (2020-01-15)
7+
8+
9+
### Features
10+
11+
* add s3 control middleware ([#723](https://github.com/aws/aws-sdk-js-v3/issues/723)) ([aca1bc0](https://github.com/aws/aws-sdk-js-v3/commit/aca1bc0))

packages/middleware-sdk-s3-control/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@aws-sdk/middleware-sdk-s3-control",
3-
"version": "1.0.0-alpha.0",
3+
"version": "1.0.0-alpha.1",
44
"scripts": {
55
"prepublishOnly": "tsc",
66
"pretest": "tsc -p tsconfig.test.json",

packages/middleware-sdk-s3/CHANGELOG.md

+28
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,34 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# 1.0.0-alpha.3 (2020-01-15)
7+
8+
9+
10+
# 0.9.0 (2020-01-09)
11+
12+
13+
### Bug Fixes
14+
15+
* middleware name and tags ([#486](https://github.com/aws/aws-sdk-js-v3/issues/486)) ([8a3bcce](https://github.com/aws/aws-sdk-js-v3/commit/8a3bcce))
16+
17+
18+
19+
# 0.6.0 (2019-10-30)
20+
21+
22+
23+
# 0.3.0 (2019-09-09)
24+
25+
26+
### Features
27+
28+
* **s3:** throw error when bucket name contains "/" ([#314](https://github.com/aws/aws-sdk-js-v3/issues/314)) ([a610e2c](https://github.com/aws/aws-sdk-js-v3/commit/a610e2c))
29+
30+
31+
32+
33+
634
# 1.0.0-alpha.2 (2020-01-09)
735

836

packages/middleware-sdk-s3/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@aws-sdk/middleware-sdk-s3",
3-
"version": "1.0.0-alpha.2",
3+
"version": "1.0.0-alpha.3",
44
"scripts": {
55
"prepublishOnly": "tsc",
66
"pretest": "tsc -p tsconfig.test.json",

0 commit comments

Comments
 (0)