We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 21b607f commit 36042b1Copy full SHA for 36042b1
3 files changed
CHANGELOG.md
@@ -1,5 +1,11 @@
1
## [Unreleased]
2
3
+## [0.4.0] - 2023-12-10
4
+
5
+- Ensure transactions are IMMEDIATE and not DEFERRED
6
+- Ensure that our `busy_handler` is the very first configuration to be set on a connection
7
+- Simplify and speed up our `busy_handler` implementation
8
9
## [0.3.0] - 2023-12-06
10
11
- Added a more performant implementation of the the `timeout` mechanism
Gemfile.lock
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
- activerecord-enhancedsqlite3-adapter (0.3.0)
+ activerecord-enhancedsqlite3-adapter (0.4.0)
activerecord (>= 7.1)
sqlite3 (~> 1.6)
lib/enhanced_sqlite3/version.rb
@@ -1,5 +1,5 @@
# frozen_string_literal: true
module EnhancedSQLite3
- VERSION = "0.3.0"
+ VERSION = "0.4.0"
end
0 commit comments