Skip to content

Commit

Permalink
chore(version) - Bump version to v1.15.0 (#420)
Browse files Browse the repository at this point in the history
  • Loading branch information
nudded authored Oct 29, 2024
1 parent 5d08b61 commit 29c5b12
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion api
Submodule api updated 335 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.14.0
image: getlago/api:v1.15.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.14.0
image: getlago/front:v1.15.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.14.0
image: getlago/api:v1.15.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.14.0
# image: getlago/api:v1.15.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.14.0
# image: getlago/api:v1.15.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.14.0
image: getlago/api:v1.15.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 85 files
+2 −20 src/components/creditNote/CreditNotesTable.tsx
+1 −0 src/components/creditNote/types.ts
+2 −21 src/components/customerPortal/PortalInvoicesList.tsx
+2 −20 src/components/customers/CustomerInvoicesList.tsx
+79 −5 src/components/customers/CustomerMainInfos.tsx
+20 −1 src/components/customers/addDrawer/AddCustomerDrawer.tsx
+335 −27 src/components/customers/addDrawer/ExternalAppsAccordion.tsx
+5 −9 src/components/designSystem/Avatar.tsx
+1 −0 src/components/designSystem/Chip.tsx
+10 −4 src/components/designSystem/Drawer.tsx
+5 −14 src/components/designSystem/Filters/ActiveFiltersList.tsx
+5 −33 src/components/designSystem/Filters/Filters.tsx
+1 −15 src/components/designSystem/Filters/FiltersPanelItemTypeSwitch.tsx
+25 −136 src/components/designSystem/Filters/FiltersPanelPoper.tsx
+29 −41 src/components/designSystem/Filters/InvoiceStatusQuickFilter.tsx
+3 −39 src/components/designSystem/Filters/QuickFilters.tsx
+8 −42 src/components/designSystem/Filters/filtersElements/FiltersItemIssuingDate.tsx
+2 −0 src/components/designSystem/Icon/mapping.tsx
+1 −0 src/components/designSystem/NavigationTab.tsx
+12 −8 src/components/designSystem/Tooltip.tsx
+15 −38 src/components/designSystem/Typography.tsx
+33 −38 src/components/developers/DebuggerEventDetails.tsx
+5 −11 src/components/developers/EventItem.tsx
+200 −0 src/components/emails/DunningEmail.tsx
+120 −94 src/components/invoices/InvoiceCreditNotesTable.tsx
+5 −42 src/components/invoices/InvoicesList.tsx
+6 −2 src/components/settings/PreviewEmailLayout.tsx
+74 −0 src/components/settings/dunnings/DefaultCampaignDialog.tsx
+126 −0 src/components/settings/dunnings/PreviewCampaignEmailDrawer.tsx
+20 −4 src/components/settings/integrations/AddGocardlessDialog.tsx
+11 −16 src/components/settings/integrations/AddHubspotDialog.tsx
+0 −4 src/components/settings/integrations/NetsuiteIntegrationMapItemDialog.tsx
+33 −0 src/core/constants/externalUrls.ts
+12 −0 src/core/constants/form.ts
+20 −0 src/core/router/SettingRoutes.tsx
+11 −1 src/core/serializers/serializeCreditNoteInput.ts
+28 −0 src/core/utils/downloadFiles.ts
+10 −0 src/formValidation/feesSchema.ts
+654 −168 src/generated/graphql.tsx
+23 −0 src/hooks/useCreateCreditNote.ts
+5 −0 src/hooks/useCreateEditCustomer.ts
+3 −0 src/hooks/usePermissions.ts
+151 −45 src/layouts/CustomerInvoiceDetails.tsx
+7 −0 src/layouts/Settings.tsx
+115 −20 src/pages/CreateCreditNote.tsx
+104 −100 src/pages/CreditNoteDetails.tsx
+2 −20 src/pages/CustomerDetails.tsx
+42 −207 src/pages/CustomerRequestOverduePayment/components/EmailPreview.tsx
+26 −100 src/pages/CustomerRequestOverduePayment/index.tsx
+33 −13 src/pages/InvoiceCreditNoteList.tsx
+96 −4 src/pages/InvoiceOverview.tsx
+3 −2 src/pages/__devOnly/DesignSystem.tsx
+6 −7 src/pages/developers/Debugger.tsx
+1 −1 src/pages/developers/WebhookLogs.tsx
+1 −1 src/pages/settings/AdyenIntegrationDetails.tsx
+1 −1 src/pages/settings/AdyenIntegrations.tsx
+1 −1 src/pages/settings/AnrokIntegrationDetails.tsx
+1 −1 src/pages/settings/AnrokIntegrations.tsx
+1 −1 src/pages/settings/Authentication/Authentication.tsx
+1 −1 src/pages/settings/Authentication/OktaAuthenticationDetails.tsx
+479 −0 src/pages/settings/Dunnings/CreateDunning.tsx
+291 −0 src/pages/settings/Dunnings/Dunnings.tsx
+21 −5 src/pages/settings/GocardlessIntegrationDetails.tsx
+1 −1 src/pages/settings/GocardlessIntegrationOauthCallback.tsx
+1 −1 src/pages/settings/GocardlessIntegrations.tsx
+1 −7 src/pages/settings/HubspotIntegrationDetails.tsx
+1 −1 src/pages/settings/HubspotIntegrations.tsx
+12 −12 src/pages/settings/Integrations.tsx
+1 −1 src/pages/settings/LagoTaxManagementIntegration.tsx
+1 −1 src/pages/settings/NetsuiteIntegrationDetails.tsx
+1 −1 src/pages/settings/NetsuiteIntegrations.tsx
+1 −1 src/pages/settings/StripeIntegrationDetails.tsx
+1 −1 src/pages/settings/StripeIntegrations.tsx
+1 −1 src/pages/settings/XeroIntegrationDetails.tsx
+1 −1 src/pages/settings/XeroIntegrations.tsx
+15 −0 src/public/icons/star-outlined-hidden.svg
+4 −0 src/styles/mainObjectsForm.tsx
+32 −7 tailwind.config.ts
+71 −10 translations/base.json
+2 −4 translations/de.json
+2 −31 translations/es.json
+2 −4 translations/fr.json
+2 −4 translations/it.json
+2 −4 translations/nb.json
+2 −4 translations/sv.json

0 comments on commit 29c5b12

Please sign in to comment.