Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v0.22.0 #716

Merged
merged 4 commits into from
Jul 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions apps/api/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@impler/api",
"version": "0.21.1",
"version": "0.22.0",
"author": "implerhq",
"license": "MIT",
"private": true,
Expand All @@ -19,9 +19,9 @@
"test": "cross-env TZ=UTC NODE_ENV=test E2E_RUNNER=true mocha --timeout 10000 --require ts-node/register --exit src/**/**/*.spec.ts"
},
"dependencies": {
"@impler/dal": "^0.21.1",
"@impler/services": "^0.21.1",
"@impler/shared": "^0.21.1",
"@impler/dal": "^0.22.0",
"@impler/services": "^0.22.0",
"@impler/shared": "^0.22.0",
"@nestjs/common": "^9.1.2",
"@nestjs/core": "^9.1.2",
"@nestjs/jwt": "^10.0.1",
Expand Down
8 changes: 4 additions & 4 deletions apps/queue-manager/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@impler/queue-manager",
"version": "0.21.1",
"version": "0.22.0",
"author": "implerhq",
"license": "MIT",
"private": true,
Expand All @@ -16,9 +16,9 @@
"lint:fix": "pnpm lint -- --fix"
},
"dependencies": {
"@impler/dal": "^0.21.1",
"@impler/services": "^0.21.1",
"@impler/shared": "^0.21.1",
"@impler/dal": "^0.22.0",
"@impler/services": "^0.22.0",
"@impler/shared": "^0.22.0",
"@sentry/node": "^7.112.2",
"axios": "1.6.2",
"dotenv": "^16.0.2",
Expand Down
2 changes: 1 addition & 1 deletion apps/web/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@impler/web",
"version": "0.21.1",
"version": "0.22.0",
"author": "implerhq",
"license": "MIT",
"private": true,
Expand Down
6 changes: 3 additions & 3 deletions apps/widget/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@impler/widget",
"version": "0.21.1",
"version": "0.22.0",
"author": "implerhq",
"license": "MIT",
"private": true,
Expand Down Expand Up @@ -40,8 +40,8 @@
"@craco/craco": "^6.4.5",
"@emotion/react": "^11.10.5",
"@handsontable/react": "^14.1.0",
"@impler/client": "^0.21.1",
"@impler/shared": "^0.21.1",
"@impler/client": "^0.22.0",
"@impler/shared": "^0.22.0",
"@mantine/core": "6.0.21",
"@mantine/dropzone": "6.0.21",
"@mantine/hooks": "6.0.21",
Expand Down
1 change: 1 addition & 0 deletions docker/.env.example
Original file line number Diff line number Diff line change
Expand Up @@ -39,5 +39,6 @@ SES_ACCESS_KEY_ID=
SES_SECRET_ACCESS_KEY=
EMAIL_FROM=
EMAIL_FROM_NAME=
ALERT_EMAIL_FROM=

EXECUTION_MODE=SANDBOXED
17 changes: 12 additions & 5 deletions docker/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ services:
- impler
api:
privileged: true
image: "ghcr.io/implerhq/impler/api:0.21.1"
image: "ghcr.io/implerhq/impler/api:0.22.0"
depends_on:
- mongodb
- rabbitmq
Expand All @@ -44,12 +44,13 @@ services:
SES_SECRET_ACCESS_KEY: ${SES_SECRET_ACCESS_KEY}
EMAIL_FROM: ${EMAIL_FROM}
EMAIL_FROM_NAME: ${EMAIL_FROM_NAME}
ALERT_EMAIL_FROM: ${ALERT_EMAIL_FROM}
ports:
- "3000:3000"
networks:
- impler
queue-manager:
image: "ghcr.io/implerhq/impler/queue-manager:0.21.1"
image: "ghcr.io/implerhq/impler/queue-manager:0.22.0"
depends_on:
- api
- rabbitmq
Expand All @@ -63,10 +64,16 @@ services:
S3_BUCKET_NAME: ${S3_BUCKET_NAME}
AWS_ACCESS_KEY_ID: ${AWS_ACCESS_KEY_ID}
AWS_SECRET_ACCESS_KEY: ${AWS_SECRET_ACCESS_KEY}
SES_REGION: ${SES_REGION}
SES_ACCESS_KEY_ID: ${SES_ACCESS_KEY_ID}
SES_SECRET_ACCESS_KEY: ${SES_SECRET_ACCESS_KEY}
EMAIL_FROM: ${EMAIL_FROM}
EMAIL_FROM_NAME: ${EMAIL_FROM_NAME}
ALERT_EMAIL_FROM: ${ALERT_EMAIL_FROM}
networks:
- impler
widget:
image: "ghcr.io/implerhq/impler/widget:0.21.1"
image: "ghcr.io/implerhq/impler/widget:0.22.0"
depends_on:
- api
container_name: widget
Expand All @@ -82,7 +89,7 @@ services:
embed:
depends_on:
- widget
image: "ghcr.io/implerhq/impler/embed:0.21.1"
image: "ghcr.io/implerhq/impler/embed:0.22.0"
container_name: embed
environment:
WIDGET_URL: ${WIDGET_BASE_URL}
Expand All @@ -93,7 +100,7 @@ services:
web:
depends_on:
- api
image: "ghcr.io/implerhq/impler/web:0.21.1"
image: "ghcr.io/implerhq/impler/web:0.22.0"
container_name: web
environment:
NEXT_PUBLIC_API_BASE_URL: ${API_ROOT_URL}
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
"npmClient": "pnpm",
"useNx": true,
"packages": ["apps/*", "libs/*", "packages/*"],
"version": "0.21.1"
"version": "0.22.0"
}
4 changes: 2 additions & 2 deletions libs/dal/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@impler/dal",
"version": "0.21.1",
"version": "0.22.0",
"author": "implerhq",
"license": "MIT",
"private": true,
Expand All @@ -16,7 +16,7 @@
"lint:fix": "eslint src --fix"
},
"dependencies": {
"@impler/shared": "^0.21.1",
"@impler/shared": "^0.22.0",
"class-transformer": "^0.5.1",
"date-fns": "^2.30.0",
"mongoose": "8.0.1",
Expand Down
2 changes: 1 addition & 1 deletion libs/embed/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@impler/embed",
"version": "0.21.1",
"version": "0.22.0",
"private": true,
"license": "MIT",
"author": "implerhq",
Expand Down
4 changes: 2 additions & 2 deletions libs/services/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@impler/services",
"version": "0.21.1",
"version": "0.22.0",
"description": "Reusable services to shared between backend api and queue-manager",
"license": "MIT",
"author": "implerhq",
Expand Down Expand Up @@ -30,7 +30,7 @@
"@aws-sdk/client-ses": "^3.616.0",
"@aws-sdk/lib-storage": "^3.360.0",
"@aws-sdk/s3-request-presigner": "^3.276.0",
"@impler/shared": "^0.21.1",
"@impler/shared": "^0.22.0",
"axios": "1.6.2",
"nodemailer": "^6.9.14",
"uuid": "^9.0.0"
Expand Down
5 changes: 1 addition & 4 deletions libs/shared/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@impler/shared",
"version": "0.21.1",
"version": "0.22.0",
"description": "Reusable types and classes to shared between apps and libraries",
"license": "MIT",
"author": "implerhq",
Expand Down Expand Up @@ -29,9 +29,6 @@
"typescript": "^4.8.3"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.185.0",
"@aws-sdk/lib-storage": "^3.360.0",
"@aws-sdk/s3-request-presigner": "^3.276.0",
"uuid": "^9.0.0"
},
"lint-staged": {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "impler.io",
"version": "0.21.1",
"version": "0.22.0",
"description": "Open source infrastructure to import data easily",
"packageManager": "pnpm@8.9.0",
"private": true,
Expand Down
4 changes: 2 additions & 2 deletions packages/client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@impler/client",
"version": "0.21.1",
"version": "0.22.0",
"description": "API client to be used in end user environments",
"license": "MIT",
"author": "implerhq",
Expand Down Expand Up @@ -37,7 +37,7 @@
"typescript": "4.8.4"
},
"dependencies": {
"@impler/shared": "^0.21.1",
"@impler/shared": "^0.22.0",
"axios": "1.6.2"
},
"engines": {
Expand Down
4 changes: 2 additions & 2 deletions packages/react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@impler/react",
"version": "0.21.1",
"version": "0.22.0",
"description": "React library to show widget in client applications",
"license": "MIT",
"author": "implerhq",
Expand Down Expand Up @@ -53,6 +53,6 @@
"typescript": "^4.4.4"
},
"dependencies": {
"@impler/shared": "^0.21.1"
"@impler/shared": "^0.22.0"
}
}
Loading
Loading