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
29 changes: 29 additions & 0 deletions .github/workflows/fossa.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: FOSSA

on:
push:
pull_request:
workflow_dispatch:
merge_group:
types: [checks_requested]

jobs:
fossa:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v5

- name: Install FOSSA CLI
run: |
curl -H 'Cache-Control: no-cache' https://raw.githubusercontent.com/fossas/fossa-cli/master/install-latest.sh | bash

- name: Set FOSSA API Key
run: echo "FOSSA_API_KEY=${{ secrets.FOSSA_PUB_API_KEY }}" >> $GITHUB_ENV

- name: Run FOSSA Analysis
run: fossa analyze

- name: Run FOSSA Test
run: fossa test
31 changes: 31 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,39 @@
## [0.11.10-rc.2] - 2025-09-18

### 🐛 Bug Fixes

- Make pub new kv store methods and forward sdk to proxywasm changes
## [0.11.10-rc.1] - 2025-09-18

### 🚀 Features

- Updating wasmtime to 36.0.0
- Updating key-value store interface
- Adding redis store impl

### 🐛 Bug Fixes

- Formating
- Changing score type to f64
- Formatting

### 🚜 Refactor

- Generic store type

### ⚙️ Miscellaneous Tasks

- Release
## [0.11.9] - 2025-08-29

### 🐛 Bug Fixes

- Use direct backend for fastedge cli
- Compilation errors

### ⚙️ Miscellaneous Tasks

- Release
## [0.11.8] - 2025-06-05

### ⚙️ Miscellaneous Tasks
Expand Down
16 changes: 8 additions & 8 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ members = ["crates/*"]
resolver = "2"

[workspace.package]
version = "0.11.9"
version = "0.11.10-rc.2"
edition = "2021"
publish = false
authors = ["FastEdge Development Team"]
Expand Down
4 changes: 2 additions & 2 deletions crates/key-value-store/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -149,15 +149,15 @@ impl KeyValueStore {
}

#[instrument(skip(self), level = "trace", ret, err)]
async fn scan(&mut self, store: u32, pattern: &str) -> Result<Vec<String>, Error> {
pub async fn scan(&mut self, store: u32, pattern: &str) -> Result<Vec<String>, Error> {
let Some(store) = self.stores.get(store as usize) else {
return Err(Error::NoSuchStore);
};
store.scan(pattern).await
}

#[instrument(skip(self), level = "trace", ret, err)]
async fn zscan(
pub async fn zscan(
&mut self,
store: u32,
key: &str,
Expand Down
2 changes: 1 addition & 1 deletion sdk
Loading