Skip to content

Commit

Permalink
misc(version): bump to 1.9.0 (#393)
Browse files Browse the repository at this point in the history
  • Loading branch information
jdenquin authored Aug 19, 2024
1 parent 02dd8f4 commit 7281097
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion api
Submodule api updated 250 files
14 changes: 7 additions & 7 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ services:

api:
container_name: lago-api
image: getlago/api:v1.8.2
image: getlago/api:v1.9.0
restart: unless-stopped
depends_on:
- db
Expand Down Expand Up @@ -91,7 +91,7 @@ services:

front:
container_name: lago-front
image: getlago/front:v1.8.2
image: getlago/front:v1.9.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 @@ -131,7 +131,7 @@ services:

api-worker:
container_name: lago-worker
image: getlago/api:v1.8.2
image: getlago/api:v1.9.0
restart: unless-stopped
depends_on:
api:
Expand Down Expand Up @@ -179,7 +179,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.8.2
# image: getlago/api:v1.9.0
# restart: unless-stopped
# depends_on:
# api:
Expand Down Expand Up @@ -222,7 +222,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.8.2
# image: getlago/api:v1.9.0
# restart: unless-stopped
# depends_on:
# api:
Expand Down Expand Up @@ -263,7 +263,7 @@ services:

api-clock:
container_name: lago-clock
image: getlago/api:v1.8.2
image: getlago/api:v1.9.0
restart: unless-stopped
depends_on:
api:
Expand Down Expand Up @@ -293,7 +293,7 @@ services:

migrate:
container_name: lago-migrate
image: getlago/api:v1.8.2
image: getlago/api:v1.9.0
depends_on:
- db
- redis
Expand Down
2 changes: 1 addition & 1 deletion front
Submodule front updated 43 files
+1 −1 .github/workflows/linter.yml
+0 −34 .github/workflows/manual-release.yml
+106 −11 .github/workflows/release.yml
+26 −0 ditto/base.json
+7 −6 package.json
+72 −0 scripts/translations/add.js
+0 −0 scripts/translations/inspect.js
+108 −115 src/components/customerPortal/PortalInvoicesList.tsx
+2 −0 src/components/customerPortal/PortalOverview.tsx
+3 −3 src/components/customers/addDrawer/ExternalAppsAccordion.tsx
+49 −18 src/components/designSystem/Alert.tsx
+4 −1 src/components/designSystem/Filters/filtersElements/FiltersItemInvoiceType.tsx
+4 −1 src/components/designSystem/Filters/filtersElements/FiltersItemPaymentStatus.tsx
+4 −1 src/components/designSystem/Filters/filtersElements/FiltersItemStatus.tsx
+3 −2 src/components/designSystem/NavigationTab.tsx
+18 −2 src/components/designSystem/Status.tsx
+121 −106 src/components/designSystem/Table/Table.tsx
+1 −1 src/components/designSystem/__tests__/Table.test.tsx
+1 −1 src/components/form/Checkbox/Checkbox.tsx
+3 −1 src/components/form/Radio/RadioGroupField.tsx
+216 −0 src/components/invoices/ExportInvoicesDialog.tsx
+2 −7 src/components/invoices/InvoicesList.tsx
+1 −1 src/components/plans/details/PlanDetailsCommitmentsSection.tsx
+12 −2 src/components/settings/integrations/AddLagoTaxManagementDialog.tsx
+76 −0 src/components/settings/integrations/AnrokIntegrationSettings.tsx
+12 −0 src/core/apolloClient/graphqlResolvers.tsx
+1 −1 src/core/apolloClient/reactiveVars/locationHistoryVar.ts
+183 −23 src/generated/graphql.tsx
+4 −1 src/hooks/core/useLocationHistory.ts
+16 −5 src/hooks/customer/useAddSubscription.tsx
+35 −0 src/hooks/useIntegrations.ts
+24 −0 src/hooks/useSalesForceConfig.ts
+39 −13 src/pages/CreateInvoice.tsx
+16 −10 src/pages/CreateSubscription.tsx
+1 −4 src/pages/CustomersList.tsx
+1 −1 src/pages/InvitationInit.tsx
+24 −8 src/pages/InvoicesPage.tsx
+32 −6 src/pages/__devOnly/DesignSystem.tsx
+29 −23 src/pages/auth/Login.tsx
+81 −69 src/pages/settings/TaxesSettings.tsx
+8 −0 src/styles/mainObjectsForm.tsx
+9 −1 src/styles/muiTheme.ts
+55 −79 yarn.lock

0 comments on commit 7281097

Please sign in to comment.