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

misc: Bump version from 1.13.1 to 1.14.0 #419

Merged
merged 1 commit into from
Oct 17, 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
2 changes: 1 addition & 1 deletion api
Submodule api updated 137 files
22 changes: 11 additions & 11 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,12 @@ services:

api:
container_name: lago-api
image: getlago/api:v1.13.1
image: getlago/api:v1.14.0
restart: unless-stopped
depends_on:
- db
- redis
command: ['./scripts/start.sh']
command: ["./scripts/start.sh"]
healthcheck:
test: curl -f http://localhost:3000/health || exit 1
interval: 10s
Expand Down Expand Up @@ -91,7 +91,7 @@ services:

front:
container_name: lago-front
image: getlago/front:v1.13.1
image: getlago/front:v1.14.0
restart: unless-stopped
# Use this command if you want to use SSL with Let's Encrypt
# command: "/bin/sh -c 'while :; do sleep 6h & wait $${!}; nginx -s reload; done & nginx -g \"daemon off;\"'"
Expand Down Expand Up @@ -130,14 +130,14 @@ services:

api-worker:
container_name: lago-worker
image: getlago/api:v1.13.1
image: getlago/api:v1.14.0
restart: unless-stopped
depends_on:
api:
condition: service_healthy
command: ['./scripts/start.worker.sh']
command: ["./scripts/start.worker.sh"]
healthcheck:
test: ['CMD-SHELL', 'bundle exec sidekiqmon | grep $(hostname) || exit 1']
test: ["CMD-SHELL", "bundle exec sidekiqmon | grep $(hostname) || exit 1"]
environment:
- LAGO_API_URL=${LAGO_API_URL:-http://localhost:3000}
- DATABASE_URL=postgresql://${POSTGRES_USER:-lago}:${POSTGRES_PASSWORD:-changeme}@${POSTGRES_HOST:-db}:${POSTGRES_PORT:-5432}/${POSTGRES_DB:-lago}?search_path=${POSTGRES_SCHEMA:-public}
Expand Down Expand Up @@ -178,7 +178,7 @@ services:
# It is recommendend if you have a high usage of events to not impact the other Sidekiq Jobs.
#api-events-worker:
# container_name: lago-events-worker
# image: getlago/api:v1.13.1
# image: getlago/api:v1.14.0
# restart: unless-stopped
# depends_on:
# api:
Expand Down Expand Up @@ -221,7 +221,7 @@ services:
# It is recommended if you have a high usage of invoices being created to not impact the other Sidekiq Jobs.
#api-pdfs-worker:
# container_name: lago-pdfs-worker
# image: getlago/api:v1.13.1
# image: getlago/api:v1.14.0
# restart: unless-stopped
# depends_on:
# api:
Expand Down Expand Up @@ -262,12 +262,12 @@ services:

api-clock:
container_name: lago-clock
image: getlago/api:v1.13.1
image: getlago/api:v1.14.0
restart: unless-stopped
depends_on:
api:
condition: service_healthy
command: ['./scripts/start.clock.sh']
command: ["./scripts/start.clock.sh"]
environment:
- LAGO_API_URL=${LAGO_API_URL:-http://localhost:3000}
- DATABASE_URL=postgresql://${POSTGRES_USER:-lago}:${POSTGRES_PASSWORD:-changeme}@${POSTGRES_HOST:-db}:${POSTGRES_PORT:-5432}/${POSTGRES_DB:-lago}?search_path=${POSTGRES_SCHEMA:-public}
Expand Down Expand Up @@ -296,7 +296,7 @@ services:
depends_on:
- db
- redis
command: ['./scripts/start.migrate.sh']
command: ["./scripts/start.migrate.sh"]
volumes:
- lago_storage_data:/app/storage
environment:
Expand Down
2 changes: 1 addition & 1 deletion front
Submodule front updated 57 files
+1 −1 nginx/nginx.conf
+3 −1 src/components/SearchInput.tsx
+202 −179 src/components/customerPortal/PortalCustomerInfos.tsx
+199 −65 src/components/customerPortal/PortalInvoicesList.tsx
+0 −184 src/components/customerPortal/PortalOverview.tsx
+10 −0 src/components/customerPortal/common/CustomerPortalLoading.tsx
+30 −0 src/components/customerPortal/common/CustomerPortalSections.tsx
+80 −0 src/components/customerPortal/common/CustomerPortalSidebar.tsx
+19 −0 src/components/customerPortal/common/PageTitle.tsx
+42 −0 src/components/customerPortal/common/SectionError.tsx
+145 −0 src/components/customerPortal/common/SectionLoading.tsx
+28 −0 src/components/customerPortal/common/SectionTitle.tsx
+23 −0 src/components/customerPortal/common/TextButton.tsx
+50 −0 src/components/customerPortal/common/hooks/useCustomerPortalNavigation.ts
+54 −0 src/components/customerPortal/common/useCustomerPortalTranslate.ts
+334 −0 src/components/customerPortal/customerInformation/CustomerInformationPage.tsx
+169 −0 src/components/customerPortal/usage/UsagePage.tsx
+86 −0 src/components/customerPortal/usage/UsageSection.tsx
+103 −0 src/components/customerPortal/usage/UsageSubscriptionItem.tsx
+31 −0 src/components/customerPortal/utils.ts
+151 −0 src/components/customerPortal/wallet/WalletPage.tsx
+222 −0 src/components/customerPortal/wallet/WalletSection.tsx
+284 −270 src/components/customers/CustomerSettings.tsx
+25 −9 src/components/customers/usage/SubscriptionUsageDetailDrawer.tsx
+36 −91 src/components/designSystem/Icon/Icon.tsx
+27 −79 src/components/designSystem/Toasts/Toast.tsx
+2 −14 src/components/designSystem/Toasts/ToastContainer.tsx
+9 −36 src/components/designSystem/graphs/AreaChart.tsx
+9 −48 src/components/designSystem/graphs/ChartHeader.tsx
+11 −31 src/components/designSystem/graphs/InlineBarsChart.tsx
+3 −11 src/components/graphs/Invoices.tsx
+3 −11 src/components/graphs/Usage.tsx
+17 −0 src/components/layouts/Charts.tsx
+1 −1 src/components/layouts/Settings.tsx
+121 −0 src/components/settings/LanguageSettingsButton.tsx
+139 −0 src/components/settings/PreviewEmailLayout.tsx
+175 −90 src/components/subscriptions/SubscriptionCurrentUsageTable.tsx
+100 −31 src/components/subscriptions/SubscriptionUsageLifetimeGraph.tsx
+1 −1 src/core/apolloClient/reactiveVars/toastVar.ts
+26 −0 src/core/router/CustomerPortalRoutes.tsx
+12 −0 src/core/timezone/utils.ts
+428 −35 src/generated/graphql.tsx
+18 −0 src/main.css
+2 −2 src/pages/CustomerRequestOverduePayment/components/EmailPreview.tsx
+2 −102 src/pages/auth/PortalInit.tsx
+127 −87 src/pages/customerPortal/CustomerPortal.tsx
+58 −348 src/pages/settings/EmailScenarioConfig.tsx
+1 −1 src/pages/settings/HubspotIntegrationDetails.tsx
+4 −4 src/styles/muiTheme.ts
+10 −0 tailwind.config.ts
+47 −12 translations/base.json
+96 −1 translations/de.json
+123 −1 translations/es.json
+98 −3 translations/fr.json
+69 −1 translations/it.json
+96 −1 translations/nb.json
+96 −1 translations/sv.json