Skip to content

Releases: rajivsarvepalli/mock-alchemy

mock-alchemy-v0.2.6

26 Mar 21:39
8d7a69e
Compare
Choose a tag to compare

What’s Changed

Added support for SQLAlchemy 2.0 and 3.10, 3.11 versions of python.

🚀 Features

📦 Build System

Click to see all updated dependencies!

mock-alchemy-v0.2.5

25 Oct 04:22
Compare
Choose a tag to compare

What’s Changed

Fixed scalar implementation as discussed in #153 and fixed update messing up mock calls as described in #161

🚀 Features

🐞 Fixes

📦 Build System

Click to see all updated dependencies!

mock-alchemy-v0.2.4

10 Oct 20:37
4a1e2e9
Compare
Choose a tag to compare

What’s Changed

Added scalar() functionality for mocking SQLAlchemy scalar().

📚 Documentation

🚀 Features

📦 Build System

mock-alchemy-v0.2.3

02 Oct 23:35
Compare
Choose a tag to compare

What’s Changed

Updated to support SQLAlchemy 1.4

🚀 Features

📦 Build System

Click to see all updated dependencies!

mock-alchemy-v0.2.2

06 May 21:36
94e12b8
Compare
Choose a tag to compare

What’s Changed

Fixed a bug that caused get to fail to work incorrectly when using singular values that were not integers.

📚 Documentation

🪲 Fixes

🚨 Testing

📦 Build System

mock-alchemy-v0.1.1

17 Jan 22:21
Compare
Choose a tag to compare

Quick Summary

Fixed bug from v0.1.0 release on deleting where delete did not work as expected. This release patch is for Python 2.7 users.

What’s Changed

🪲 Fixes

  • Fixed bug in deleting items where an error would be throwing when trying to remove items in filtered deletes (4cfbd7c) @rajivsarvepalli

🚨 Testing

mock-alchemy-v0.2.1

14 Jan 20:29
Compare
Choose a tag to compare

Quick Summary

Fixed bug from v0.2.0 release on deleting where delete did not work as expected.

What’s Changed

🪲 Fixes

  • Fixed bug in deleting items where an error would be throwing when trying to remove items in filtered deletes (31b5d25) @rajivsarvepalli

🚨 Testing

📚 Documentation

📦 Build System

  • Bump actions/download-artifact from v2.0.5 to v2.0.8 (#18) @dependabot
  • Bump codecov/codecov-action from v1.0.14 to v1.2.1 (#19) @dependabot
  • Bump actions/upload-artifact from v2.2.0 to v2.2.2 (#21) @dependabot
  • Bump pypa/gh-action-pypi-publish from v1.0.0a0 to v1.4.1 (#28) @dependabot
  • Bump release-drafter/release-drafter from v5.6.1 to v5.13.0 (#20) @dependabot
  • Update actions/setup-python requirement to v2.2.1 (#17) @dependabot
  • Bump sphinx from 3.4.1 to 3.4.3 in /docs (#26) @dependabot
  • Bump virtualenv from 20.2.1 to 20.3.0 in /.github/workflows (#22) @dependabot
  • Bump pip from 20.2.4 to 20.3.3 in /.github/workflows (#23) @dependabot
  • Bump poetry from 1.1.2 to 1.1.4 in /.github/workflows (#24) @dependabot
  • Bump nox from 2020.8.22 to 2020.12.31 in /.github/workflows (#25) @dependabot
  • Bump nox-poetry from 0.5.0 to 0.7.0 in /.github/workflows (#27) @dependabot

mock-alchemy-v0.2.0

11 Jan 20:21
Compare
Choose a tag to compare

Quick Summary

Dropped support for < Python 3.7, this version only supports Python 3.7+. The older 0.1.0 version will continue to support Python 2.7, as will 0.1.x releases. The plan is to use the 0.1.x releases to support Python 2.7 and Python 3 simultaneously.

The big changes in this version are upgraded documentation, type hinting, and a full test-suite for the development of this package. As with the previous version, this also supports delete and using get with dictionaries and scalars. This version is also much easier to develop and employs many more automated tools for increased development testing and automation. CI testing now includes MacOs, Windows, and Ubuntu with Python 3.7, 3.8, and 3.9 for mock-alchemy.

There is still a 0.1.x branch on which the old form of testing is run against should development be done for users of mock-alchemy on Python 2.7.

What’s Changed

📦 Build System

👷 Continuous Integration

📚 Documentation

🪲 Fixes

🔥 Removals and Deprecations

💄 Style

🚨 Testing

  • Added full testing to mock-alchemy; there is now a distinct testing package (#9) @rajivsarvepalli

mock-alchemy-v0.1.0

09 Jan 23:04
Compare
Choose a tag to compare

Initial release for a SqlAlchemy mock helper. Created from a copy of https://github.com/miki725/alchemy-mock/ due to that project being unsupported. Added documentation, delete support, increased get functionality, and fixed importing from collections.Mapping. This release supports Python 2.7, 3.6, 3.7, and PyPy on Python 2.7 and 3.6.