mirror of
https://github.com/fluencelabs/sqlite-wasm-connector
synced 2025-03-15 06:20:50 +00:00
Compare commits
8 Commits
marine-sql
...
master
Author | SHA1 | Date | |
---|---|---|---|
|
3a86f7b3c3 | ||
|
aa50b4c73b | ||
|
6b1e8d7b3c | ||
|
a8c494bae0 | ||
|
a9960b0d44 | ||
|
a613613e4e | ||
|
7778787125 | ||
|
e90e9f2d3f |
2
.github/release-please/manifest.json
vendored
2
.github/release-please/manifest.json
vendored
@ -1,3 +1,3 @@
|
||||
{
|
||||
".": "0.9.3"
|
||||
".": "0.11.0"
|
||||
}
|
||||
|
4
.github/workflows/release.yml
vendored
4
.github/workflows/release.yml
vendored
@ -50,7 +50,7 @@ jobs:
|
||||
token: ${{ secrets.FLUENCEBOT_RELEASE_PLEASE_PAT }}
|
||||
|
||||
- name: Import secrets
|
||||
uses: hashicorp/vault-action@v2.7.4
|
||||
uses: hashicorp/vault-action@v2.8.1
|
||||
with:
|
||||
url: https://vault.fluence.dev
|
||||
path: jwt/github
|
||||
@ -101,7 +101,7 @@ jobs:
|
||||
echo "found any?:" "${{ steps.status.outputs.found }}"
|
||||
|
||||
- name: Import secrets
|
||||
uses: hashicorp/vault-action@v2.7.4
|
||||
uses: hashicorp/vault-action@v2.8.1
|
||||
with:
|
||||
url: https://vault.fluence.dev
|
||||
path: jwt/github
|
||||
|
2
.github/workflows/snapshot.yml
vendored
2
.github/workflows/snapshot.yml
vendored
@ -33,7 +33,7 @@ jobs:
|
||||
ref: ${{ inputs.ref }}
|
||||
|
||||
- name: Import secrets
|
||||
uses: hashicorp/vault-action@v2.7.4
|
||||
uses: hashicorp/vault-action@v2.8.1
|
||||
with:
|
||||
url: https://vault.fluence.dev
|
||||
path: jwt/github
|
||||
|
29
CHANGELOG.md
29
CHANGELOG.md
@ -1,5 +1,34 @@
|
||||
# Changelog
|
||||
|
||||
## [0.11.0](https://github.com/fluencelabs/sqlite-wasm-connector/compare/marine-sqlite-connector-v0.10.0...marine-sqlite-connector-v0.11.0) (2024-02-22)
|
||||
|
||||
|
||||
### ⚠ BREAKING CHANGES
|
||||
|
||||
* **deps:** update marine-rs-sdk ([#58](https://github.com/fluencelabs/sqlite-wasm-connector/issues/58))
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **deps:** update marine-rs-sdk ([#58](https://github.com/fluencelabs/sqlite-wasm-connector/issues/58)) ([6b1e8d7](https://github.com/fluencelabs/sqlite-wasm-connector/commit/6b1e8d7b3c8c2669381ed31ee182ee72f1f21f0d))
|
||||
|
||||
## [0.10.0](https://github.com/fluencelabs/sqlite-wasm-connector/compare/marine-sqlite-connector-v0.9.4...marine-sqlite-connector-v0.10.0) (2024-02-14)
|
||||
|
||||
|
||||
### ⚠ BREAKING CHANGES
|
||||
|
||||
* **deps:** update rust crate marine-rs-sdk to 0.12.0 ([#54](https://github.com/fluencelabs/sqlite-wasm-connector/issues/54))
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **deps:** update rust crate marine-rs-sdk to 0.12.0 ([#54](https://github.com/fluencelabs/sqlite-wasm-connector/issues/54)) ([a613613](https://github.com/fluencelabs/sqlite-wasm-connector/commit/a613613e4e0f28393ca53c3111e1c07463bdf277))
|
||||
|
||||
## [0.9.4](https://github.com/fluencelabs/sqlite-wasm-connector/compare/marine-sqlite-connector-v0.9.3...marine-sqlite-connector-v0.9.4) (2023-12-29)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **deps:** update rust crate marine-rs-sdk to 0.10.3 ([#51](https://github.com/fluencelabs/sqlite-wasm-connector/issues/51)) ([e90e9f2](https://github.com/fluencelabs/sqlite-wasm-connector/commit/e90e9f2d3ff4a661c713f1d4ef05b3f4f4523e47))
|
||||
|
||||
## [0.9.3](https://github.com/fluencelabs/sqlite-wasm-connector/compare/marine-sqlite-connector-v0.9.2...marine-sqlite-connector-v0.9.3) (2023-12-26)
|
||||
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "marine-sqlite-connector"
|
||||
version = "0.9.3"
|
||||
version = "0.11.0"
|
||||
license = "Apache-2.0/MIT"
|
||||
authors = [
|
||||
"Daniel Dulaney <ddy@vitronic.com>",
|
||||
@ -36,9 +36,9 @@ name = "test"
|
||||
path = "src/test.rs"
|
||||
|
||||
[dependencies]
|
||||
marine-rs-sdk = "0.10.2"
|
||||
marine-rs-sdk = "0.14.0"
|
||||
bytesize = "1.3.0"
|
||||
|
||||
[dev-dependencies]
|
||||
marine-rs-sdk-test = "0.12.1"
|
||||
marine-rs-sdk-test = "0.15.0"
|
||||
temporary = "0.7"
|
||||
|
@ -28,7 +28,7 @@ pub struct DBExecDescriptor {
|
||||
}
|
||||
|
||||
#[marine]
|
||||
#[link(wasm_import_module = "sqlite3")]
|
||||
#[module_import("sqlite3")]
|
||||
extern "C" {
|
||||
/*
|
||||
SQLITE_API int sqlite3_open_v2(
|
||||
|
Loading…
x
Reference in New Issue
Block a user