Files
Ryan a08663c7b9 Version bump 2.7.0 (#5399)
# Description of Changes

<!-- Please describe your change, mention any related tickets, and so on
here. -->

- Bumps version to 2.7.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

- 1 - this is just a version bump

<!--
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. -->

# 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] Version number is correct (`2.7.0`)
- [x] BSL license file has been updated with the new date and version
number
2026-06-22 04:08:56 +00:00
..
2024-06-07 19:22:02 +00:00
2026-05-05 22:58:18 +00:00
2024-09-27 11:23:50 +00:00

⚠️ Internal Project ⚠️

This project is intended for internal use only. It is not stable and may change without notice.

Internal documentation

This project contains interfaces and runtime support code for BSATN serialization in C#. It is the companion of the BSATN.Codegen project.

See ../BSATN.Runtime.Tests/ for tests.

User-facing types

This project contains implementations of a number of wide integer types for compatibility with SpacetimeDB. It also has implementations of a number of "special" SpacetimeDB types, including Identity, ConnectionId, Timestamp, TimeDuration, and ScheduleAt. These live in ./Builtins.cs. It also contains the AlgebraicType type, which is not really user-facing but is important internally.

There are also two of important interfaces: IStructuralReadWrite and IReadWrite<T>. See their documentation in ./BSATN/Runtime.cs for more information.

Internal types

This project contains the base implementation of serializers for various primitive BSATN types. These live in ./BSATN/Runtime.cs. These serializers are mainly used in code generated by BSATN.Codegen.