Skip to content

Commit

Permalink
chore: Prep v6.0.1 release (#12538)
Browse files Browse the repository at this point in the history
  • Loading branch information
jimblanc authored Nov 9, 2023
2 parents 36de0bb + 0bf1ad7 commit ff4e8d7
Show file tree
Hide file tree
Showing 22 changed files with 178 additions and 165 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"unlink-all": "lerna exec --no-bail --parallel -- yarn unlink; exit 0",
"publish:preid": "./scripts/preid-env-vars-exist.sh && lerna publish --canary --force-publish --dist-tag=${PREID_PREFIX} --preid=${PREID_PREFIX}${PREID_HASH_SUFFIX} --yes",
"publish:main": "lerna publish --canary --force-publish --dist-tag=unstable --preid=unstable${PREID_HASH_SUFFIX} --yes",
"publish:release": "lerna publish --conventional-commits --dist-tag=v6 --message 'chore(release): Publish [ci skip]' --yes",
"publish:release": "lerna publish from-package --dist-tag=v6 --message 'chore(release): Publish [ci skip]' --yes",
"publish:v5-stable": "lerna publish --conventional-commits --yes --dist-tag=stable-5 --message 'chore(release): Publish [ci skip]' --no-verify-access",
"publish:verdaccio": "lerna publish --canary --force-publish --no-push --dist-tag=unstable --preid=unstable --yes",
"ts-coverage": "lerna run ts-coverage",
Expand Down
8 changes: 5 additions & 3 deletions packages/adapter-nextjs/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"author": "Amazon Web Services",
"name": "@aws-amplify/adapter-nextjs",
"version": "1.0.0",
"version": "1.0.1",
"description": "The adapter for the supporting of using Amplify APIs in Next.js.",
"peerDependencies": {
"aws-amplify": "^6.0.0",
Expand All @@ -16,7 +16,7 @@
"@types/node": "^20.3.1",
"@types/react": "^18.2.13",
"@types/react-dom": "^18.2.6",
"aws-amplify": "6.0.0",
"aws-amplify": "6.0.1",
"jest-fetch-mock": "3.0.3",
"next": ">= 13.5.0 < 15.0.0",
"rollup": "3.29.4",
Expand Down Expand Up @@ -89,7 +89,9 @@
},
"tsConfig": {
"allowJs": true,
"types": ["@types/jest"]
"types": [
"@types/jest"
]
}
}
},
Expand Down
12 changes: 6 additions & 6 deletions packages/analytics/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aws-amplify/analytics",
"version": "7.0.0",
"version": "7.0.1",
"description": "Analytics category of aws-amplify",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.mjs",
Expand Down Expand Up @@ -94,18 +94,18 @@
"personalize"
],
"dependencies": {
"tslib": "^2.5.0",
"@aws-sdk/client-kinesis": "3.398.0",
"@aws-sdk/client-firehose": "3.398.0",
"@aws-sdk/client-kinesis": "3.398.0",
"@aws-sdk/client-personalize-events": "3.398.0",
"@smithy/util-utf8": "2.0.0"
"@smithy/util-utf8": "2.0.0",
"tslib": "^2.5.0"
},
"peerDependencies": {
"@aws-amplify/core": "^6.0.0"
},
"devDependencies": {
"@aws-amplify/core": "6.0.0",
"@aws-amplify/react-native": "^1.0.0",
"@aws-amplify/core": "6.0.1",
"@aws-amplify/react-native": "1.0.1",
"@aws-sdk/types": "3.398.0",
"@rollup/plugin-typescript": "11.1.5",
"rollup": "3.29.4",
Expand Down
178 changes: 91 additions & 87 deletions packages/api-graphql/package.json
Original file line number Diff line number Diff line change
@@ -1,92 +1,94 @@
{
"name": "@aws-amplify/api-graphql",
"version": "4.0.0",
"description": "Api-graphql category of aws-amplify",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.mjs",
"typings": "./dist/esm/index.d.ts",
"react-native": "./src/index.ts",
"sideEffects": [
"./dist/cjs/GraphQLAPI.js",
"./dist/esm/GraphQLAPI.mjs"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "npm run lint && jest -w 1 --coverage",
"test:watch": "tslint 'src/**/*.ts' && jest -w 1 --watch",
"build-with-test": "npm test && npm build",
"build:umd": "webpack && webpack --config ./webpack.config.dev.js",
"build:esm-cjs": "rollup -c rollup.config.mjs",
"build:cjs:watch": "rimraf dist/cjs && tsc -m commonjs --outDir dist/cjs --watch",
"build:esm:watch": "rimraf dist/esm && tsc -m esnext --outDir dist/esm --watch",
"build": "npm run clean && npm run build:esm-cjs && npm run build:umd",
"clean": "npm run clean:size && rimraf dist lib lib-esm",
"clean:size": "rimraf dual-publish-tmp tmp*",
"format": "echo \"Not implemented\"",
"lint": "tslint 'src/**/*.ts' && npm run ts-coverage",
"ts-coverage": "typescript-coverage-report -p ./tsconfig.json -t 70.0"
},
"exports": {
".": {
"types": "./dist/esm/index.d.ts",
"import": "./dist/esm/index.mjs",
"require": "./dist/cjs/index.js",
"react-native": "./src/index.ts"
"name": "@aws-amplify/api-graphql",
"version": "4.0.1",
"description": "Api-graphql category of aws-amplify",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.mjs",
"typings": "./dist/esm/index.d.ts",
"react-native": "./src/index.ts",
"sideEffects": [
"./dist/cjs/GraphQLAPI.js",
"./dist/esm/GraphQLAPI.mjs"
],
"publishConfig": {
"access": "public"
},
"./internals": {
"types": "./dist/esm/internals/index.d.ts",
"import": "./dist/esm/internals/index.mjs",
"require": "./dist/cjs/internals/index.js",
"react-native": "./src/internals/index.ts"
"scripts": {
"test": "npm run lint && jest -w 1 --coverage",
"test:watch": "tslint 'src/**/*.ts' && jest -w 1 --watch",
"build-with-test": "npm test && npm build",
"build:umd": "webpack && webpack --config ./webpack.config.dev.js",
"build:esm-cjs": "rollup -c rollup.config.mjs",
"build:cjs:watch": "rimraf dist/cjs && tsc -m commonjs --outDir dist/cjs --watch",
"build:esm:watch": "rimraf dist/esm && tsc -m esnext --outDir dist/esm --watch",
"build": "npm run clean && npm run build:esm-cjs && npm run build:umd",
"clean": "npm run clean:size && rimraf dist lib lib-esm",
"clean:size": "rimraf dual-publish-tmp tmp*",
"format": "echo \"Not implemented\"",
"lint": "tslint 'src/**/*.ts' && npm run ts-coverage",
"ts-coverage": "typescript-coverage-report -p ./tsconfig.json -t 70.0"
},
"./package.json": "./package.json"
},
"typesVersions": {
">=4.2": {
"internals": [
"./dist/esm/internals/index.d.ts"
]
}
},
"repository": {
"type": "git",
"url": "https://github.com/aws-amplify/amplify-js.git"
},
"author": "Amazon Web Services",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/aws/aws-amplify/issues"
},
"homepage": "https://aws-amplify.github.io/",
"devDependencies": {
"@rollup/plugin-typescript": "11.1.5",
"rollup": "3.29.4"
},
"files": [
"dist/cjs",
"dist/esm",
"src",
"internals"
],
"dependencies": {
"@aws-amplify/api-rest": "4.0.0",
"@aws-amplify/auth": "6.0.0",
"@aws-amplify/core": "6.0.0",
"@aws-sdk/types": "3.387.0",
"graphql": "15.8.0",
"tslib": "^2.5.0",
"rxjs": "^7.8.1"
},
"size-limit": [
{
"name": "API (GraphQL client)",
"path": "./dist/esm/index.mjs",
"import": "{ Amplify, GraphQLAPI }",
"limit": "91.7 kB"
}
],
"exports": {
".": {
"types": "./dist/esm/index.d.ts",
"import": "./dist/esm/index.mjs",
"require": "./dist/cjs/index.js",
"react-native": "./src/index.ts"
},
"./internals": {
"types": "./dist/esm/internals/index.d.ts",
"import": "./dist/esm/internals/index.mjs",
"require": "./dist/cjs/internals/index.js",
"react-native": "./src/internals/index.ts"
},
"./package.json": "./package.json"
},
"typesVersions": {
">=4.2": {
"internals": [
"./dist/esm/internals/index.d.ts"
]
}
},
"repository": {
"type": "git",
"url": "https://github.com/aws-amplify/amplify-js.git"
},
"author": "Amazon Web Services",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/aws/aws-amplify/issues"
},
"homepage": "https://aws-amplify.github.io/",
"peerDependencies": {
"@aws-amplify/core": "^6.0.0"
},
"devDependencies": {
"@aws-amplify/core": "6.0.1",
"@rollup/plugin-typescript": "11.1.5",
"rollup": "3.29.4"
},
"files": [
"dist/cjs",
"dist/esm",
"src",
"internals"
],
"dependencies": {
"@aws-amplify/api-rest": "4.0.1",
"@aws-sdk/types": "3.387.0",
"graphql": "15.8.0",
"rxjs": "^7.8.1",
"tslib": "^2.5.0"
},
"size-limit": [
{
"name": "API (GraphQL client)",
"path": "./dist/esm/index.mjs",
"import": "{ Amplify, GraphQLAPI }",
"limit": "91.7 kB"
}
],
"jest": {
"globals": {
"ts-jest": {
Expand All @@ -104,7 +106,9 @@
"allowJs": true,
"noEmitOnError": false,
"strictNullChecks": true,
"types": ["@types/jest"]
"types": [
"@types/jest"
]
}
}
},
Expand Down
6 changes: 3 additions & 3 deletions packages/api-rest/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@aws-amplify/api-rest",
"private": false,
"version": "4.0.0",
"version": "4.0.1",
"description": "Api-rest category of aws-amplify",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.mjs",
Expand Down Expand Up @@ -87,8 +87,8 @@
"@aws-amplify/core": "^6.0.0"
},
"devDependencies": {
"@aws-amplify/core": "6.0.0",
"@aws-amplify/react-native": "^1.0.0",
"@aws-amplify/core": "6.0.1",
"@aws-amplify/react-native": "1.0.1",
"@rollup/plugin-typescript": "11.1.5",
"rollup": "3.29.4",
"typescript": "5.0.2"
Expand Down
10 changes: 6 additions & 4 deletions packages/api/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aws-amplify/api",
"version": "6.0.0",
"version": "6.0.1",
"description": "Api category of aws-amplify",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.mjs",
Expand Down Expand Up @@ -81,8 +81,8 @@
"server"
],
"dependencies": {
"@aws-amplify/api-graphql": "4.0.0",
"@aws-amplify/api-rest": "4.0.0",
"@aws-amplify/api-graphql": "4.0.1",
"@aws-amplify/api-rest": "4.0.1",
"tslib": "^2.5.0"
},
"jest": {
Expand All @@ -102,7 +102,9 @@
"allowJs": true,
"noEmitOnError": false,
"strictNullChecks": true,
"types": ["@types/jest"]
"types": [
"@types/jest"
]
}
}
},
Expand Down
8 changes: 4 additions & 4 deletions packages/auth/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aws-amplify/auth",
"version": "6.0.0",
"version": "6.0.1",
"description": "Auth category of aws-amplify",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.mjs",
Expand Down Expand Up @@ -89,10 +89,10 @@
"@aws-amplify/core": "^6.0.0"
},
"devDependencies": {
"@aws-amplify/core": "6.0.0",
"@aws-amplify/react-native": "^1.0.0",
"@rollup/plugin-typescript": "11.1.5",
"@aws-amplify/core": "6.0.1",
"@aws-amplify/react-native": "1.0.1",
"@jest/test-sequencer": "^24.9.0",
"@rollup/plugin-typescript": "11.1.5",
"rollup": "3.29.4",
"typescript": "5.0.2"
},
Expand Down
20 changes: 11 additions & 9 deletions packages/aws-amplify/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "aws-amplify",
"version": "6.0.0",
"version": "6.0.1",
"description": "AWS Amplify is a JavaScript library for Frontend and mobile developers building cloud-enabled applications.",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.mjs",
Expand Down Expand Up @@ -250,13 +250,13 @@
"utils"
],
"dependencies": {
"@aws-amplify/api": "6.0.0",
"@aws-amplify/analytics": "7.0.0",
"@aws-amplify/auth": "6.0.0",
"@aws-amplify/core": "6.0.0",
"@aws-amplify/storage": "6.0.0",
"@aws-amplify/datastore": "5.0.0",
"@aws-amplify/notifications": "2.0.0",
"@aws-amplify/analytics": "7.0.1",
"@aws-amplify/api": "6.0.1",
"@aws-amplify/auth": "6.0.1",
"@aws-amplify/core": "6.0.1",
"@aws-amplify/datastore": "5.0.1",
"@aws-amplify/notifications": "2.0.1",
"@aws-amplify/storage": "6.0.1",
"tslib": "^2.5.0"
},
"devDependencies": {
Expand Down Expand Up @@ -498,7 +498,9 @@
"jsx"
],
"testEnvironment": "jsdom",
"testPathIgnorePatterns": ["dual-publish-tmp"],
"testPathIgnorePatterns": [
"dual-publish-tmp"
],
"testURL": "http://localhost/",
"coverageThreshold": {
"global": {
Expand Down
4 changes: 2 additions & 2 deletions packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aws-amplify/core",
"version": "6.0.0",
"version": "6.0.1",
"description": "Core category of aws-amplify",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.mjs",
Expand Down Expand Up @@ -60,7 +60,7 @@
"uuid": "^9.0.0"
},
"devDependencies": {
"@aws-amplify/react-native": "^1.0.0",
"@aws-amplify/react-native": "1.0.1",
"@rollup/plugin-typescript": "11.1.5",
"@types/js-cookie": "3.0.2",
"genversion": "^2.2.0",
Expand Down
Loading

0 comments on commit ff4e8d7

Please sign in to comment.