Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5,452 changes: 3,134 additions & 2,318 deletions CHANGELOG.md

Large diffs are not rendered by default.

38 changes: 19 additions & 19 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 @@ -30,7 +30,7 @@ exclude = [
]

[workspace.package]
version = "0.5.1-rc.6"
version = "0.5.1-rc.7"
edition = "2021"

[workspace.dependencies]
Expand Down
6 changes: 3 additions & 3 deletions examples/templates/deno/api/example.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Policy, t, typegraph } from "jsr:@typegraph/sdk@0.5.1-rc.6";
import { PythonRuntime } from "jsr:@typegraph/sdk@0.5.1-rc.6/runtimes/python";
import { DenoRuntime } from "jsr:@typegraph/sdk@0.5.1-rc.6/runtimes/deno";
import { Policy, t, typegraph } from "jsr:@typegraph/sdk@0.5.1-rc.7";
import { PythonRuntime } from "jsr:@typegraph/sdk@0.5.1-rc.7/runtimes/python";
import { DenoRuntime } from "jsr:@typegraph/sdk@0.5.1-rc.7/runtimes/deno";

await typegraph("example", (g) => {
const pub = Policy.public();
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.5.1-rc.6
image: ghcr.io/metatypedev/typegate:v0.5.1-rc.7
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.5.1-rc.6
image: ghcr.io/metatypedev/typegate:v0.5.1-rc.7
restart: always
ports:
- "7890:7890"
Expand Down
2 changes: 1 addition & 1 deletion examples/templates/node/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"dev": "MCLI_LOADER_CMD='npm x tsx' meta dev"
},
"dependencies": {
"@typegraph/sdk": "^0.5.1-rc.6"
"@typegraph/sdk": "^0.5.1-rc.7"
},
"devDependencies": {
"tsx": "^3.13.0",
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.5.1-rc.6
image: ghcr.io/metatypedev/typegate:v0.5.1-rc.7
restart: always
ports:
- "7890:7890"
Expand Down
2 changes: 1 addition & 1 deletion examples/templates/python/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "example"
version = "0.5.1-rc.6"
version = "0.5.1-rc.7"
description = ""
authors = []

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

[tool.poetry]
name = "metatype"
version = "0.5.1-rc.6"
version = "0.5.1-rc.7"
description = ""
authors = []

Expand Down
2 changes: 1 addition & 1 deletion src/pyrt_wit_wire/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "pyrt_wit_wire"
version = "0.5.1-rc.6"
version = "0.5.1-rc.7"
description = "Wasm component implementing the PythonRuntime host using wit_wire protocol."
license = "MPL-2.0"
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion src/typegate/src/runtimes/wit_wire/mod.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { Meta } from "../../../engine/runtime.js";
//
// const logger = getLogger(import.meta);

const METATYPE_VERSION = "0.5.1-rc.6";
const METATYPE_VERSION = "0.5.1-rc.7";

export class WitWireHandle {
static async init(params: {
Expand Down
2 changes: 1 addition & 1 deletion src/typegraph/core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "typegraph_core"
version = "0.5.1-rc.6"
version = "0.5.1-rc.7"
edition = "2021"

# this allows us to exclude the rust files
Expand Down
2 changes: 1 addition & 1 deletion src/typegraph/core/src/global_store.rs
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ impl Store {

thread_local! {
pub static STORE: RefCell<Store> = RefCell::new(Store::new());
pub static SDK_VERSION: String = "0.5.1-rc.6".to_owned();
pub static SDK_VERSION: String = "0.5.1-rc.7".to_owned();
}

fn with_store<T, F: FnOnce(&Store) -> T>(f: F) -> T {
Expand Down
2 changes: 1 addition & 1 deletion src/typegraph/deno/deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@typegraph/sdk",
"version": "0.5.1-rc.6",
"version": "0.5.1-rc.7",
"publish": {
"exclude": ["!src/gen", "!LICENSE.md", "!README.md"]
},
Expand Down
2 changes: 1 addition & 1 deletion src/typegraph/python/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "typegraph"
version = "0.5.1-rc.6"
version = "0.5.1-rc.7"
description = "Declarative API development platform. Build backend components with WASM, Typescript and Python, no matter where and how your (legacy) systems are."
authors = ["Metatype Contributors <support@metatype.dev>"]
license = "MPL-2.0"
Expand Down
2 changes: 1 addition & 1 deletion src/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.5.1-rc.6"
version = "0.5.1-rc.7"
2 changes: 1 addition & 1 deletion src/xtask/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "xtask"
version = "0.5.1-rc.6"
version = "0.5.1-rc.7"
edition = "2021"

# this allows us to exclude the rust files
Expand Down
4 changes: 2 additions & 2 deletions tests/metagen/__snapshots__/metagen_test.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -454,7 +454,7 @@ impl Router {
}

pub fn init(&self, args: InitArgs) -> Result<InitResponse, InitError> {
static MT_VERSION: &str = "0.5.1-rc.6";
static MT_VERSION: &str = "0.5.1-rc.7";
if args.metatype_version != MT_VERSION {
return Err(InitError::VersionMismatch(MT_VERSION.into()));
}
Expand Down Expand Up @@ -1253,7 +1253,7 @@ impl Router {
}

pub fn init(&self, args: InitArgs) -> Result<InitResponse, InitError> {
static MT_VERSION: &str = "0.5.1-rc.6";
static MT_VERSION: &str = "0.5.1-rc.7";
if args.metatype_version != MT_VERSION {
return Err(InitError::VersionMismatch(MT_VERSION.into()));
}
Expand Down
2 changes: 1 addition & 1 deletion tests/metagen/typegraphs/identities/rs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "identities_fdk"
edition = "2021"
version = "0.5.1-rc.6"
version = "0.5.1-rc.7"

[dependencies]
metagen-client = { workspace = true, features = ["graphql"] }
Expand Down
2 changes: 1 addition & 1 deletion tests/metagen/typegraphs/sample/rs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "sample_client"
edition = "2021"
version = "0.5.1-rc.6"
version = "0.5.1-rc.7"

[dependencies]
metagen-client = { workspace = true, features = ["graphql"] }
Expand Down
2 changes: 1 addition & 1 deletion tests/metagen/typegraphs/sample/rs_upload/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "sample_client_upload"
edition = "2021"
version = "0.5.1-rc.6"
version = "0.5.1-rc.7"

[dependencies]
metagen-client = { workspace = true, features = ["graphql"] }
Expand Down
2 changes: 1 addition & 1 deletion tools/consts.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0.
// SPDX-License-Identifier: MPL-2.0

export const CURRENT_VERSION = "0.5.1-rc.6";
export const CURRENT_VERSION = "0.5.1-rc.7";
export const LATEST_RELEASE_VERSION = "0.5.0";
export const LATEST_PRE_RELEASE_VERSION = "0.5.1-rc.2";
export const GHJK_VERSION = "v0.3.1-rc.2";
Expand Down
Loading