Skip to content

Commit

Permalink
Ready for release 0.0.14 (#462)
Browse files Browse the repository at this point in the history
  • Loading branch information
cw75 authored Sep 12, 2022
1 parent 656d4b2 commit 0c4bc44
Show file tree
Hide file tree
Showing 18 changed files with 63 additions and 50 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ src/python/build/
*.dll
*.so
*.dylib
**/bin

# Test binary, built with `go test -c`
*.test
Expand Down
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Changelog

## 0.0.14
Released on September 12, 2022.

### Enhancements
* Enables searching through workflows list.
* Workflows are now displayed on the workflows page even before any runs have been created.
* Adds canceled state to operator lifecycle; when upstream operators fail, downstream operators and
artifact are now marked as canceled rather than being marked as permanently in progress.
* Adds ability to connect new SQLite DB from UI.
* Redesigns integration viewing page to explicitly show DB tables rather than the previous select menu.

### Bugfixes
* Fixes bug where browser console throws error when there is no write operator in workflow DAG.
* Fixes bug where operators previously could not return `None`.

## 0.0.13
Released on September 6, 2022.

Expand Down
2 changes: 1 addition & 1 deletion sdk/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

setuptools.setup(
name="aqueduct-sdk",
version="0.0.13",
version="0.0.14",
author="Aqueduct, Inc.",
author_email="hello@aqueducthq.com",
description="Python SDK for the Aqueduct prediction infrastructure",
Expand Down
42 changes: 21 additions & 21 deletions src/dockerfiles/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,58 +7,58 @@ ifndef VERBOSE
endif

build-function:
docker build . -t aqueducthq/function:0.0.13 -f function/function.dockerfile --no-cache
docker build . -t aqueducthq/function:0.0.14 -f function/function.dockerfile --no-cache

build-param:
docker build . -t aqueducthq/param:0.0.13 -f param/param.dockerfile --no-cache
docker build . -t aqueducthq/param:0.0.14 -f param/param.dockerfile --no-cache

build-system-metric:
docker build . -t aqueducthq/system-metric:0.0.13 -f system-metric/system-metric.dockerfile --no-cache
docker build . -t aqueducthq/system-metric:0.0.14 -f system-metric/system-metric.dockerfile --no-cache

build-base-connector:
docker build . -t aqueducthq/base_connector:0.0.13 -f connectors/base.dockerfile --no-cache
docker build . -t aqueducthq/base_connector:0.0.14 -f connectors/base.dockerfile --no-cache

build-connectors: build-athena-connector build-bigquery-connector build-mysql-connector \
build-postgres-connector build-s3-connector build-snowflake-connector build-sqlserver-connector

build-athena-connector:
docker build . -t aqueducthq/athena-connector:0.0.13 -f connectors/athena.dockerfile --no-cache
docker build . -t aqueducthq/athena-connector:0.0.14 -f connectors/athena.dockerfile --no-cache

build-bigquery-connector:
docker build . -t aqueducthq/bigquery-connector:0.0.13 -f connectors/bigquery.dockerfile --no-cache
docker build . -t aqueducthq/bigquery-connector:0.0.14 -f connectors/bigquery.dockerfile --no-cache

build-mysql-connector:
docker build . -t aqueducthq/mysql-connector:0.0.13 -f connectors/mysql.dockerfile --no-cache
docker build . -t aqueducthq/mysql-connector:0.0.14 -f connectors/mysql.dockerfile --no-cache

build-postgres-connector:
docker build . -t aqueducthq/postgres-connector:0.0.13 -f connectors/postgres.dockerfile --no-cache
docker build . -t aqueducthq/postgres-connector:0.0.14 -f connectors/postgres.dockerfile --no-cache

build-s3-connector:
docker build . -t aqueducthq/s3-connector:0.0.13 -f connectors/s3.dockerfile --no-cache
docker build . -t aqueducthq/s3-connector:0.0.14 -f connectors/s3.dockerfile --no-cache

build-snowflake-connector:
docker build . -t aqueducthq/snowflake-connector:0.0.13 -f connectors/snowflake.dockerfile --no-cache
docker build . -t aqueducthq/snowflake-connector:0.0.14 -f connectors/snowflake.dockerfile --no-cache

build-sqlserver-connector:
docker build . -t aqueducthq/sqlserver-connector:0.0.13 -f connectors/sqlserver.dockerfile --no-cache
docker build . -t aqueducthq/sqlserver-connector:0.0.14 -f connectors/sqlserver.dockerfile --no-cache

publish-function:
docker push aqueducthq/function:0.0.13
docker push aqueducthq/function:0.0.14

publish-param:
docker push aqueducthq/param:0.0.13
docker push aqueducthq/param:0.0.14

publish-system-metric:
docker push aqueducthq/system-metric:0.0.13
docker push aqueducthq/system-metric:0.0.14

publish-connectors:
docker push aqueducthq/athena-connector:0.0.13
docker push aqueducthq/bigquery-connector:0.0.13
docker push aqueducthq/mysql-connector:0.0.13
docker push aqueducthq/postgres-connector:0.0.13
docker push aqueducthq/s3-connector:0.0.13
docker push aqueducthq/snowflake-connector:0.0.13
docker push aqueducthq/sqlserver-connector:0.0.13
docker push aqueducthq/athena-connector:0.0.14
docker push aqueducthq/bigquery-connector:0.0.14
docker push aqueducthq/mysql-connector:0.0.14
docker push aqueducthq/postgres-connector:0.0.14
docker push aqueducthq/s3-connector:0.0.14
docker push aqueducthq/snowflake-connector:0.0.14
docker push aqueducthq/sqlserver-connector:0.0.14

.PHONY:

2 changes: 1 addition & 1 deletion src/dockerfiles/connectors/athena.dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM aqueducthq/base_connector:0.0.13
FROM aqueducthq/base_connector:0.0.14

MAINTAINER Aqueduct <hello@aqueducthq.com> version: 0.1

Expand Down
2 changes: 1 addition & 1 deletion src/dockerfiles/connectors/bigquery.dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM aqueducthq/base_connector:0.0.13
FROM aqueducthq/base_connector:0.0.14

MAINTAINER Aqueduct <hello@aqueducthq.com> version: 0.1

Expand Down
2 changes: 1 addition & 1 deletion src/dockerfiles/connectors/mysql.dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM aqueducthq/base_connector:0.0.13
FROM aqueducthq/base_connector:0.0.14

MAINTAINER Aqueduct <hello@spiralai.co> version: 0.1

Expand Down
2 changes: 1 addition & 1 deletion src/dockerfiles/connectors/postgres.dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM aqueducthq/base_connector:0.0.13
FROM aqueducthq/base_connector:0.0.14

MAINTAINER Aqueduct <hello@aqueducthq.com> version: 0.1

Expand Down
2 changes: 1 addition & 1 deletion src/dockerfiles/connectors/s3.dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM aqueducthq/base_connector:0.0.13
FROM aqueducthq/base_connector:0.0.14

MAINTAINER Aqueduct <hello@aqueducthq.com> version: 0.1

Expand Down
2 changes: 1 addition & 1 deletion src/dockerfiles/connectors/snowflake.dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM aqueducthq/base_connector:0.0.13
FROM aqueducthq/base_connector:0.0.14

MAINTAINER Aqueduct <hello@aqueducthq.com> version: 0.1

Expand Down
2 changes: 1 addition & 1 deletion src/dockerfiles/connectors/sqlserver.dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM aqueducthq/base_connector:0.0.13
FROM aqueducthq/base_connector:0.0.14

MAINTAINER Aqueduct <hello@aqueducthq.com> version: 0.1

Expand Down
18 changes: 9 additions & 9 deletions src/golang/lib/job/constants.go
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
package job

const (
DefaultFunctionDockerImage = "aqueducthq/function:0.0.13"
DefaultParameterDockerImage = "aqueducthq/param:0.0.13"
DefaultSystemMetricDockerImage = "aqueducthq/system-metric:0.0.13"
DefaultPostgresConnectorDockerImage = "aqueducthq/postgres-connector:0.0.13"
DefaultSnowflakeConnectorDockerImage = "aqueducthq/snowflake-connector:0.0.13"
DefaultMySqlConnectorDockerImage = "aqueducthq/mysql-connector:0.0.13"
DefaultSqlServerConnectorDockerImage = "aqueducthq/sqlserver-connector:0.0.13"
DefaultBigQueryConnectorDockerImage = "aqueducthq/bigquery-connector:0.0.13"
DefaultS3ConnectorDockerImage = "aqueducthq/s3-connector:0.0.13"
DefaultFunctionDockerImage = "aqueducthq/function:0.0.14"
DefaultParameterDockerImage = "aqueducthq/param:0.0.14"
DefaultSystemMetricDockerImage = "aqueducthq/system-metric:0.0.14"
DefaultPostgresConnectorDockerImage = "aqueducthq/postgres-connector:0.0.14"
DefaultSnowflakeConnectorDockerImage = "aqueducthq/snowflake-connector:0.0.14"
DefaultMySqlConnectorDockerImage = "aqueducthq/mysql-connector:0.0.14"
DefaultSqlServerConnectorDockerImage = "aqueducthq/sqlserver-connector:0.0.14"
DefaultBigQueryConnectorDockerImage = "aqueducthq/bigquery-connector:0.0.14"
DefaultS3ConnectorDockerImage = "aqueducthq/s3-connector:0.0.14"
)
4 changes: 2 additions & 2 deletions src/python/bin/aqueduct
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@ import yaml
from packaging.version import parse as parse_version
from tqdm import tqdm

SCHEMA_VERSION = "16"
SCHEMA_VERSION = "17"
CHUNK_SIZE = 4096

base_directory = os.path.join(os.environ["HOME"], ".aqueduct")
server_directory = os.path.join(os.environ["HOME"], ".aqueduct", "server")
ui_directory = os.path.join(os.environ["HOME"], ".aqueduct", "ui")

package_version = "0.0.13"
package_version = "0.0.14"
aws_credentials_path = os.path.join(os.environ["HOME"], ".aws", "credentials")

default_server_port = 8080
Expand Down
2 changes: 1 addition & 1 deletion src/python/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ pyyaml
typing_extensions
Pillow
packaging
aqueduct-sdk==0.0.13
aqueduct-sdk==0.0.14
2 changes: 1 addition & 1 deletion src/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

setup(
name="aqueduct-ml",
version="0.0.13",
version="0.0.14",
install_requires=install_requires,
scripts=["bin/aqueduct"],
packages=find_packages(),
Expand Down
4 changes: 2 additions & 2 deletions src/ui/app/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@aqueducthq/ui",
"author": "Aqueduct, Inc. <hello@aqueducthq.com>",
"version": "0.0.13",
"version": "0.0.14",
"scripts": {
"start": "parcel --no-cache index.html",
"build": "parcel build --public-url /dist --dist-dir dist/default index.html",
Expand All @@ -10,7 +10,7 @@
"lint:fix": "eslint '*/**/*.{js,ts,tsx}' --format table --fix"
},
"dependencies": {
"@aqueducthq/common": "0.0.16",
"@aqueducthq/common": "0.0.17",
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@fortawesome/fontawesome-svg-core": "^6.1.1",
Expand Down
7 changes: 3 additions & 4 deletions src/ui/common/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/ui/common/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@aqueducthq/common",
"author": "Aqueduct <hello@aqueducthq.com>",
"version": "0.0.16",
"version": "0.0.17",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"alias": {
Expand Down

0 comments on commit 0c4bc44

Please sign in to comment.