Skip to content

Commit

Permalink
chore: release main
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored and loopingz committed Nov 12, 2023
1 parent 03c1a2f commit 4617fb9
Show file tree
Hide file tree
Showing 37 changed files with 389 additions and 76 deletions.
36 changes: 18 additions & 18 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
{
"packages/amqp": "3.0.12",
"packages/async": "3.1.1",
"packages/aws": "3.1.10",
"packages/core": "3.6.0",
"packages/amqp": "3.1.0",
"packages/async": "3.2.0",
"packages/aws": "3.2.0",
"packages/core": "3.7.0",
"packages/codmod": "3.0.0",
"packages/elasticsearch": "3.0.12",
"packages/gcp": "3.1.9",
"packages/google-auth": "3.0.12",
"packages/graphql": "3.3.2",
"packages/hawk": "3.2.0",
"packages/kubernetes": "3.1.1",
"packages/mongodb": "3.1.9",
"packages/postgres": "3.0.12",
"packages/profiler": "3.0.12",
"packages/profiler-aws-xray": "3.0.12",
"packages/shell": "3.4.0",
"packages/tsc-esm": "1.0.6",
"packages/websockets": "3.0.12",
"packages/workout": "3.0.4"
"packages/elasticsearch": "3.1.0",
"packages/gcp": "3.2.0",
"packages/google-auth": "3.1.0",
"packages/graphql": "3.4.0",
"packages/hawk": "3.3.0",
"packages/kubernetes": "3.2.0",
"packages/mongodb": "3.2.0",
"packages/postgres": "3.1.0",
"packages/profiler": "3.1.0",
"packages/profiler-aws-xray": "3.1.0",
"packages/shell": "3.5.0",
"packages/tsc-esm": "1.1.0",
"packages/websockets": "3.1.0",
"packages/workout": "3.1.0"
}
16 changes: 16 additions & 0 deletions packages/amqp/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,22 @@
* devDependencies
* @webda/shell bumped from ^3.3.0 to ^3.4.0

## [3.1.0](https://github.com/loopingz/webda.io/compare/amqp-v3.0.12...amqp-v3.1.0) (2023-11-12)


### Features

* drop node16 as it is EOL ([a6b795a](https://github.com/loopingz/webda.io/commit/a6b795a76e5089a0cf81269c49e00131bc17c1a9))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* @webda/core bumped from ^3.6.0 to ^3.7.0
* devDependencies
* @webda/shell bumped from ^3.4.0 to ^3.5.0

## [3.0.11](https://github.com/loopingz/webda.io/compare/amqp-v3.0.10...amqp-v3.0.11) (2023-10-04)


Expand Down
6 changes: 3 additions & 3 deletions packages/amqp/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@webda/amqp",
"version": "3.0.12",
"version": "3.1.0",
"description": "Implements AMQP on webda",
"keywords": [
"activemq",
Expand All @@ -19,7 +19,7 @@
"test": "c8 mocha --recursive --exit --timeout=100000 src/**/*.spec.ts src/*.spec.ts"
},
"dependencies": {
"@webda/core": "^3.6.0",
"@webda/core": "^3.7.0",
"amqplib": "^0.10.0"
},
"files": [
Expand Down Expand Up @@ -50,7 +50,7 @@
"@testdeck/mocha": "^0.3.3",
"@types/amqplib": "^0.10.0",
"@types/node": "14.6.0",
"@webda/shell": "^3.4.0",
"@webda/shell": "^3.5.0",
"sinon": "^17.0.0"
},
"nx": {
Expand Down
19 changes: 19 additions & 0 deletions packages/async/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,25 @@
* dependencies
* @webda/core bumped from ^3.5.0 to ^3.6.0

## [3.2.0](https://github.com/loopingz/webda.io/compare/async-v3.1.1...async-v3.2.0) (2023-11-12)


### Features

* add CoreModel listeners system ([977dd9d](https://github.com/loopingz/webda.io/commit/977dd9d8a04f5b3e6d19f09f8755277b26242a18))
* drop node16 as it is EOL ([a6b795a](https://github.com/loopingz/webda.io/commit/a6b795a76e5089a0cf81269c49e00131bc17c1a9))
* RESTDomainService: add the url info retriever on Binaries ([13fe77c](https://github.com/loopingz/webda.io/commit/13fe77ccd0082432ea79ec9b7c32ac261cebeb01))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* @webda/core bumped from ^3.6.0 to ^3.7.0
* @webda/workout bumped from ^3.0.4 to ^3.1.0
* devDependencies
* @webda/tsc-esm bumped from ^1.0.6 to ^1.1.0

## [3.1.0](https://github.com/loopingz/webda.io/compare/async-v3.0.10...async-v3.1.0) (2023-10-04)


Expand Down
8 changes: 4 additions & 4 deletions packages/async/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@webda/async",
"version": "3.1.1",
"version": "3.2.0",
"description": "Async System",
"main": "lib/index.js",
"scripts": {
Expand All @@ -20,8 +20,8 @@
"package.json"
],
"dependencies": {
"@webda/core": "^3.6.0",
"@webda/workout": "^3.0.4",
"@webda/core": "^3.7.0",
"@webda/workout": "^3.1.0",
"axios": "^1.1.3",
"json-schema": "^0.4.0",
"node-cron": "^3.0.2",
Expand All @@ -30,7 +30,7 @@
"devDependencies": {
"@testdeck/mocha": "^0.3.3",
"@types/node": "14.6.0",
"@webda/tsc-esm": "^1.0.6",
"@webda/tsc-esm": "^1.1.0",
"mocha": "^10.0.0",
"sinon": "^17.0.0",
"source-map-support": "^0.5.19",
Expand Down
20 changes: 20 additions & 0 deletions packages/aws/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,26 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
* devDependencies
* @webda/shell bumped from ^3.3.0 to ^3.4.0

## [3.2.0](https://github.com/loopingz/webda.io/compare/aws-v3.1.10...aws-v3.2.0) (2023-11-12)


### Features

* add CoreModel listeners system ([977dd9d](https://github.com/loopingz/webda.io/commit/977dd9d8a04f5b3e6d19f09f8755277b26242a18))
* drop node16 as it is EOL ([a6b795a](https://github.com/loopingz/webda.io/commit/a6b795a76e5089a0cf81269c49e00131bc17c1a9))
* RESTDomainService: add the url info retriever on Binaries ([13fe77c](https://github.com/loopingz/webda.io/commit/13fe77ccd0082432ea79ec9b7c32ac261cebeb01))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* @webda/async bumped from ^3.1.1 to ^3.2.0
* @webda/core bumped from ^3.6.0 to ^3.7.0
* @webda/workout bumped from ^3.0.4 to ^3.1.0
* devDependencies
* @webda/shell bumped from ^3.4.0 to ^3.5.0

## [3.1.9](https://github.com/loopingz/webda.io/compare/aws-v3.1.8...aws-v3.1.9) (2023-10-04)


Expand Down
10 changes: 5 additions & 5 deletions packages/aws/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@webda/aws",
"version": "3.1.10",
"version": "3.2.0",
"description": "Webda AWS Services implementation",
"main": "lib/index.js",
"scripts": {
Expand Down Expand Up @@ -50,9 +50,9 @@
"@types/json-schema": "^7.0.8",
"@types/mocha": "^10.0.0",
"@types/node": "^14.0.0",
"@webda/async": "^3.1.1",
"@webda/core": "^3.6.0",
"@webda/workout": "^3.0.4",
"@webda/async": "^3.2.0",
"@webda/core": "^3.7.0",
"@webda/workout": "^3.1.0",
"bluebird": "^3.7.2",
"commitlint": "^18.1.0",
"cookie": "^0.6.0",
Expand Down Expand Up @@ -86,7 +86,7 @@
"@testdeck/mocha": "^0.3.2",
"@types/aws-lambda": "^8.10.97",
"@types/node": "14.6.0",
"@webda/shell": "^3.4.0",
"@webda/shell": "^3.5.0",
"aws-sdk-client-mock": "^3.0.0",
"node-fetch": "^3.3.1",
"sinon": "^17.0.0"
Expand Down
29 changes: 29 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,35 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline



## [3.7.0](https://github.com/loopingz/webda.io/compare/core-v3.6.0...core-v3.7.0) (2023-11-12)


### Features

* add an isEmpty method for Binary ([daf5832](https://github.com/loopingz/webda.io/commit/daf5832f4ca8b867eff1669e455f9761f1a15834))
* add CoreModel listeners system ([977dd9d](https://github.com/loopingz/webda.io/commit/977dd9d8a04f5b3e6d19f09f8755277b26242a18))
* add execute/wait method to Throttler ([b6cd66b](https://github.com/loopingz/webda.io/commit/b6cd66b49cc051f1eec085542fa4cf76f822f19f))
* add iterate generator methods ([ff45183](https://github.com/loopingz/webda.io/commit/ff45183625bdce480f396f88f594fe196415d3da))
* drop node16 as it is EOL ([a6b795a](https://github.com/loopingz/webda.io/commit/a6b795a76e5089a0cf81269c49e00131bc17c1a9))
* modelmapper service ([e5eee5f](https://github.com/loopingz/webda.io/commit/e5eee5f9c79f513a6bd9efe2e464c4491ac6924b))
* RESTDomainService: add the url info retriever on Binaries ([13fe77c](https://github.com/loopingz/webda.io/commit/13fe77ccd0082432ea79ec9b7c32ac261cebeb01))
* Store: add additionalModels to compose models in store ([e0f1d69](https://github.com/loopingz/webda.io/commit/e0f1d69c7a1302c9df1ea2fa365e422b141c0d89))
* Throttler add a static method ([dd5178e](https://github.com/loopingz/webda.io/commit/dd5178e385bd970ab0e36a6f4ecb6dd63b438bc2))


### Bug Fixes

* BinaryFile: fallback on originalname if name is not present ([245a24b](https://github.com/loopingz/webda.io/commit/245a24b97963d51c2b5085fa29c5b54e40bf46d4))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* @webda/workout bumped from ^3.0.4 to ^3.1.0
* devDependencies
* @webda/tsc-esm bumped from ^1.0.6 to ^1.1.0

## [3.6.0](https://github.com/loopingz/webda.io/compare/core-v3.5.0...core-v3.6.0) (2023-10-07)


Expand Down
6 changes: 3 additions & 3 deletions packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@webda/core",
"version": "3.6.0",
"version": "3.7.0",
"description": "Expose API with Lambda",
"keywords": [
"aws",
Expand All @@ -24,7 +24,7 @@
},
"dependencies": {
"@types/json-schema": "^7.0.8",
"@webda/workout": "^3.0.4",
"@webda/workout": "^3.1.0",
"accept-language": "^3.0.18",
"ajv": "^8.6.2",
"ajv-formats": "^2.1.1",
Expand Down Expand Up @@ -61,7 +61,7 @@
"@testdeck/mocha": "^0.3.2",
"@types/node": "14.6.0",
"@types/nodemailer": "^6.4.4",
"@webda/tsc-esm": "^1.0.6",
"@webda/tsc-esm": "^1.1.0",
"antlr4ts-cli": "^0.5.0-alpha.4",
"axios": "^1.1.3",
"c8": "^8.0.0",
Expand Down
16 changes: 16 additions & 0 deletions packages/elasticsearch/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,22 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
* devDependencies
* @webda/shell bumped from ^3.3.0 to ^3.4.0

## [3.1.0](https://github.com/loopingz/webda.io/compare/elasticsearch-v3.0.12...elasticsearch-v3.1.0) (2023-11-12)


### Features

* drop node16 as it is EOL ([a6b795a](https://github.com/loopingz/webda.io/commit/a6b795a76e5089a0cf81269c49e00131bc17c1a9))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* @webda/core bumped from ^3.6.0 to ^3.7.0
* devDependencies
* @webda/shell bumped from ^3.4.0 to ^3.5.0

## [3.0.11](https://github.com/loopingz/webda.io/compare/elasticsearch-v3.0.10...elasticsearch-v3.0.11) (2023-10-04)


Expand Down
6 changes: 3 additions & 3 deletions packages/elasticsearch/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@webda/elasticsearch",
"version": "3.0.12",
"version": "3.1.0",
"description": "Webda ElasticSearch implementation",
"main": "lib/index.js",
"scripts": {
Expand Down Expand Up @@ -32,7 +32,7 @@
"homepage": "https://github.com/loopingz/webda.io#readme",
"dependencies": {
"@elastic/elasticsearch": "^8.1.0",
"@webda/core": "^3.6.0",
"@webda/core": "^3.7.0",
"dateformat": "^5.0.3",
"yaml": "^2.0.0"
},
Expand All @@ -54,7 +54,7 @@
"devDependencies": {
"@testdeck/mocha": "^0.3.2",
"@types/node": "14.6.0",
"@webda/shell": "^3.4.0",
"@webda/shell": "^3.5.0",
"sinon": "^17.0.0"
},
"type": "module",
Expand Down
18 changes: 18 additions & 0 deletions packages/gcp/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,24 @@
* @webda/async bumped from ^3.0.9 to ^3.0.10
* @webda/shell bumped from ^3.2.0 to ^3.2.1

## [3.2.0](https://github.com/loopingz/webda.io/compare/gcp-v3.1.9...gcp-v3.2.0) (2023-11-12)


### Features

* drop node16 as it is EOL ([a6b795a](https://github.com/loopingz/webda.io/commit/a6b795a76e5089a0cf81269c49e00131bc17c1a9))
* RESTDomainService: add the url info retriever on Binaries ([13fe77c](https://github.com/loopingz/webda.io/commit/13fe77ccd0082432ea79ec9b7c32ac261cebeb01))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* @webda/core bumped from ^3.6.0 to ^3.7.0
* devDependencies
* @webda/async bumped from ^3.1.1 to ^3.2.0
* @webda/shell bumped from ^3.4.0 to ^3.5.0

## [3.1.9](https://github.com/loopingz/webda.io/compare/gcp-v3.1.8...gcp-v3.1.9) (2023-10-07)


Expand Down
8 changes: 4 additions & 4 deletions packages/gcp/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@webda/gcp",
"version": "3.1.9",
"version": "3.2.0",
"description": "Webda GCP Services implementation",
"main": "lib/index.js",
"scripts": {
Expand Down Expand Up @@ -35,7 +35,7 @@
"@google-cloud/firestore": "^7.0.0",
"@google-cloud/pubsub": "^4.0.1",
"@google-cloud/storage": "~7.6.0",
"@webda/core": "^3.6.0",
"@webda/core": "^3.7.0",
"mime-types": "^2.1.35"
},
"c8": {
Expand All @@ -57,8 +57,8 @@
"devDependencies": {
"@testdeck/mocha": "^0.3.2",
"@types/node": "14.6.0",
"@webda/async": "^3.1.1",
"@webda/shell": "^3.4.0",
"@webda/async": "^3.2.0",
"@webda/shell": "^3.5.0",
"sinon": "^17.0.0",
"uuid": "^9.0.0"
},
Expand Down
16 changes: 16 additions & 0 deletions packages/google-auth/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,22 @@
* devDependencies
* @webda/shell bumped from ^3.3.0 to ^3.4.0

## [3.1.0](https://github.com/loopingz/webda.io/compare/google-auth-v3.0.12...google-auth-v3.1.0) (2023-11-12)


### Features

* drop node16 as it is EOL ([a6b795a](https://github.com/loopingz/webda.io/commit/a6b795a76e5089a0cf81269c49e00131bc17c1a9))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* @webda/core bumped from ^3.6.0 to ^3.7.0
* devDependencies
* @webda/shell bumped from ^3.4.0 to ^3.5.0

## [3.0.11](https://github.com/loopingz/webda.io/compare/google-auth-v3.0.10...google-auth-v3.0.11) (2023-10-04)


Expand Down
Loading

0 comments on commit 4617fb9

Please sign in to comment.