Skip to content

Commit 6bd5572

Browse files
jdetterbfops
andauthored
Upgrade to version 1.8.0 (#3633)
# Description of Changes <!-- Please describe your change, mention any related tickets, and so on here. --> - This upgrades the versions of all SDKs, the CLI, etc. to 1.8.0 # API and ABI breaking changes <!-- If this is an API or ABI breaking change, please apply the corresponding GitHub label. --> None # Expected complexity level and risk <!-- How complicated do you think these changes are? Grade on a scale from 1 to 5, where 1 is a trivial change, and 5 is a deep-reaching and complex change. This complexity rating applies not only to the complexity apparent in the diff, but also to its interactions with existing and future code. If you answered more than a 2, explain what is complex about the PR, and what other components it interacts with in potentially concerning ways. --> 1 # Testing <!-- Describe any testing you've done, and any testing you'd like your reviewers to do, so that you're confident that all the changes work as expected! --> - [x] I verified that all versions seem to be updated including the BSL license update <!-- maybe a test you want to do --> We have 1 `1.7.0` that didn't get upgraded automatically because it is part of the module bindings for a template: ``` crates/cli/.templates/parent_parent_crates_bindings-typescript_examples_quickstart-chat/src/module_bindings/index.ts: cliVersion: '1.7.0', ``` A case could possibly be made for bumping the template but it shouldn't cause any issues as the module bindings directory should just get regenerated by the user. @cloutiertyler should we be bumping module bindings for templates when we upgrade versions? --------- Co-authored-by: Zeke Foppa <bfops@users.noreply.github.com> Co-authored-by: Zeke Foppa <196249+bfops@users.noreply.github.com>
1 parent 0c6641d commit 6bd5572

File tree

19 files changed

+171
-171
lines changed

19 files changed

+171
-171
lines changed

Cargo.lock

Lines changed: 116 additions & 116 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 33 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -91,44 +91,44 @@ inherits = "release"
9191
debug = true
9292

9393
[workspace.package]
94-
version = "1.7.0"
94+
version = "1.8.0"
9595
edition = "2021"
9696
# update rust-toolchain.toml too!
9797
rust-version = "1.90.0"
9898

9999
[workspace.dependencies]
100-
spacetimedb = { path = "crates/bindings", version = "=1.7.0" }
101-
spacetimedb-auth = { path = "crates/auth", version = "=1.7.0" }
102-
spacetimedb-bindings-macro = { path = "crates/bindings-macro", version = "=1.7.0" }
103-
spacetimedb-bindings-sys = { path = "crates/bindings-sys", version = "=1.7.0" }
104-
spacetimedb-cli = { path = "crates/cli", version = "=1.7.0" }
105-
spacetimedb-client-api = { path = "crates/client-api", version = "=1.7.0" }
106-
spacetimedb-client-api-messages = { path = "crates/client-api-messages", version = "=1.7.0" }
107-
spacetimedb-codegen = { path = "crates/codegen", version = "=1.7.0" }
108-
spacetimedb-commitlog = { path = "crates/commitlog", version = "=1.7.0" }
109-
spacetimedb-core = { path = "crates/core", version = "=1.7.0" }
110-
spacetimedb-data-structures = { path = "crates/data-structures", version = "=1.7.0" }
111-
spacetimedb-datastore = { path = "crates/datastore", version = "=1.7.0" }
112-
spacetimedb-durability = { path = "crates/durability", version = "=1.7.0" }
113-
spacetimedb-execution = { path = "crates/execution", version = "=1.7.0" }
114-
spacetimedb-expr = { path = "crates/expr", version = "=1.7.0" }
115-
spacetimedb-lib = { path = "crates/lib", default-features = false, version = "=1.7.0" }
116-
spacetimedb-memory-usage = { path = "crates/memory-usage", version = "=1.7.0", default-features = false }
117-
spacetimedb-metrics = { path = "crates/metrics", version = "=1.7.0" }
118-
spacetimedb-paths = { path = "crates/paths", version = "=1.7.0" }
119-
spacetimedb-pg = { path = "crates/pg", version = "=1.7.0" }
120-
spacetimedb-physical-plan = { path = "crates/physical-plan", version = "=1.7.0" }
121-
spacetimedb-primitives = { path = "crates/primitives", version = "=1.7.0" }
122-
spacetimedb-query = { path = "crates/query", version = "=1.7.0" }
123-
spacetimedb-sats = { path = "crates/sats", version = "=1.7.0" }
124-
spacetimedb-schema = { path = "crates/schema", version = "=1.7.0" }
125-
spacetimedb-standalone = { path = "crates/standalone", version = "=1.7.0" }
126-
spacetimedb-sql-parser = { path = "crates/sql-parser", version = "=1.7.0" }
127-
spacetimedb-table = { path = "crates/table", version = "=1.7.0" }
128-
spacetimedb-vm = { path = "crates/vm", version = "=1.7.0" }
129-
spacetimedb-fs-utils = { path = "crates/fs-utils", version = "=1.7.0" }
130-
spacetimedb-snapshot = { path = "crates/snapshot", version = "=1.7.0" }
131-
spacetimedb-subscription = { path = "crates/subscription", version = "=1.7.0" }
100+
spacetimedb = { path = "crates/bindings", version = "=1.8.0" }
101+
spacetimedb-auth = { path = "crates/auth", version = "=1.8.0" }
102+
spacetimedb-bindings-macro = { path = "crates/bindings-macro", version = "=1.8.0" }
103+
spacetimedb-bindings-sys = { path = "crates/bindings-sys", version = "=1.8.0" }
104+
spacetimedb-cli = { path = "crates/cli", version = "=1.8.0" }
105+
spacetimedb-client-api = { path = "crates/client-api", version = "=1.8.0" }
106+
spacetimedb-client-api-messages = { path = "crates/client-api-messages", version = "=1.8.0" }
107+
spacetimedb-codegen = { path = "crates/codegen", version = "=1.8.0" }
108+
spacetimedb-commitlog = { path = "crates/commitlog", version = "=1.8.0" }
109+
spacetimedb-core = { path = "crates/core", version = "=1.8.0" }
110+
spacetimedb-data-structures = { path = "crates/data-structures", version = "=1.8.0" }
111+
spacetimedb-datastore = { path = "crates/datastore", version = "=1.8.0" }
112+
spacetimedb-durability = { path = "crates/durability", version = "=1.8.0" }
113+
spacetimedb-execution = { path = "crates/execution", version = "=1.8.0" }
114+
spacetimedb-expr = { path = "crates/expr", version = "=1.8.0" }
115+
spacetimedb-lib = { path = "crates/lib", default-features = false, version = "=1.8.0" }
116+
spacetimedb-memory-usage = { path = "crates/memory-usage", version = "=1.8.0", default-features = false }
117+
spacetimedb-metrics = { path = "crates/metrics", version = "=1.8.0" }
118+
spacetimedb-paths = { path = "crates/paths", version = "=1.8.0" }
119+
spacetimedb-pg = { path = "crates/pg", version = "=1.8.0" }
120+
spacetimedb-physical-plan = { path = "crates/physical-plan", version = "=1.8.0" }
121+
spacetimedb-primitives = { path = "crates/primitives", version = "=1.8.0" }
122+
spacetimedb-query = { path = "crates/query", version = "=1.8.0" }
123+
spacetimedb-sats = { path = "crates/sats", version = "=1.8.0" }
124+
spacetimedb-schema = { path = "crates/schema", version = "=1.8.0" }
125+
spacetimedb-standalone = { path = "crates/standalone", version = "=1.8.0" }
126+
spacetimedb-sql-parser = { path = "crates/sql-parser", version = "=1.8.0" }
127+
spacetimedb-table = { path = "crates/table", version = "=1.8.0" }
128+
spacetimedb-vm = { path = "crates/vm", version = "=1.8.0" }
129+
spacetimedb-fs-utils = { path = "crates/fs-utils", version = "=1.8.0" }
130+
spacetimedb-snapshot = { path = "crates/snapshot", version = "=1.8.0" }
131+
spacetimedb-subscription = { path = "crates/subscription", version = "=1.8.0" }
132132

133133
# Prevent `ahash` from pulling in `getrandom` by disabling default features.
134134
# Modules use `getrandom02` and we need to prevent an incompatible version

LICENSE.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Business Source License 1.1
55
Parameters
66

77
Licensor: Clockwork Laboratories, Inc.
8-
Licensed Work: SpacetimeDB 1.7.0
8+
Licensed Work: SpacetimeDB 1.8.0
99
The Licensed Work is
1010
(c) 2023 Clockwork Laboratories, Inc.
1111

@@ -21,7 +21,7 @@ Additional Use Grant: You may make use of the Licensed Work provided your
2121
Licensed Work by creating tables whose schemas are
2222
controlled by such third parties.
2323

24-
Change Date: 2030-10-31
24+
Change Date: 2030-11-11
2525

2626
Change License: GNU Affero General Public License v3.0 with a linking
2727
exception

crates/bindings-csharp/BSATN.Codegen/BSATN.Codegen.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<AssemblyName>SpacetimeDB.BSATN.Codegen</AssemblyName>
5-
<Version>1.7.0</Version>
5+
<Version>1.8.0</Version>
66
<Title>SpacetimeDB BSATN Codegen</Title>
77
<Description>The SpacetimeDB BSATN Codegen implements the Roslyn incremental generators for BSATN serialization/deserialization in C#.</Description>
88
</PropertyGroup>

crates/bindings-csharp/BSATN.Runtime/BSATN.Runtime.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<AssemblyName>SpacetimeDB.BSATN.Runtime</AssemblyName>
5-
<Version>1.7.0</Version>
5+
<Version>1.8.0</Version>
66
<Title>SpacetimeDB BSATN Runtime</Title>
77
<Description>The SpacetimeDB BSATN Runtime implements APIs for BSATN serialization/deserialization in C#.</Description>
88
<EmitCompilerGeneratedFiles>true</EmitCompilerGeneratedFiles>

crates/bindings-csharp/Codegen/Codegen.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<AssemblyName>SpacetimeDB.Codegen</AssemblyName>
5-
<Version>1.7.0</Version>
5+
<Version>1.8.0</Version>
66
<Title>SpacetimeDB Module Codegen</Title>
77
<Description>The SpacetimeDB Codegen implements the Roslyn incremental generators for writing SpacetimeDB modules in C#.</Description>
88
</PropertyGroup>

crates/bindings-csharp/Runtime/Runtime.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<AssemblyName>SpacetimeDB.Runtime</AssemblyName>
5-
<Version>1.7.0</Version>
5+
<Version>1.8.0</Version>
66
<Title>SpacetimeDB Module Runtime</Title>
77
<Description>The SpacetimeDB Runtime implements the database runtime bindings for writing SpacetimeDB modules in C#.</Description>
88
</PropertyGroup>

crates/bindings-typescript/examples/quickstart-chat/src/module_bindings/index.ts

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/bindings-typescript/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "spacetimedb",
3-
"version": "1.7.0",
3+
"version": "1.8.0",
44
"description": "API and ABI bindings for the SpacetimeDB TypeScript module library",
55
"homepage": "https://github.com/clockworklabs/SpacetimeDB#readme",
66
"bugs": {

crates/cli/src/subcommands/project/typescript/package._json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@
1010
"author": "",
1111
"license": "ISC",
1212
"dependencies": {
13-
"spacetimedb": "1.7.*"
13+
"spacetimedb": "1.8.*"
1414
}
1515
}

0 commit comments

Comments
 (0)