Skip to content

Commit

Permalink
misc: Version 1.1.2 (#340)
Browse files Browse the repository at this point in the history
  • Loading branch information
vincent-pochet committed Apr 12, 2024
1 parent 04b8740 commit 6732660
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion api
Submodule api updated 158 files
10 changes: 5 additions & 5 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ services:

api:
container_name: lago-api
image: getlago/api:v1.1.1
image: getlago/api:v1.1.2
restart: unless-stopped
depends_on:
- db
Expand Down Expand Up @@ -87,7 +87,7 @@ services:

front:
container_name: lago-front
image: getlago/front:v1.1.1
image: getlago/front:v1.1.2
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 @@ -126,7 +126,7 @@ services:

api-worker:
container_name: lago-worker
image: getlago/api:v1.1.1
image: getlago/api:v1.1.2
restart: unless-stopped
depends_on:
api:
Expand Down Expand Up @@ -170,7 +170,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.1.1
# image: getlago/api:v1.1.2
# restart: unless-stopped
# depends_on:
# api:
Expand Down Expand Up @@ -208,7 +208,7 @@ services:

api-clock:
container_name: lago-clock
image: getlago/api:v1.1.1
image: getlago/api:v1.1.2
restart: unless-stopped
depends_on:
api:
Expand Down
2 changes: 1 addition & 1 deletion front
Submodule front updated 32 files
+23 −4 ditto/base.json
+6 −0 ditto/config.yml
+4 −0 ditto/index.js
+119 −0 src/components/auth/GoogleAuthButton.tsx
+4 −1 src/components/creditNote/CreditNoteFormCalculation.tsx
+16 −0 src/components/designSystem/Status.tsx
+75 −0 src/components/invoices/DisputeInvoiceDialog.tsx
+1 −1 src/components/invoices/FinalizeInvoiceDialog.tsx
+17 −0 src/components/invoices/InvoiceCustomerInfos.tsx
+10 −4 src/components/invoices/InvoiceListItem.tsx
+7 −1 src/components/invoices/details/EditFeeDrawer.tsx
+75 −20 src/components/invoices/details/InvoiceDetailsTableBodyLine.tsx
+219 −0 src/components/invoices/details/__tests__/InvoiceDetailsTableBodyLine.test.ts
+1 −0 src/components/settings/members/CreateInviteDialog.tsx
+1 −10 src/components/settings/members/RevokeInviteDialog.tsx
+7 −0 src/core/apolloClient/graphqlResolvers.tsx
+1 −2 src/core/apolloClient/init.ts
+2 −0 src/core/constants/externalUrls.ts
+9 −0 src/core/router/AuthRoutes.tsx
+35 −0 src/core/utils/__tests__/urlUtils.test.ts
+12 −0 src/core/utils/urlUtils.ts
+462 −25 src/generated/graphql.tsx
+4 −0 src/hooks/__tests__/fixtures.ts
+27 −1 src/layouts/CustomerInvoiceDetails.tsx
+6 −2 src/pages/CreateCreditNote.tsx
+141 −68 src/pages/Invitation.tsx
+15 −1 src/pages/InvoicesList.tsx
+7 −0 src/pages/__devOnly/DesignSystem.tsx
+100 −0 src/pages/auth/GoogleAuthCallback.tsx
+86 −69 src/pages/auth/Login.tsx
+234 −118 src/pages/auth/SignUp.tsx
+1 −1 src/styles/muiTheme.ts

0 comments on commit 6732660

Please sign in to comment.