Skip to content

Commit

Permalink
misc: bump version 0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jdenquin committed Sep 8, 2022
1 parent af7b01f commit a95a82b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion api
Submodule api updated 116 files
8 changes: 4 additions & 4 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ services:

api:
container_name: lago-api
image: getlago/api:v0.7.0-alpha
image: getlago/api:v0.8.0-alpha
restart: unless-stopped
depends_on:
- db
Expand Down Expand Up @@ -64,7 +64,7 @@ services:

front:
container_name: lago-front
image: getlago/front:v0.7.0-alpha
image: getlago/front:v0.8.0-alpha
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 @@ -100,7 +100,7 @@ services:

api-worker:
container_name: lago-worker
image: getlago/api:v0.7.0-alpha
image: getlago/api:v0.8.0-alpha
restart: unless-stopped
depends_on:
- api
Expand Down Expand Up @@ -129,7 +129,7 @@ services:

api-clock:
container_name: lago-clock
image: getlago/api:v0.7.0-alpha
image: getlago/api:v0.8.0-alpha
restart: unless-stopped
depends_on:
- api
Expand Down
2 changes: 1 addition & 1 deletion front
Submodule front updated 97 files
+0 −8 .babelrc
+1 −1 .env.template
+29 −18 .github/workflows/codegen.yml
+14 −26 .github/workflows/cypress.yml
+32 −0 .github/workflows/stories.yml
+2 −1 .gitignore
+53 −0 .storybook/main.js
+8 −0 .storybook/preview-body.html
+32 −0 .storybook/preview.tsx
+2 −2 CONTRIBUTING.md
+0 −1 Dockerfile
+4 −0 README.md
+0 −1 cypress/cypress.config.js
+60 −60 cypress/e2e/auth/t0-signup.cy.ts
+13 −17 cypress/e2e/auth/t1-login.cy.ts
+0 −5 cypress/fixtures/example.json
+145 −20 ditto/base.json
+8 −0 ditto/config.yml
+12 −0 ditto/index.js
+15 −0 docker-compose.ci.yml
+46 −37 package.json
+4 −2 src/components/DebugInfoDialog.tsx
+2 −2 src/components/addOns/AddOnCodeSnippet.tsx
+9 −9 src/components/billableMetrics/BillableMetricCodeSnippet.tsx
+2 −2 src/components/coupons/CouponCodeSnippet.tsx
+7 −7 src/components/customers/AddCustomerDialog.tsx
+3 −3 src/components/customers/CustomerItem.tsx
+3 −3 src/components/customers/CustomerMainInfos.tsx
+97 −10 src/components/customers/subscriptions/AddPlanToCustomerDialog.tsx
+13 −2 src/components/customers/subscriptions/CustomerSubscriptionsList.tsx
+13 −2 src/components/customers/subscriptions/SubscriptionItem.tsx
+10 −6 src/components/customers/usage/UsageItem.tsx
+3 −3 src/components/debugger/EventItem.tsx
+2 −2 src/components/designSystem/Avatar.tsx
+3 −6 src/components/designSystem/Button.tsx
+6 −1 src/components/designSystem/ButtonLink.tsx
+1 −1 src/components/designSystem/Icon/Icon.tsx
+4 −0 src/components/designSystem/Icon/mapping.tsx
+5 −5 src/components/designSystem/NavigationTab.tsx
+2 −2 src/components/designSystem/Status.tsx
+0 −158 src/components/designSystem/Tabs/BasicTabs.tsx
+0 −3 src/components/designSystem/Tabs/index.ts
+1 −1 src/components/designSystem/Toasts/Toast.tsx
+4 −2 src/components/designSystem/Typography.tsx
+1 −1 src/components/designSystem/index.ts
+18 −13 src/components/form/ButtonSelector/ButtonSelector.tsx
+21 −41 src/components/form/ButtonSelector/TabButton.tsx
+14 −5 src/components/form/ComboBox/ComboBox.tsx
+21 −3 src/components/form/ComboBox/ComboBoxField.tsx
+17 −11 src/components/form/ComboBox/ComboBoxItem.tsx
+31 −3 src/components/form/ComboBox/ComboBoxPopperFactory.tsx
+53 −94 src/components/form/ComboBox/ComboBoxVirtualizedList.tsx
+137 −0 src/components/form/ComboBox/ComboboxList.tsx
+22 −6 src/components/form/ComboBox/types.ts
+14 −4 src/components/form/DatePicker/DatePicker.tsx
+5 −2 src/components/form/TextInput/TextInput.tsx
+38 −10 src/components/plans/ChargeAccordion.tsx
+265 −126 src/components/plans/ChargePercentage.tsx
+12 −6 src/components/plans/PackageCharge.tsx
+2 −2 src/components/plans/PlanCodeSnippet.tsx
+64 −16 src/components/plans/PlanForm.tsx
+287 −0 src/components/plans/VolumeChargeTable.tsx
+291 −0 src/components/wallets/AddWalletToCustomerDialog.tsx
+200 −0 src/components/wallets/CustomerWalletList.tsx
+57 −0 src/components/wallets/TerminateCustomerWalletDialog.tsx
+254 −0 src/components/wallets/TopupWalletDialog.tsx
+150 −0 src/components/wallets/UpdateCustomerWalletDialog.tsx
+392 −0 src/components/wallets/WalletAccordion.tsx
+282 −0 src/components/wallets/WalletTransactionList.tsx
+8 −0 src/core/apolloClient/cache.ts
+1 −1 src/externalUrls.ts
+441 −55 src/generated/graphql.tsx
+40 −1 src/hooks/core/__tests__/useInternationalization.test.tsx
+316 −0 src/hooks/plans/__tests__/useVolumeChargeForm.test.tsx
+22 −2 src/hooks/plans/useCreateEditPlan.ts
+167 −0 src/hooks/plans/useVolumeChargeForm.ts
+2 −2 src/hooks/useCreateEditCustomer.ts
+6 −7 src/layouts/SideNavLayout.tsx
+101 −21 src/pages/CustomerDetails.tsx
+85 −3 src/pages/__devOnly/DesignSystem.tsx
+2 −2 src/pages/auth/Login.tsx
+5 −5 src/pages/auth/SignUp.tsx
+6 −6 src/pages/developpers/Debugger.tsx
+3 −0 src/public/icons/sync.svg
+3 −0 src/public/icons/wallet.svg
+40 −0 src/stories/Alert.stories.tsx
+54 −0 src/stories/Button.stories.tsx
+147 −0 src/stories/Combobox.stories.tsx
+24 −0 src/stories/Icon.stories.tsx
+24 −0 src/stories/Introduction.stories.mdx
+115 −0 src/stories/NavigationTab.stories.tsx
+36 −0 src/stories/TextInput.stories.tsx
+55 −0 src/stories/Typography.stories.tsx
+ src/stories/assets/maneki.png
+2 −2 src/styles/customer.tsx
+0 −1 webpack.prod.js
+6,449 −751 yarn.lock

0 comments on commit a95a82b

Please sign in to comment.