Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps): bump github.com/proullon/ramsql from 0.0.1 to 0.1.1 #636

Conversation

dependabot[bot]
Copy link
Contributor

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

Bumps github.com/proullon/ramsql from 0.0.1 to 0.1.1.

Release notes

Sourced from github.com/proullon/ramsql's releases.

Fix regression on CamelCase attribute query

What's Changed

New Contributors

Full Changelog: proullon/ramsql@v0.1.0...v0.1.1

Transaction based rewrite

Context

Introduction of agnostic in-memory store, leveraging GC-optimized storage to garantee low GC pauses and good GC behavior over time.

Complete rewrite improving performance, removing deadlocks and storage as Go types, allowing creation of objects table.

Ensure compatibility with gorm, a popular Go ORM.

Added implementation goal in README, in preparation for stable 1.0 release.

What's Changed

Full Changelog: proullon/ramsql@v0.0.1...v0.1.0

Commits
  • 71d06ed fix: AttributeSelector uses lower case to match attributes
  • 5b0278f fix: add failing test for CamelCase query
  • 481f3e2 fix(engine): Relation.Attribute() convert name argument to lower case to be c...
  • e12c987 fix: insert mixed case value attribute
  • a7e15a6 fix: use driver.Conn as Tx
  • d851e3f feat: extend transaction testing
  • 6014112 chore: update travis go version
  • dc4783e feat: add test for #40
  • 7e9cda5 chore: update benchstat
  • 6cae3e0 chore: update benchstat
  • 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 show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @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)

Bumps [github.com/proullon/ramsql](https://github.com/proullon/ramsql) from 0.0.1 to 0.1.1.
- [Release notes](https://github.com/proullon/ramsql/releases)
- [Commits](proullon/ramsql@v0.0.1...v0.1.1)

---
updated-dependencies:
- dependency-name: github.com/proullon/ramsql
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added automerge Automatically merge PR once all prerequisites pass dependencies Pull requests that update a dependency file labels Aug 22, 2023
@dependabot dependabot bot requested a review from MonikaCat August 22, 2023 04:39
@codecov-commenter
Copy link

Codecov Report

Merging #636 (922628a) into cosmos/v0.47.x (458f549) will not change coverage.
The diff coverage is n/a.

@@               Coverage Diff               @@
##           cosmos/v0.47.x     #636   +/-   ##
===============================================
  Coverage           55.90%   55.90%           
===============================================
  Files                  20       20           
  Lines                1431     1431           
===============================================
  Hits                  800      800           
  Misses                536      536           
  Partials               95       95           

@mergify mergify bot merged commit 784406f into cosmos/v0.47.x Aug 22, 2023
@mergify mergify bot deleted the dependabot/go_modules/github.com/proullon/ramsql-0.1.1 branch August 22, 2023 10:44
MonikaCat pushed a commit that referenced this pull request Feb 5, 2024
Bumps [github.com/proullon/ramsql](https://github.com/proullon/ramsql) from 0.0.1 to 0.1.1.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/proullon/ramsql/releases">github.com/proullon/ramsql's releases</a>.</em></p>
<blockquote>
<h2>Fix regression on CamelCase attribute query</h2>
<h2>What's Changed</h2>
<ul>
<li>fix(engine): Relation.Attribute() convert name argument to lower case by <a href="https://github.com/trakhimenok"><code>@​trakhimenok</code></a> in <a href="https://redirect.github.com/proullon/ramsql/pull/87">proullon/ramsql#87</a></li>
<li>fix: (close <a href="https://redirect.github.com/proullon/ramsql/issues/86">#86</a>) AttributeSelector uses lower case to match attributes by <a href="https://github.com/proullon"><code>@​proullon</code></a> in <a href="https://redirect.github.com/proullon/ramsql/pull/88">proullon/ramsql#88</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a href="https://github.com/trakhimenok"><code>@​trakhimenok</code></a> made their first contribution in <a href="https://redirect.github.com/proullon/ramsql/pull/87">proullon/ramsql#87</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a href="https://github.com/proullon/ramsql/compare/v0.1.0...v0.1.1">https://github.com/proullon/ramsql/compare/v0.1.0...v0.1.1</a></p>
<h2>Transaction based rewrite</h2>
<h2>Context</h2>
<p>Introduction of agnostic in-memory store, leveraging GC-optimized storage to garantee low GC pauses and good GC behavior over time.</p>
<p>Complete rewrite improving performance, removing deadlocks and storage as Go types, allowing creation of objects table.</p>
<p>Ensure compatibility with gorm, a popular Go ORM.</p>
<p>Added implementation goal in README, in preparation for stable 1.0 release.</p>
<h2>What's Changed</h2>
<ul>
<li>Implement SCHEMA by <a href="https://github.com/proullon"><code>@​proullon</code></a> in <a href="https://redirect.github.com/proullon/ramsql/pull/76">proullon/ramsql#76</a></li>
<li>feat: handle Gorm query style by <a href="https://github.com/proullon"><code>@​proullon</code></a> in <a href="https://redirect.github.com/proullon/ramsql/pull/77">proullon/ramsql#77</a></li>
<li>add/scientific notation by <a href="https://github.com/Joematpal"><code>@​Joematpal</code></a> in <a href="https://redirect.github.com/proullon/ramsql/pull/78">proullon/ramsql#78</a></li>
<li>Rewrite engine with SQL-agnostic GC optimized memory store by <a href="https://github.com/proullon"><code>@​proullon</code></a> in <a href="https://redirect.github.com/proullon/ramsql/pull/80">proullon/ramsql#80</a></li>
<li>Fix driver transaction behavior by <a href="https://github.com/proullon"><code>@​proullon</code></a> in <a href="https://redirect.github.com/proullon/ramsql/pull/84">proullon/ramsql#84</a></li>
<li>fix: insert mixed case value attribute by <a href="https://github.com/proullon"><code>@​proullon</code></a> in <a href="https://redirect.github.com/proullon/ramsql/pull/85">proullon/ramsql#85</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a href="https://github.com/proullon/ramsql/compare/v0.0.1...v0.1.0">https://github.com/proullon/ramsql/compare/v0.0.1...v0.1.0</a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/proullon/ramsql/commit/71d06ede384fa4d187e9b3683028bb697c9d6873"><code>71d06ed</code></a> fix: AttributeSelector uses lower case to match attributes</li>
<li><a href="https://github.com/proullon/ramsql/commit/5b0278f228f61573b2b883e7626acea5e29ab65b"><code>5b0278f</code></a> fix: add failing test for CamelCase query</li>
<li><a href="https://github.com/proullon/ramsql/commit/481f3e2bae694a3f9f9f68811bb4263f31b2e54d"><code>481f3e2</code></a> fix(engine): Relation.Attribute() convert name argument to lower case to be c...</li>
<li><a href="https://github.com/proullon/ramsql/commit/e12c9872c05dfd96f12daef316ce7398581defac"><code>e12c987</code></a> fix: insert mixed case value attribute</li>
<li><a href="https://github.com/proullon/ramsql/commit/a7e15a63022d55a5ba4a643e74b31e4af06e842e"><code>a7e15a6</code></a> fix: use driver.Conn as Tx</li>
<li><a href="https://github.com/proullon/ramsql/commit/d851e3f8ea466e7ba8aa02c7c152ab99a570903c"><code>d851e3f</code></a> feat: extend transaction testing</li>
<li><a href="https://github.com/proullon/ramsql/commit/6014112392236a6e825491e59f61063afc59164a"><code>6014112</code></a> chore: update travis go version</li>
<li><a href="https://github.com/proullon/ramsql/commit/dc4783e951ecef9c34718f703af1c5f89021acd2"><code>dc4783e</code></a> feat: add test for <a href="https://redirect.github.com/proullon/ramsql/issues/40">#40</a></li>
<li><a href="https://github.com/proullon/ramsql/commit/7e9cda5993a2a02f5898ef0c797de166fb377119"><code>7e9cda5</code></a> chore: update benchstat</li>
<li><a href="https://github.com/proullon/ramsql/commit/6cae3e007d14934372a9573414aef78ef0d8000f"><code>6cae3e0</code></a> chore: update benchstat</li>
<li>Additional commits viewable in <a href="https://github.com/proullon/ramsql/compare/v0.0.1...v0.1.1">compare view</a></li>
</ul>
</details>
<br />

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/proullon/ramsql&package-manager=go_modules&previous-version=0.0.1&new-version=0.1.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

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-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

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 show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency
- `@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)

</details>
MonikaCat pushed a commit that referenced this pull request Feb 5, 2024
Bumps [github.com/proullon/ramsql](https://github.com/proullon/ramsql) from 0.0.1 to 0.1.1.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/proullon/ramsql/releases">github.com/proullon/ramsql's releases</a>.</em></p>
<blockquote>
<h2>Fix regression on CamelCase attribute query</h2>
<h2>What's Changed</h2>
<ul>
<li>fix(engine): Relation.Attribute() convert name argument to lower case by <a href="https://github.com/trakhimenok"><code>@​trakhimenok</code></a> in <a href="https://redirect.github.com/proullon/ramsql/pull/87">proullon/ramsql#87</a></li>
<li>fix: (close <a href="https://redirect.github.com/proullon/ramsql/issues/86">#86</a>) AttributeSelector uses lower case to match attributes by <a href="https://github.com/proullon"><code>@​proullon</code></a> in <a href="https://redirect.github.com/proullon/ramsql/pull/88">proullon/ramsql#88</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a href="https://github.com/trakhimenok"><code>@​trakhimenok</code></a> made their first contribution in <a href="https://redirect.github.com/proullon/ramsql/pull/87">proullon/ramsql#87</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a href="https://github.com/proullon/ramsql/compare/v0.1.0...v0.1.1">https://github.com/proullon/ramsql/compare/v0.1.0...v0.1.1</a></p>
<h2>Transaction based rewrite</h2>
<h2>Context</h2>
<p>Introduction of agnostic in-memory store, leveraging GC-optimized storage to garantee low GC pauses and good GC behavior over time.</p>
<p>Complete rewrite improving performance, removing deadlocks and storage as Go types, allowing creation of objects table.</p>
<p>Ensure compatibility with gorm, a popular Go ORM.</p>
<p>Added implementation goal in README, in preparation for stable 1.0 release.</p>
<h2>What's Changed</h2>
<ul>
<li>Implement SCHEMA by <a href="https://github.com/proullon"><code>@​proullon</code></a> in <a href="https://redirect.github.com/proullon/ramsql/pull/76">proullon/ramsql#76</a></li>
<li>feat: handle Gorm query style by <a href="https://github.com/proullon"><code>@​proullon</code></a> in <a href="https://redirect.github.com/proullon/ramsql/pull/77">proullon/ramsql#77</a></li>
<li>add/scientific notation by <a href="https://github.com/Joematpal"><code>@​Joematpal</code></a> in <a href="https://redirect.github.com/proullon/ramsql/pull/78">proullon/ramsql#78</a></li>
<li>Rewrite engine with SQL-agnostic GC optimized memory store by <a href="https://github.com/proullon"><code>@​proullon</code></a> in <a href="https://redirect.github.com/proullon/ramsql/pull/80">proullon/ramsql#80</a></li>
<li>Fix driver transaction behavior by <a href="https://github.com/proullon"><code>@​proullon</code></a> in <a href="https://redirect.github.com/proullon/ramsql/pull/84">proullon/ramsql#84</a></li>
<li>fix: insert mixed case value attribute by <a href="https://github.com/proullon"><code>@​proullon</code></a> in <a href="https://redirect.github.com/proullon/ramsql/pull/85">proullon/ramsql#85</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a href="https://github.com/proullon/ramsql/compare/v0.0.1...v0.1.0">https://github.com/proullon/ramsql/compare/v0.0.1...v0.1.0</a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/proullon/ramsql/commit/71d06ede384fa4d187e9b3683028bb697c9d6873"><code>71d06ed</code></a> fix: AttributeSelector uses lower case to match attributes</li>
<li><a href="https://github.com/proullon/ramsql/commit/5b0278f228f61573b2b883e7626acea5e29ab65b"><code>5b0278f</code></a> fix: add failing test for CamelCase query</li>
<li><a href="https://github.com/proullon/ramsql/commit/481f3e2bae694a3f9f9f68811bb4263f31b2e54d"><code>481f3e2</code></a> fix(engine): Relation.Attribute() convert name argument to lower case to be c...</li>
<li><a href="https://github.com/proullon/ramsql/commit/e12c9872c05dfd96f12daef316ce7398581defac"><code>e12c987</code></a> fix: insert mixed case value attribute</li>
<li><a href="https://github.com/proullon/ramsql/commit/a7e15a63022d55a5ba4a643e74b31e4af06e842e"><code>a7e15a6</code></a> fix: use driver.Conn as Tx</li>
<li><a href="https://github.com/proullon/ramsql/commit/d851e3f8ea466e7ba8aa02c7c152ab99a570903c"><code>d851e3f</code></a> feat: extend transaction testing</li>
<li><a href="https://github.com/proullon/ramsql/commit/6014112392236a6e825491e59f61063afc59164a"><code>6014112</code></a> chore: update travis go version</li>
<li><a href="https://github.com/proullon/ramsql/commit/dc4783e951ecef9c34718f703af1c5f89021acd2"><code>dc4783e</code></a> feat: add test for <a href="https://redirect.github.com/proullon/ramsql/issues/40">#40</a></li>
<li><a href="https://github.com/proullon/ramsql/commit/7e9cda5993a2a02f5898ef0c797de166fb377119"><code>7e9cda5</code></a> chore: update benchstat</li>
<li><a href="https://github.com/proullon/ramsql/commit/6cae3e007d14934372a9573414aef78ef0d8000f"><code>6cae3e0</code></a> chore: update benchstat</li>
<li>Additional commits viewable in <a href="https://github.com/proullon/ramsql/compare/v0.0.1...v0.1.1">compare view</a></li>
</ul>
</details>
<br />

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/proullon/ramsql&package-manager=go_modules&previous-version=0.0.1&new-version=0.1.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

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-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

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 show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency
- `@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)

</details>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
automerge Automatically merge PR once all prerequisites pass dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants