Skip to content

Commit 6b85f58

Browse files
committed
Merge branch 'main' into claude/trufflehog-pin-82, remove quality.yml, and repin trufflehog in secret-scanner.yml
2 parents 0379968 + 3ec0da6 commit 6b85f58

524 files changed

Lines changed: 8157 additions & 6635 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.claude/CLAUDE.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -339,6 +339,7 @@ Resolved in recent sessions:
339339
- Multi-proof parsing: PROOF A(x) AND B(y) splits correctly
340340
- Modality compatibility validation (INTEGRITY needs semantic, PROVENANCE needs provenance, etc.)
341341
- proven library integrated (certificate-based JSON/CBOR bridge)
342+
- ZKP / sanctify integration (zkp.rs 367 LOC + zkp_bridge.rs 628 LOC + sanctify_bridge.rs 413 LOC, VQL-routed)
342343
- verisim-repl builds clean (67 tests pass)
343344
- oxrocksdb-sys C++ dependency eliminated (Oxigraph feature-flagged, redb pure-Rust backend added)
344345
- protoc build dependency eliminated (proto code pre-generated)

.clusterfuzzlite/project.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# SPDX-License-Identifier: PMPL-1.0-or-later
1+
# SPDX-License-Identifier: MPL-2.0
22
# ClusterFuzzLite configuration for VeriSimDB
33
# OpenSSF Scorecard Fuzzing compliance
44

.gitattributes

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# SPDX-License-Identifier: PMPL-1.0-or-later
1+
# SPDX-License-Identifier: MPL-2.0
22
# RSR-compliant .gitattributes
33

44
* text=auto eol=lf

.github/CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# SPDX-License-Identifier: PMPL-1.0-or-later
1+
# SPDX-License-Identifier: MPL-2.0
22
# VeriSimDB Code Owners
33
# See https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners
44

.github/FUNDING.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# SPDX-License-Identifier: PMPL-1.0-or-later
1+
# SPDX-License-Identifier: MPL-2.0
22
# Funding platforms for hyperpolymath projects
33
# See: https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/displaying-a-sponsor-button-in-your-repository
44

.github/SUPPORT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!-- SPDX-License-Identifier: PMPL-1.0-or-later -->
1+
<!-- SPDX-License-Identifier: MPL-2.0 -->
22
# Support
33

44
## How to Get Help

.github/dependabot.yml

Lines changed: 7 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# SPDX-License-Identifier: PMPL-1.0-or-later
1+
# SPDX-License-Identifier: MPL-2.0
22
# Dependabot configuration for RSR-compliant repositories
33
# Covers common ecosystems - remove unused ones for your project
44

@@ -24,25 +24,13 @@ updates:
2424
update-types: ["version-update:semver-patch"]
2525

2626
# Elixir/Mix
27-
- package-ecosystem: "weeklymix"
28-
directory: "/"
27+
- package-ecosystem: "mix"
28+
directory: "/elixir-orchestration"
2929
schedule:
30-
interval: "daily"
30+
interval: "weekly"
3131

32-
# Node.js/npm
32+
# Node.js/npm — VQL playground
3333
- package-ecosystem: "npm"
34-
directory: "/"
35-
schedule:
36-
interval: "daily"
37-
38-
# Python/pip
39-
- package-ecosystem: "pip"
40-
directory: "/"
41-
schedule:
42-
interval: "daily"
43-
44-
# Nix flakes
45-
- package-ecosystem: "nix"
46-
directory: "/"
34+
directory: "/playground"
4735
schedule:
48-
interval: "daily"
36+
interval: "weekly"

.github/workflows/cflite_batch.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# SPDX-License-Identifier: PMPL-1.0-or-later
1+
# SPDX-License-Identifier: MPL-2.0
22
name: ClusterFuzzLite batch fuzzing
33
on:
44
schedule:

.github/workflows/cflite_pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# SPDX-License-Identifier: PMPL-1.0-or-later
1+
# SPDX-License-Identifier: MPL-2.0
22
name: ClusterFuzzLite PR fuzzing
33
on:
44
pull_request:

.github/workflows/codeql.yml

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# SPDX-License-Identifier: PMPL-1.0-or-later
1+
# SPDX-License-Identifier: MPL-2.0
22
name: CodeQL Security Analysis
33

44
on:
@@ -9,6 +9,14 @@ on:
99
schedule:
1010
- cron: '0 6 * * 1'
1111

12+
# Estate guardrail: cancel superseded runs so re-pushes / rebased PR
13+
# updates do not pile up queued runs against the shared account-wide
14+
# Actions concurrency pool. Applied only to read-only check workflows
15+
# (no publish/mutation), so cancelling a superseded run is always safe.
16+
concurrency:
17+
group: ${{ github.workflow }}-${{ github.ref }}
18+
cancel-in-progress: true
19+
1220
permissions: read-all
1321

1422
jobs:
@@ -26,15 +34,15 @@ jobs:
2634

2735
steps:
2836
- name: Checkout
29-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
37+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
3038

3139
- name: Initialize CodeQL
32-
uses: github/codeql-action/init@cdefb33c0f6224e58673d9004f47f7cb3e328b89 # v3.28.1
40+
uses: github/codeql-action/init@7211b7c8077ea37d8641b6271f6a365a22a5fbfa # v3.28.1
3341
with:
3442
languages: ${{ matrix.language }}
3543
build-mode: ${{ matrix.build-mode }}
3644

3745
- name: Perform CodeQL Analysis
38-
uses: github/codeql-action/analyze@cdefb33c0f6224e58673d9004f47f7cb3e328b89 # v3.28.1
46+
uses: github/codeql-action/analyze@7211b7c8077ea37d8641b6271f6a365a22a5fbfa # v3.28.1
3947
with:
4048
category: "/language:${{ matrix.language }}"

0 commit comments

Comments
 (0)