Skip to content
This repository has been archived by the owner on Mar 10, 2024. It is now read-only.

Commit

Permalink
chore: v0.6.0 (#416)
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasmarshall authored Mar 23, 2023
1 parent 6aba810 commit 5f85c81
Show file tree
Hide file tree
Showing 138 changed files with 2,023 additions and 983 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ https://user-images.githubusercontent.com/1925713/223279162-c53ceb43-b51e-4d78-9
### Run Supaglue locally

```shell
git clone -b v0.5.0 https://github.com/supaglue-labs/supaglue.git && cd supaglue
git clone -b v0.6.0 https://github.com/supaglue-labs/supaglue.git && cd supaglue
./scripts/create_quickstart_env.sh
docker compose up
```
Expand Down
2 changes: 1 addition & 1 deletion apps/api/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "api",
"version": "0.5.0",
"version": "0.6.0",
"packageManager": "[email protected]",
"type": "commonjs",
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion apps/mgmt-ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mgmt-ui",
"version": "0.5.0",
"version": "0.6.0",
"private": true,
"scripts": {
"dev": "next dev",
Expand Down
2 changes: 1 addition & 1 deletion apps/sync-worker/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sync-worker",
"version": "0.5.0",
"version": "0.6.0",
"packageManager": "[email protected]",
"dependencies": {
"@sentry/integrations": "^7.43.0",
Expand Down
8 changes: 4 additions & 4 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ services:
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:-supaglue}

api:
image: supaglue/api:0.5.0
image: supaglue/api:0.6.0
ports:
- '8080:8080'
depends_on:
Expand All @@ -46,7 +46,7 @@ services:
restart: on-failure

sync-worker:
image: supaglue/sync-worker:0.5.0
image: supaglue/sync-worker:0.6.0
depends_on:
postgres:
condition: service_started
Expand All @@ -59,7 +59,7 @@ services:
restart: on-failure

mgmt-ui:
image: supaglue/mgmt-ui:0.5.0
image: supaglue/mgmt-ui:0.6.0
ports:
- '3000:3000'
depends_on:
Expand All @@ -84,7 +84,7 @@ services:
- temporalitedata:/data

init:
image: supaglue/api:0.5.0
image: supaglue/api:0.6.0
environment:
<<: *common-env
SUPAGLUE_QUICKSTART_API_KEY: ${SUPAGLUE_QUICKSTART_API_KEY:-some-api-key}
Expand Down
4 changes: 2 additions & 2 deletions docs/docs/getting-started.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ After creating your account, you will be directed to the management portal.
Clone the Github repo and run the Supaglue stack locally using docker compose:

```shell
git clone -b v0.5.0 https://github.com/supaglue-labs/supaglue.git && cd supaglue
git clone -b v0.6.0 https://github.com/supaglue-labs/supaglue.git && cd supaglue
docker compose up
```

Expand Down Expand Up @@ -104,7 +104,7 @@ Here's a sample request:

```shell
curl --location --request PUT 'http://localhost:8080/mgmt/v1/customers' \
--header 'x-api-key: {{apiKey}}'
--header 'x-api-key: {{apiKey}}'
--header 'Content-Type: application/json' \
--data-raw '{
"application_id": "{{applicationId}}",
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/quickstart.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ In less than 5 minutes, sync data from HubSpot or Salesforce into Supaglue and q
Clone our repo, run our setup script which will create an `.env` file for this quickstart, and run the Supaglue stack locally using docker compose:

```shell
git clone -b v0.5.0 https://github.com/supaglue-labs/supaglue.git && cd supaglue
git clone -b v0.6.0 https://github.com/supaglue-labs/supaglue.git && cd supaglue
./scripts/create_quickstart_env.sh
docker compose up
```
Expand Down
2 changes: 1 addition & 1 deletion docs/docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const path = require('path');

const lightCodeTheme = require('prism-react-renderer/themes/github');

const LATEST_VERSION = '0.5.0';
const LATEST_VERSION = JSON.parse(fs.readFileSync(path.resolve(__dirname, 'package.json'), 'utf8')).version;

const versions = JSON.parse(fs.readFileSync(path.resolve(__dirname, 'versions.json'), 'utf8'));

Expand Down
2 changes: 1 addition & 1 deletion docs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "docs",
"version": "0.5.0",
"version": "0.6.0",
"private": true,
"scripts": {
"docusaurus": "docusaurus",
Expand Down
39 changes: 0 additions & 39 deletions docs/versioned_docs/version-0.4.1/concepts.md

This file was deleted.

100 changes: 0 additions & 100 deletions docs/versioned_docs/version-0.4.1/embedded-links.mdx

This file was deleted.

Loading

1 comment on commit 5f85c81

@vercel
Copy link

@vercel vercel bot commented on 5f85c81 Mar 23, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.