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
1 change: 1 addition & 0 deletions Cargo.lock

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

1 change: 1 addition & 0 deletions src/catalog-protos/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ num_enum = "0.7.4"
proptest = { version = "1.9.0", default-features = false, features = ["std"] }
proptest-derive = "0.7.0"
serde = { version = "1.0.219", features = ["derive"] }
serde_repr = "0.1.20"
workspace-hack = { version = "0.0.0", path = "../workspace-hack", optional = true }

[dev-dependencies]
Expand Down
8 changes: 6 additions & 2 deletions src/catalog-protos/objects_hashes.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[
{
"name": "objects.rs",
"md5": "26ae04e683a5462c3998d8f9d8d6a0fa"
"md5": "f80d0eeab1e6430a6e99fffeafdfc808"
},
{
"name": "objects_v74.rs",
Expand All @@ -21,6 +21,10 @@
},
{
"name": "objects_v78.rs",
"md5": "26ae04e683a5462c3998d8f9d8d6a0fa"
"md5": "9373c464028750ecb681d2a9d249f4ce"
},
{
"name": "objects_v79.rs",
"md5": "f80d0eeab1e6430a6e99fffeafdfc808"
}
]
216 changes: 83 additions & 133 deletions src/catalog-protos/src/audit_log.rs

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion src/catalog-protos/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,15 @@ pub mod objects_v75;
pub mod objects_v76;
pub mod objects_v77;
pub mod objects_v78;
pub mod objects_v79;
pub mod serialization;

/// The current version of the `Catalog`.
///
/// We will initialize new `Catalog`s with this version, and migrate existing `Catalog`s to this
/// version. Whenever the `Catalog` changes, e.g. the types we serialize in the `Catalog`
/// change, we need to bump this version.
pub const CATALOG_VERSION: u64 = 78;
pub const CATALOG_VERSION: u64 = 79;

/// The minimum `Catalog` version number that we support migrating from.
///
Expand Down
Loading