Skip to content

Commit

Permalink
2.3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
majodev committed Apr 7, 2020
1 parent a8c7987 commit cac9b28
Show file tree
Hide file tree
Showing 31 changed files with 206 additions and 159 deletions.
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
10
10.19.0
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
### Master
* ...

### 2.3.4
* monorepo: pin monorepo, scaffolder and project to node 10
* CI: execute lint/build/test for generated create-aaa-backend project al the time
* CI: execute lint/build/test for generated create-aaa-backend project all the time
* storage: db connection pool defaults (min=1, max=cpu_cores*2, idle=10000ms) and allow to specify via `pgConnection.pool`.
* Furhermore allows to specify pool size via `SEQ_POOL_MIN`, `SEQ_POOL_MAX` and `SEQ_POOL_IDLE` env vars.
* ansible provision fixes

### 2.3.0-2.3.3
* bad builds, ignore.

### 2.2.5
* Update dependencies with high vulnerabilities
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -134,8 +134,8 @@ local$ git commit -m "merge latest"
local$ git tag 1.16.1

# 3. Push to github
local$ git push origin-github
local$ git push origin-github 1.16.1
local$ git push origin-github
local$ git push origin-github 1.16.1
```

### I want to add a dependency
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
"hoist": true,
"npmClient": "yarn",
"useWorkspaces": true,
"version": "2.2.5"
"version": "2.3.4"
}
4 changes: 2 additions & 2 deletions packages/aaa-build-tools/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aaa-backend-stack/build-tools",
"version": "2.2.0",
"version": "2.3.4",
"description": "base tools for env sourcing and building cli tools",
"license": "MIT",
"author": "all about apps",
Expand Down Expand Up @@ -42,7 +42,7 @@
"sort-package-json": "1.7.1"
},
"devDependencies": {
"@aaa-backend-stack/tslint-rules": "^2.2.0",
"@aaa-backend-stack/tslint-rules": "^2.3.4",
"tslint": "5.11.0",
"typescript": "3.7.2"
},
Expand Down
10 changes: 5 additions & 5 deletions packages/aaa-devtools/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aaa-backend-stack/devtools",
"version": "2.2.4",
"version": "2.3.4",
"description": "Websocket devtools which integrates with aaa logger (pipes logs from stdout)",
"license": "MIT",
"author": "all about apps",
Expand All @@ -16,8 +16,8 @@
"test": "exit 0"
},
"dependencies": {
"@aaa-backend-stack/build-tools": "^2.2.0",
"@aaa-backend-stack/git-info": "^2.2.4",
"@aaa-backend-stack/build-tools": "^2.3.4",
"@aaa-backend-stack/git-info": "^2.3.4",
"@types/lodash": "4.14.144",
"@types/ws": "3.2.1",
"bufferutil": "4.0.1",
Expand All @@ -26,8 +26,8 @@
"ws": "3.3.3"
},
"devDependencies": {
"@aaa-backend-stack/test-environment": "^2.2.4",
"@aaa-backend-stack/tslint-rules": "^2.2.0",
"@aaa-backend-stack/test-environment": "^2.3.4",
"@aaa-backend-stack/tslint-rules": "^2.3.4",
"tslint": "5.11.0",
"typescript": "3.7.2"
},
Expand Down
10 changes: 5 additions & 5 deletions packages/aaa-example-lib/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aaa-backend-stack/example-lib",
"version": "2.2.4",
"version": "2.3.4",
"private": true,
"description": "Example Lib",
"license": "MIT",
Expand All @@ -17,12 +17,12 @@
"test": "exit 0"
},
"dependencies": {
"@aaa-backend-stack/build-tools": "^2.2.0",
"@aaa-backend-stack/utils": "^2.2.4"
"@aaa-backend-stack/build-tools": "^2.3.4",
"@aaa-backend-stack/utils": "^2.3.4"
},
"devDependencies": {
"@aaa-backend-stack/test-environment": "^2.2.4",
"@aaa-backend-stack/tslint-rules": "^2.2.0",
"@aaa-backend-stack/test-environment": "^2.3.4",
"@aaa-backend-stack/tslint-rules": "^2.3.4",
"tslint": "5.11.0",
"typescript": "3.7.2"
},
Expand Down
14 changes: 7 additions & 7 deletions packages/aaa-file-storage-local/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aaa-backend-stack/file-storage-local",
"version": "2.2.4",
"version": "2.3.4",
"description": "File storage service implementation using local file system",
"license": "MIT",
"author": "all about apps",
Expand All @@ -16,18 +16,18 @@
"test": "exit 0"
},
"dependencies": {
"@aaa-backend-stack/build-tools": "^2.2.0",
"@aaa-backend-stack/file-storage": "^2.2.0",
"@aaa-backend-stack/logger": "^2.2.4",
"@aaa-backend-stack/utils": "^2.2.4",
"@aaa-backend-stack/build-tools": "^2.3.4",
"@aaa-backend-stack/file-storage": "^2.3.4",
"@aaa-backend-stack/logger": "^2.3.4",
"@aaa-backend-stack/utils": "^2.3.4",
"@types/lodash": "4.14.144",
"@types/url-join": "0.8.2",
"lodash": "4.17.15",
"url-join": "4.0.0"
},
"devDependencies": {
"@aaa-backend-stack/test-environment": "^2.2.4",
"@aaa-backend-stack/tslint-rules": "^2.2.0",
"@aaa-backend-stack/test-environment": "^2.3.4",
"@aaa-backend-stack/tslint-rules": "^2.3.4",
"tslint": "5.11.0",
"typescript": "3.7.2"
},
Expand Down
14 changes: 7 additions & 7 deletions packages/aaa-file-storage-s3/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aaa-backend-stack/file-storage-s3",
"version": "2.2.4",
"version": "2.3.4",
"description": "File storage service implementation using Amazon S3 buckets (or compatible servers)",
"license": "MIT",
"author": "all about apps",
Expand All @@ -16,19 +16,19 @@
"test": "exit 0"
},
"dependencies": {
"@aaa-backend-stack/build-tools": "^2.2.0",
"@aaa-backend-stack/file-storage": "^2.2.0",
"@aaa-backend-stack/logger": "^2.2.4",
"@aaa-backend-stack/utils": "^2.2.4",
"@aaa-backend-stack/build-tools": "^2.3.4",
"@aaa-backend-stack/file-storage": "^2.3.4",
"@aaa-backend-stack/logger": "^2.3.4",
"@aaa-backend-stack/utils": "^2.3.4",
"@types/lodash": "4.14.144",
"@types/url-join": "0.8.2",
"aws-sdk": "2.311.0",
"lodash": "4.17.15",
"url-join": "4.0.0"
},
"devDependencies": {
"@aaa-backend-stack/test-environment": "^2.2.4",
"@aaa-backend-stack/tslint-rules": "^2.2.0",
"@aaa-backend-stack/test-environment": "^2.3.4",
"@aaa-backend-stack/tslint-rules": "^2.3.4",
"tslint": "5.11.0",
"typescript": "3.7.2"
},
Expand Down
6 changes: 3 additions & 3 deletions packages/aaa-file-storage/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aaa-backend-stack/file-storage",
"version": "2.2.0",
"version": "2.3.4",
"description": "High level API for a file storage service, actual implementation provided in separate packages",
"license": "MIT",
"author": "all about apps",
Expand All @@ -16,10 +16,10 @@
"test": "exit 0"
},
"dependencies": {
"@aaa-backend-stack/build-tools": "^2.2.0"
"@aaa-backend-stack/build-tools": "^2.3.4"
},
"devDependencies": {
"@aaa-backend-stack/tslint-rules": "^2.2.0",
"@aaa-backend-stack/tslint-rules": "^2.3.4",
"tslint": "5.11.0",
"typescript": "3.7.2"
},
Expand Down
8 changes: 4 additions & 4 deletions packages/aaa-git-info/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aaa-backend-stack/git-info",
"version": "2.2.4",
"version": "2.3.4",
"description": "Reads base directory to get current git commit information",
"license": "MIT",
"author": "all about apps",
Expand All @@ -16,12 +16,12 @@
"test": "exit 0"
},
"dependencies": {
"@aaa-backend-stack/build-tools": "^2.2.0",
"@aaa-backend-stack/build-tools": "^2.3.4",
"git-rev-sync": "1.9.1"
},
"devDependencies": {
"@aaa-backend-stack/test-environment": "^2.2.4",
"@aaa-backend-stack/tslint-rules": "^2.2.0",
"@aaa-backend-stack/test-environment": "^2.3.4",
"@aaa-backend-stack/tslint-rules": "^2.3.4",
"tslint": "5.11.0",
"typescript": "3.7.2"
},
Expand Down
16 changes: 8 additions & 8 deletions packages/aaa-graphql-rest-bindings/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aaa-backend-stack/graphql-rest-bindings",
"version": "2.2.4",
"version": "2.3.4",
"description": "Provides utils for graphql introspection and devtools in combination with rest layer",
"license": "MIT",
"author": "all about apps",
Expand All @@ -16,11 +16,11 @@
"test": "exit 0"
},
"dependencies": {
"@aaa-backend-stack/build-tools": "^2.2.0",
"@aaa-backend-stack/graphql": "^2.2.4",
"@aaa-backend-stack/logger": "^2.2.4",
"@aaa-backend-stack/rest": "^2.2.4",
"@aaa-backend-stack/utils": "^2.2.4",
"@aaa-backend-stack/build-tools": "^2.3.4",
"@aaa-backend-stack/graphql": "^2.3.4",
"@aaa-backend-stack/logger": "^2.3.4",
"@aaa-backend-stack/rest": "^2.3.4",
"@aaa-backend-stack/utils": "^2.3.4",
"@types/bluebird": "3.5.8",
"@types/bluebird-global": "3.5.3",
"@types/lodash": "4.14.144",
Expand All @@ -30,8 +30,8 @@
"lodash": "4.17.15"
},
"devDependencies": {
"@aaa-backend-stack/test-environment": "^2.2.4",
"@aaa-backend-stack/tslint-rules": "^2.2.0",
"@aaa-backend-stack/test-environment": "^2.3.4",
"@aaa-backend-stack/tslint-rules": "^2.3.4",
"tslint": "5.11.0",
"typescript": "3.7.2"
},
Expand Down
12 changes: 6 additions & 6 deletions packages/aaa-graphql/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aaa-backend-stack/graphql",
"version": "2.2.4",
"version": "2.3.4",
"description": "GraphQL Layer",
"license": "MIT",
"author": "all about apps",
Expand All @@ -19,9 +19,9 @@
"test": "exit 0"
},
"dependencies": {
"@aaa-backend-stack/build-tools": "^2.2.0",
"@aaa-backend-stack/logger": "^2.2.4",
"@aaa-backend-stack/utils": "^2.2.4",
"@aaa-backend-stack/build-tools": "^2.3.4",
"@aaa-backend-stack/logger": "^2.3.4",
"@aaa-backend-stack/utils": "^2.3.4",
"@types/bluebird": "3.5.8",
"@types/bluebird-global": "3.5.3",
"@types/graphql": "0.9.4",
Expand All @@ -41,8 +41,8 @@
"sequelize": "3.31.0"
},
"devDependencies": {
"@aaa-backend-stack/test-environment": "^2.2.4",
"@aaa-backend-stack/tslint-rules": "^2.2.0",
"@aaa-backend-stack/test-environment": "^2.3.4",
"@aaa-backend-stack/tslint-rules": "^2.3.4",
"tslint": "5.11.0",
"typescript": "3.7.2"
},
Expand Down
18 changes: 9 additions & 9 deletions packages/aaa-image-service/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aaa-backend-stack/image-service",
"version": "2.2.4",
"version": "2.3.4",
"description": "Image service for handling image uploads",
"license": "MIT",
"author": "all about apps",
Expand All @@ -16,21 +16,21 @@
"test": "exit 0"
},
"dependencies": {
"@aaa-backend-stack/build-tools": "^2.2.0",
"@aaa-backend-stack/file-storage": "^2.2.0",
"@aaa-backend-stack/logger": "^2.2.4",
"@aaa-backend-stack/rest": "^2.2.4",
"@aaa-backend-stack/storage": "^2.2.4",
"@aaa-backend-stack/utils": "^2.2.4",
"@aaa-backend-stack/build-tools": "^2.3.4",
"@aaa-backend-stack/file-storage": "^2.3.4",
"@aaa-backend-stack/logger": "^2.3.4",
"@aaa-backend-stack/rest": "^2.3.4",
"@aaa-backend-stack/storage": "^2.3.4",
"@aaa-backend-stack/utils": "^2.3.4",
"@types/gm": "1.18.0",
"@types/lodash": "4.14.144",
"command-exists": "1.2.7",
"gm": "1.23.1",
"lodash": "4.17.15"
},
"devDependencies": {
"@aaa-backend-stack/test-environment": "^2.2.4",
"@aaa-backend-stack/tslint-rules": "^2.2.0",
"@aaa-backend-stack/test-environment": "^2.3.4",
"@aaa-backend-stack/tslint-rules": "^2.3.4",
"tslint": "5.11.0",
"typescript": "3.7.2"
},
Expand Down
12 changes: 6 additions & 6 deletions packages/aaa-logger/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aaa-backend-stack/logger",
"version": "2.2.4",
"version": "2.3.4",
"description": "Bunyan logger interface implementation, hapi plugin, file rotation and email error reporting setup",
"license": "MIT",
"author": "all about apps",
Expand All @@ -19,9 +19,9 @@
"test": "exit 0"
},
"dependencies": {
"@aaa-backend-stack/build-tools": "^2.2.0",
"@aaa-backend-stack/git-info": "^2.2.4",
"@aaa-backend-stack/serverdate": "^2.2.4",
"@aaa-backend-stack/build-tools": "^2.3.4",
"@aaa-backend-stack/git-info": "^2.3.4",
"@aaa-backend-stack/serverdate": "^2.3.4",
"@types/bunyan": "0.0.30",
"@types/lodash": "4.14.144",
"@types/nodemailer": "6.2.1",
Expand All @@ -35,8 +35,8 @@
"safe-json-stringify": "1.1.0"
},
"devDependencies": {
"@aaa-backend-stack/test-environment": "^2.2.4",
"@aaa-backend-stack/tslint-rules": "^2.2.0",
"@aaa-backend-stack/test-environment": "^2.3.4",
"@aaa-backend-stack/tslint-rules": "^2.3.4",
"tslint": "5.11.0",
"typescript": "3.7.2"
},
Expand Down
12 changes: 6 additions & 6 deletions packages/aaa-mailer/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aaa-backend-stack/mailer",
"version": "2.2.4",
"version": "2.3.4",
"description": "Example Lib",
"license": "MIT",
"author": "all about apps",
Expand All @@ -16,9 +16,9 @@
"test": "exit 0"
},
"dependencies": {
"@aaa-backend-stack/build-tools": "^2.2.0",
"@aaa-backend-stack/logger": "^2.2.4",
"@aaa-backend-stack/utils": "^2.2.4",
"@aaa-backend-stack/build-tools": "^2.3.4",
"@aaa-backend-stack/logger": "^2.3.4",
"@aaa-backend-stack/utils": "^2.3.4",
"@types/lodash": "4.14.144",
"@types/nodemailer": "6.2.1",
"handlebars": "4.3.0",
Expand All @@ -29,8 +29,8 @@
"nodemailer-stub-transport": "1.1.0"
},
"devDependencies": {
"@aaa-backend-stack/test-environment": "^2.2.4",
"@aaa-backend-stack/tslint-rules": "^2.2.0",
"@aaa-backend-stack/test-environment": "^2.3.4",
"@aaa-backend-stack/tslint-rules": "^2.3.4",
"tslint": "5.11.0",
"typescript": "3.7.2"
},
Expand Down
Loading

0 comments on commit cac9b28

Please sign in to comment.