Skip to content
Merged
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
16 changes: 0 additions & 16 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,22 +39,6 @@ jobs:
- x86_64-pc-windows-gnu
- x86_64-pc-windows-msvc
fail-fast: false
steps:
- uses: actions/checkout@v5
- uses: dtolnay/rust-toolchain@master
with:
toolchain: stable
- name: cache
uses: Swatinem/rust-cache@v2
- name: test
run: cargo test
mac:
runs-on: macos-latest
strategy:
matrix:
target:
- x86_64-apple-darwin
fail-fast: false
steps:
- uses: actions/checkout@v5
- uses: dtolnay/rust-toolchain@master
Expand Down
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.2.0] - 2025-09-07

### Added

- Web interface style overhaul
- Add 'how to use' page
- Enable adding/deleting record types via web interface
- Enable anonymous cookie-based user sessions
- Add 'copy to clipboard' features for facts table for convenience
- Metadata fields now constrained to just 'Context' and 'SeqNum'
- Facts added by API are now persisted in a prerequisite locally-running DynamoDB instance

## [0.1.0-dev.3] - 2025-07-11

### Added
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

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

4 changes: 1 addition & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
[package]
name = "pythia"
version = "0.1.0-dev.3"
version = "0.2.0"
edition = "2021"
license = "MIT OR Apache-2.0"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[build-dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,9 +119,9 @@ So to track database changes and log them to Pythia for a test suite:

### Example payloads

To set the `user_token` cookie on the client, `POST` to `/sessions/resume` with a `user_token` form field set to an existing `user_token`.
To set the `user_token` cookie on the client, POST to `/sessions/resume` with a `user_token` form field set to an existing `user_token`.

Then, to add a record type:
Then, to add a record type, POST to `/api/record-types`:

```json
{
Expand All @@ -138,7 +138,7 @@ Then, to add a record type:
}
```

and to add facts for that record type:
and to add facts for that record type, POST to `/api/order/facts`:

```json
{
Expand Down
Loading