Skip to content

Commit

Permalink
chore(release): publish
Browse files Browse the repository at this point in the history
  • Loading branch information
OlivierAlbertini committed Sep 15, 2020
1 parent e9764d6 commit bac5c08
Show file tree
Hide file tree
Showing 30 changed files with 326 additions and 155 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,22 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [4.2.0](https://github.com/VilledeMontreal/workit/compare/v4.1.0...v4.2.0) (2020-09-15)


### Bug Fixes

* move from tslint to eslint ([#178](https://github.com/VilledeMontreal/workit/issues/178)) ([0dce14b](https://github.com/VilledeMontreal/workit/commit/0dce14b696649cdff886c3e7a0ffdbbd56b548d7)), closes [#159](https://github.com/VilledeMontreal/workit/issues/159)


### Features

* use custom retry timeout upon failure ([#212](https://github.com/VilledeMontreal/workit/issues/212)) ([49c24f4](https://github.com/VilledeMontreal/workit/commit/49c24f475cbed3a438e65b75288c86f9aec73f81))





## 4.2.0 (2020-09-15)

#### :rocket: (Enhancement)
Expand Down
11 changes: 11 additions & 0 deletions examples/basic/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [4.2.0](https://github.com/VilledeMontreal/workit/compare/v4.1.0...v4.2.0) (2020-09-15)


### Bug Fixes

* move from tslint to eslint ([#178](https://github.com/VilledeMontreal/workit/issues/178)) ([0dce14b](https://github.com/VilledeMontreal/workit/commit/0dce14b696649cdff886c3e7a0ffdbbd56b548d7)), closes [#159](https://github.com/VilledeMontreal/workit/issues/159)





# 4.1.0 (2020-03-12)


Expand Down
22 changes: 11 additions & 11 deletions examples/basic/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "workit-example-basic",
"private": true,
"version": "4.1.0",
"version": "4.2.0",
"description": "Basic example of workit usage",
"main": "lib/src/worker.js",
"typings": "lib/src/worker.d.ts",
Expand All @@ -15,7 +15,7 @@
"watch": "tsc -p ./tsconfig.json --watch",
"lint": "eslint . --ext .ts && prettier -l \"src/**/*.ts\"",
"lint-fix": "prettier \"./**/*.ts\" --write && eslint . --ext .ts --fix",
"check-conflicts":"eslint --print-config tests/utils/func-test.ts | eslint-config-prettier-check",
"check-conflicts": "eslint --print-config tests/utils/func-test.ts | eslint-config-prettier-check",
"camunda:deploy": "node ./lib/src/deploy.js",
"camunda:create-instance": "node ./lib/src/create-process-instances.js",
"camunda:worker": "node ./lib/src/worker.js"
Expand All @@ -26,22 +26,22 @@
},
"devDependencies": {
"@types/node": "^14.0.0",
"prettier": "^2.0.1",
"@typescript-eslint/eslint-plugin": "^2.24.0",
"@typescript-eslint/parser": "^2.24.0",
"eslint": "^6.8.0",
"eslint-plugin-header":"^3.0.0",
"eslint-config-airbnb-typescript": "^7.2.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-header": "^3.0.0",
"eslint-plugin-import": "^2.20.1",
"eslint-config-prettier":"^6.10.1",
"eslint-plugin-prettier":"^3.1.2",
"@typescript-eslint/eslint-plugin": "^2.24.0",
"@typescript-eslint/parser": "^2.24.0",
"eslint-plugin-prettier": "^3.1.2",
"prettier": "^2.0.1",
"typescript": "^3.8.3"
},
"dependencies": {
"axios": "^0.19.2",
"workit-camunda": "^4.1.0",
"workit-core": "^4.1.0",
"workit-types": "^4.1.0"
"workit-camunda": "^4.2.0",
"workit-core": "^4.2.0",
"workit-types": "^4.2.0"
},
"keywords": [
"workit",
Expand Down
11 changes: 11 additions & 0 deletions examples/binding/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [4.2.0](https://github.com/VilledeMontreal/workit/compare/v4.1.0...v4.2.0) (2020-09-15)


### Bug Fixes

* move from tslint to eslint ([#178](https://github.com/VilledeMontreal/workit/issues/178)) ([0dce14b](https://github.com/VilledeMontreal/workit/commit/0dce14b696649cdff886c3e7a0ffdbbd56b548d7)), closes [#159](https://github.com/VilledeMontreal/workit/issues/159)





# 4.1.0 (2020-03-12)


Expand Down
22 changes: 11 additions & 11 deletions examples/binding/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "workit-example-binding",
"private": true,
"version": "4.1.0",
"version": "4.2.0",
"description": "Show how to bind tasks with Workit",
"main": "lib/src/worker.js",
"typings": "lib/src/worker.d.ts",
Expand All @@ -15,7 +15,7 @@
"watch": "tsc -p ./tsconfig.json --watch",
"lint": "eslint . --ext .ts && prettier -l \"src/**/*.ts\"",
"lint-fix": "prettier \"./**/*.ts\" --write && eslint . --ext .ts --fix",
"check-conflicts":"eslint --print-config tests/utils/func-test.ts | eslint-config-prettier-check",
"check-conflicts": "eslint --print-config tests/utils/func-test.ts | eslint-config-prettier-check",
"camunda:deploy": "node ./lib/src/deploy.js",
"camunda:create-instance": "node ./lib/src/create-process-instances.js",
"camunda:worker": "node ./lib/src/worker.js"
Expand All @@ -26,22 +26,22 @@
},
"devDependencies": {
"@types/node": "^14.0.0",
"prettier": "^1.19.1",
"@typescript-eslint/eslint-plugin": "^2.24.0",
"@typescript-eslint/parser": "^2.24.0",
"eslint": "^6.8.0",
"eslint-plugin-header":"^3.0.0",
"eslint-config-airbnb-typescript": "^7.2.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-header": "^3.0.0",
"eslint-plugin-import": "^2.20.1",
"eslint-config-prettier":"^6.10.1",
"eslint-plugin-prettier":"^3.1.2",
"@typescript-eslint/eslint-plugin": "^2.24.0",
"@typescript-eslint/parser": "^2.24.0",
"eslint-plugin-prettier": "^3.1.2",
"prettier": "^1.19.1",
"typescript": "^3.8.3"
},
"dependencies": {
"axios": "^0.19.2",
"workit-camunda": "^4.1.0",
"workit-core": "^4.1.0",
"workit-types": "^4.1.0"
"workit-camunda": "^4.2.0",
"workit-core": "^4.2.0",
"workit-types": "^4.2.0"
},
"keywords": [
"workit",
Expand Down
7 changes: 7 additions & 0 deletions examples/camunda-cloud/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,10 @@

All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [4.2.0](https://github.com/VilledeMontreal/workit/compare/v4.1.0...v4.2.0) (2020-09-15)


### Bug Fixes

* move from tslint to eslint ([#178](https://github.com/VilledeMontreal/workit/issues/178)) ([0dce14b](https://github.com/VilledeMontreal/workit/commit/0dce14b696649cdff886c3e7a0ffdbbd56b548d7)), closes [#159](https://github.com/VilledeMontreal/workit/issues/159)
22 changes: 11 additions & 11 deletions examples/camunda-cloud/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "workit-camunda-cloud",
"private": true,
"version": "2.0.4",
"version": "4.2.0",
"description": "Basic example of workit usage with Camunda Cloud",
"main": "lib/src/worker.js",
"typings": "lib/src/worker.d.ts",
Expand All @@ -15,7 +15,7 @@
"watch": "tsc -p ./tsconfig.json --watch",
"lint": "eslint . --ext .ts && prettier -l \"src/**/*.ts\"",
"lint-fix": "prettier \"./**/*.ts\" --write && eslint . --ext .ts --fix",
"check-conflicts":"eslint --print-config tests/utils/func-test.ts | eslint-config-prettier-check",
"check-conflicts": "eslint --print-config tests/utils/func-test.ts | eslint-config-prettier-check",
"camunda:deploy": "node -r ./lib/src/setup.js ./lib/src/deploy.js",
"camunda:create-instance": "node -r ./lib/src/setup.js ./lib/src/create-process-instances.js",
"camunda:worker": "node -r ./lib/src/setup.js ./lib/src/worker.js"
Expand All @@ -26,21 +26,21 @@
},
"devDependencies": {
"@types/node": "^13.9.3",
"prettier": "^2.0.1",
"@typescript-eslint/eslint-plugin": "^2.24.0",
"@typescript-eslint/parser": "^2.24.0",
"eslint": "^6.8.0",
"eslint-plugin-header":"^3.0.0",
"eslint-config-airbnb-typescript": "^7.2.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-header": "^3.0.0",
"eslint-plugin-import": "^2.20.1",
"eslint-config-prettier":"^6.10.1",
"eslint-plugin-prettier":"^3.1.2",
"@typescript-eslint/eslint-plugin": "^2.24.0",
"@typescript-eslint/parser": "^2.24.0",
"eslint-plugin-prettier": "^3.1.2",
"prettier": "^2.0.1",
"typescript": "^3.8.3"
},
"dependencies": {
"workit-camunda": "^4.0.4",
"workit-core": "^4.0.4",
"workit-types": "^4.0.4"
"workit-camunda": "^4.2.0",
"workit-core": "^4.2.0",
"workit-types": "^4.2.0"
},
"keywords": [
"workit",
Expand Down
11 changes: 11 additions & 0 deletions examples/event/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [4.2.0](https://github.com/VilledeMontreal/workit/compare/v4.1.0...v4.2.0) (2020-09-15)


### Bug Fixes

* move from tslint to eslint ([#178](https://github.com/VilledeMontreal/workit/issues/178)) ([0dce14b](https://github.com/VilledeMontreal/workit/commit/0dce14b696649cdff886c3e7a0ffdbbd56b548d7)), closes [#159](https://github.com/VilledeMontreal/workit/issues/159)





# 4.1.0 (2020-03-12)


Expand Down
22 changes: 11 additions & 11 deletions examples/event/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "workit-example-event",
"private": true,
"version": "4.1.0",
"version": "4.2.0",
"description": "Show how to send an event with Workit",
"main": "lib/src/worker.js",
"typings": "lib/src/worker.d.ts",
Expand All @@ -15,7 +15,7 @@
"watch": "tsc -p ./tsconfig.json --watch",
"lint": "eslint . --ext .ts && prettier -l \"src/**/*.ts\"",
"lint-fix": "prettier \"./**/*.ts\" --write && eslint . --ext .ts --fix",
"check-conflicts":"eslint --print-config tests/utils/func-test.ts | eslint-config-prettier-check",
"check-conflicts": "eslint --print-config tests/utils/func-test.ts | eslint-config-prettier-check",
"camunda:deploy": "node ./lib/src/deploy.js",
"camunda:create-instance": "node ./lib/src/create-process-instances.js",
"camunda:worker": "node ./lib/src/worker.js"
Expand All @@ -26,22 +26,22 @@
},
"devDependencies": {
"@types/node": "^14.0.0",
"prettier": "^2.0.1",
"@typescript-eslint/eslint-plugin": "^2.24.0",
"@typescript-eslint/parser": "^2.24.0",
"eslint": "^6.8.0",
"eslint-plugin-header":"^3.0.0",
"eslint-config-airbnb-typescript": "^7.2.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-header": "^3.0.0",
"eslint-plugin-import": "^2.20.1",
"eslint-config-prettier":"^6.10.1",
"eslint-plugin-prettier":"^3.1.2",
"@typescript-eslint/eslint-plugin": "^2.24.0",
"@typescript-eslint/parser": "^2.24.0",
"eslint-plugin-prettier": "^3.1.2",
"prettier": "^2.0.1",
"typescript": "^3.8.3"
},
"dependencies": {
"axios": "^0.19.0",
"workit-camunda": "^4.1.0",
"workit-core": "^4.1.0",
"workit-types": "^4.1.0"
"workit-camunda": "^4.2.0",
"workit-core": "^4.2.0",
"workit-types": "^4.2.0"
},
"keywords": [
"workit",
Expand Down
11 changes: 11 additions & 0 deletions examples/failure-strategy/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [4.2.0](https://github.com/VilledeMontreal/workit/compare/v4.1.0...v4.2.0) (2020-09-15)


### Bug Fixes

* move from tslint to eslint ([#178](https://github.com/VilledeMontreal/workit/issues/178)) ([0dce14b](https://github.com/VilledeMontreal/workit/commit/0dce14b696649cdff886c3e7a0ffdbbd56b548d7)), closes [#159](https://github.com/VilledeMontreal/workit/issues/159)





# 4.1.0 (2020-03-12)

**Note:** Version bump only for package workit-example-failure-strategy
Expand Down
22 changes: 11 additions & 11 deletions examples/failure-strategy/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "workit-example-failure-strategy",
"private": true,
"version": "4.1.0",
"version": "4.2.0",
"description": "Failure strategy example",
"main": "lib/src/worker.js",
"typings": "lib/src/worker.d.ts",
Expand All @@ -15,7 +15,7 @@
"watch": "tsc -p ./tsconfig.json --watch",
"lint": "eslint . --ext .ts && prettier -l \"src/**/*.ts\"",
"lint-fix": "prettier \"./**/*.ts\" --write && eslint . --ext .ts --fix",
"check-conflicts":"eslint --print-config tests/utils/func-test.ts | eslint-config-prettier-check",
"check-conflicts": "eslint --print-config tests/utils/func-test.ts | eslint-config-prettier-check",
"camunda:deploy": "node ./lib/src/deploy.js",
"camunda:create-instance": "node ./lib/src/create-process-instances.js",
"camunda:worker": "node ./lib/src/worker.js"
Expand All @@ -26,22 +26,22 @@
},
"devDependencies": {
"@types/node": "^14.0.0",
"prettier": "^2.0.1",
"@typescript-eslint/eslint-plugin": "^2.24.0",
"@typescript-eslint/parser": "^2.24.0",
"eslint": "^6.8.0",
"eslint-plugin-header":"^3.0.0",
"eslint-config-airbnb-typescript": "^7.2.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-header": "^3.0.0",
"eslint-plugin-import": "^2.20.1",
"eslint-config-prettier":"^6.10.1",
"eslint-plugin-prettier":"^3.1.2",
"@typescript-eslint/eslint-plugin": "^2.24.0",
"@typescript-eslint/parser": "^2.24.0",
"eslint-plugin-prettier": "^3.1.2",
"prettier": "^2.0.1",
"typescript": "^3.8.3"
},
"dependencies": {
"axios": "^0.19.2",
"workit-camunda": "^4.1.0",
"workit-core": "^4.1.0",
"workit-types": "^4.1.0"
"workit-camunda": "^4.2.0",
"workit-core": "^4.2.0",
"workit-types": "^4.2.0"
},
"keywords": [
"workit",
Expand Down
11 changes: 11 additions & 0 deletions examples/opentelemetry/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [4.2.0](https://github.com/VilledeMontreal/workit/compare/v4.1.0...v4.2.0) (2020-09-15)


### Bug Fixes

* move from tslint to eslint ([#178](https://github.com/VilledeMontreal/workit/issues/178)) ([0dce14b](https://github.com/VilledeMontreal/workit/commit/0dce14b696649cdff886c3e7a0ffdbbd56b548d7)), closes [#159](https://github.com/VilledeMontreal/workit/issues/159)





# 4.1.0 (2020-03-12)


Expand Down
Loading

0 comments on commit bac5c08

Please sign in to comment.