Skip to content

Commit

Permalink
Merge branch 'main' into sdk-long-running-discovery
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-0acf4 committed Mar 13, 2024
2 parents 99c96ba + 69c43ed commit 7b1aedc
Show file tree
Hide file tree
Showing 25 changed files with 407 additions and 164 deletions.
453 changes: 348 additions & 105 deletions CHANGELOG.md

Large diffs are not rendered by default.

32 changes: 16 additions & 16 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ members = [
"typegraph/core", ]

[workspace.package]
version = "0.3.5"
version = "0.3.6-0"
edition = "2021"

[workspace.dependencies]
Expand Down
2 changes: 1 addition & 1 deletion dev-tools/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "VSCode extension for Metatype support",
"icon": "logo.png",
"author": "Metatype Team",
"version": "0.3.5",
"version": "0.3.6-0",
"repository": {
"type": "git",
"url": "https://github.com/metatypedev/metatype"
Expand Down
2 changes: 1 addition & 1 deletion dev-tools/ts-language-server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "typegraph-ts-server",
"description": "TypeScript language server for TypeGraph",
"author": "Metatype Team",
"version": "0.3.5",
"version": "0.3.6-0",
"repository": {
"type": "git",
"url": "https://github.com/metatypedev/metatype"
Expand Down
2 changes: 1 addition & 1 deletion dev-tools/vscode-metatype-support/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "vscode-metatype-support",
"description": "VSCode extension for Metatype support",
"author": "Metatype Team",
"version": "0.3.5",
"version": "0.3.6-0",
"repository": {
"type": "git",
"url": "https://github.com/metatypedev/metatype"
Expand Down
2 changes: 1 addition & 1 deletion dev/lock.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ dev:
WASMEDGE_VERSION: 0.13.5
TYPEGRAPH_VERSION: 0.0.3
PRISMA_VERSION: 5.5.2
METATYPE_VERSION: 0.3.5
METATYPE_VERSION: 0.3.6-0
PUBLISHED_VERSION: 0.3.5
WASM_OPT_VERSION: 0.116.0
MOLD_VERSION: v2.4.0
Expand Down
2 changes: 1 addition & 1 deletion examples/templates/deno/compose.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
typegate:
image: ghcr.io/metatypedev/typegate:v0.3.5
image: ghcr.io/metatypedev/typegate:v0.3.6-0
restart: always
ports:
- "7890:7890"
Expand Down
2 changes: 1 addition & 1 deletion examples/templates/node/compose.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
typegate:
image: ghcr.io/metatypedev/typegate:v0.3.5
image: ghcr.io/metatypedev/typegate:v0.3.6-0
restart: always
ports:
- "7890:7890"
Expand Down
2 changes: 1 addition & 1 deletion examples/templates/python/compose.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
typegate:
image: ghcr.io/metatypedev/typegate:v0.3.5
image: ghcr.io/metatypedev/typegate:v0.3.6-0
restart: always
ports:
- "7890:7890"
Expand Down
4 changes: 2 additions & 2 deletions examples/templates/python/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[tool.poetry]
name = "example"
version = "0.3.5"
version = "0.3.6-0"
description = ""
authors = []

[tool.poetry.dependencies]
python = ">=3.8,<4.0"
typegraph = "0.3.5"
typegraph = "0.3.6-0"

[build-system]
requires = ["poetry-core"]
Expand Down
2 changes: 1 addition & 1 deletion libs/common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "common"
version = "0.3.5"
version = "0.3.6-0"
edition = "2021"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion libs/typescript/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "typescript"
version = "0.3.5"
version = "0.3.6-0"
edition = "2021"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion libs/xtask/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "xtask"
version = "0.3.5"
version = "0.3.6-0"
edition = "2021"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion meta-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "meta-cli"
version = "0.3.5"
version = "0.3.6-0"
edition = "2021"

description = "Declarative API development platform. Build serverless backends with zero-trust and less code, no matter where and how your (legacy) systems are."
Expand Down
38 changes: 19 additions & 19 deletions poetry.lock

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

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "metatype"
version = "0.3.5"
version = "0.3.6-0"
description = ""
authors = []

Expand All @@ -9,7 +9,7 @@ python = ">=3.8,<4.0"
typegraph = { path = "typegraph/python", develop = true }

[tool.poetry.group.dev.dependencies]
ruff = "^0.1.15"
ruff = "^0.3.0"
respx = "^0.20.2"
pyyaml = "^6.0.1"

Expand Down
2 changes: 1 addition & 1 deletion typegate/tests/runtimes/wasmedge/rust/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rust"
version = "0.3.5"
version = "0.3.6-0"
edition = "2021"

[lib]
Expand Down
2 changes: 1 addition & 1 deletion typegraph/core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "typegraph_core"
version = "0.3.5"
version = "0.3.6-0"
edition = "2021"

[lib]
Expand Down
2 changes: 1 addition & 1 deletion typegraph/node/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "metatype",
"version": "0.3.5",
"version": "0.3.6-0",
"description": "Declarative API development platform. Build serverless backends with zero-trust and less code, no matter where and how your (legacy) systems are.",
"scripts": {
"sdk-build": "cd sdk && pnpm run build",
Expand Down
2 changes: 1 addition & 1 deletion typegraph/node/sdk/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@typegraph/sdk",
"version": "0.3.5",
"version": "0.3.6-0",
"description": "Declarative API development platform. Build serverless backends with zero-trust and less code, no matter where and how your (legacy) systems are.",
"type": "module",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion typegraph/node/sdk/src/tg_manage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { BasicAuth, tgDeploy, tgRemove } from "./tg_deploy.js";
import { TypegraphOutput } from "./typegraph.js";
import { getEnvVariable } from "./utils/func_utils.js";

const VERSION = "0.3.5";
const VERSION = "0.3.6-0";
const PORT = "META_CLI_SERVER_PORT"; // meta-cli instance that executes the current file
const SELF_PATH = "META_CLI_TG_PATH"; // path to the current file to uniquely identify the run results

Expand Down
2 changes: 1 addition & 1 deletion typegraph/python/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "typegraph"
version = "0.3.5"
version = "0.3.6-0"
description = "Declarative API development platform. Build serverless backends with zero-trust and less code, no matter where and how your (legacy) systems are."
authors = ["Metatype Contributors <[email protected]>"]
license = "MPL-2.0"
Expand Down
2 changes: 1 addition & 1 deletion typegraph/python/typegraph/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
from typegraph.policy import Policy # noqa
from typegraph import effects as fx # noqa

version = "0.3.5"
version = "0.3.6-0"
2 changes: 1 addition & 1 deletion typegraph/python/typegraph/graph/tg_manage.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
from typegraph.graph.shared_types import BasicAuth, TypegraphOutput


VERSION = "0.3.5"
VERSION = "0.3.6-0"
PORT = "META_CLI_SERVER_PORT" # meta-cli instance that executes the current file
SELF_PATH = (
"META_CLI_TG_PATH" # path to the current file to uniquely identify the run results
Expand Down

0 comments on commit 7b1aedc

Please sign in to comment.