Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Aug 22, 2022

Bumps gluesql from 0.11.0 to 0.12.0.

Release notes

Sourced from gluesql's releases.

v0.12.0 🌈

🌊 Breaking Changes

⚡ Store trait changes

  1. Store traits no longer require generic T
// v0.11
pub trait Store<T: Debug> { .. }
pub trait StoreMut<T: Debug> where Self: Sized { .. }
pub trait Index<T: Debug> { .. }
pub trait IndexMut<T: Debug> where Self: Sized { .. }
// v0.12
pub trait Store { .. }
pub trait StoreMut where Self: Sized { .. }
pub trait Index { .. }
pub trait IndexMut where Self: Sized { .. }

Related PRs

  1. Store::fetch_data is newly added, Store trait now requires three methods to implement
pub trait Store {
    async fn fetch_schema(&self, table_name: &str) -> Result<Option<Schema>>;
    async fn fetch_data(&self, table_name: &str, key: &Key) -> Result<Option<Row>>;
    async fn scan_data(&self, table_name: &str) -> Result<RowIter>;
}

Related PR

  1. StoreMut trait method renamings - insert_data -> append_data and update_data -> insert_data
pub trait StoreMut where Self: Sized {
    ...
    async fn append_data(..) -> ..;
    async fn insert_data(..) -> ..;
}

Related PR

🌐 PRIMARY KEY support

GlueSQL now supports PRIMARY KEY!

</tr></table> 

... (truncated)

Commits
  • 0c703c7 Merge pull request #793 from gluesql/release-v0.12
  • a3b84cd Update README.md - remove T: Debug from store traits
  • 5a70eb0 Update gluesql-js/ README.md for v0.12 release
  • e56ea87 Apply wasm-pack test lint suggestion to gluesql-js/web payload.rs
  • c0ec0db Update README.md for v0.12 release
  • 1d1be44 Update Cargo.toml & package.json package versions to v0.12
  • b636e4e Rename StoreMut insert_data & update_data methods, (#774)
  • 4420b17 Support SELECT * FROM SERIES(N) and SELECT 1 (without table) (#733)
  • 07bcc3c Merge use statements in test-suite (#788)
  • 06ba99e Clean up basic test cases in test-suite (#785)
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Aug 22, 2022
Bumps [gluesql](https://github.com/gluesql/gluesql) from 0.11.0 to 0.12.0.
- [Release notes](https://github.com/gluesql/gluesql/releases)
- [Commits](gluesql/gluesql@v0.11.0...v0.12.0)

---
updated-dependencies:
- dependency-name: gluesql
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/cargo/gluesql-0.12.0 branch from 599f857 to 5550c94 Compare August 23, 2022 01:47
@24seconds 24seconds merged commit 00d8a44 into main Sep 3, 2022
@24seconds 24seconds deleted the dependabot/cargo/gluesql-0.12.0 branch September 3, 2022 08:13
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant