Skip to content

Commit 145cb01

Browse files
committed
Checking in changes prior to tagging of version 0.24.
Changelog diff is: diff --git a/Changes b/Changes index 81b7eca..1ef46c0 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,13 @@ {{$NEXT}} +0.24 2025-04-11T03:58:56Z + - Do not add empty where expressions #47 + - Remove __is_stored flag if the object is removed from the database #43 + - Correct the pod for object_is_stored, which was called is_ephemeral and + had the opposite meaning #44 + - Do not skip cache repair based solely on the number of cache keys + (Thanks to sewi-cpan) #29 + 0.23 2024-10-23T04:39:20Z - Introduce as_escape method to D::OD::SQL to allow specifying escape clause #45
1 parent 1fe448e commit 145cb01

3 files changed

Lines changed: 11 additions & 2 deletions

File tree

Changes

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
{{$NEXT}}
22

3+
0.24 2025-04-11T03:58:56Z
4+
- Do not add empty where expressions #47
5+
- Remove __is_stored flag if the object is removed from the database #43
6+
- Correct the pod for object_is_stored, which was called is_ephemeral and
7+
had the opposite meaning #44
8+
- Do not skip cache repair based solely on the number of cache keys
9+
(Thanks to sewi-cpan) #29
10+
311
0.23 2024-10-23T04:39:20Z
412
- Introduce as_escape method to D::OD::SQL to allow specifying escape clause #45
513

META.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@
141141
"web" : "https://github.com/sixapart/data-objectdriver"
142142
}
143143
},
144-
"version" : "0.23",
144+
"version" : "0.24",
145145
"x_authority" : "cpan:SIXAPART",
146146
"x_contributors" : [
147147
"Adam Thomason <athomason@sixapart.com>",
@@ -162,6 +162,7 @@
162162
"Masahiro Iuchi <miuchi@sixapart.com>",
163163
"Mischa <none@sixapart.com>",
164164
"Paul Lindner <paul@inuus.com>",
165+
"Sebastian Willing <sewi@cpan.org>",
165166
"Sekimura <sekimura@sixapart.com>",
166167
"Simon Wistow <swistow@sixapart.com>",
167168
"Takatsugu Shigeta <shigeta@cpan.org>",

lib/Data/ObjectDriver.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ use Data::ObjectDriver::Iterator;
1111

1212
__PACKAGE__->mk_accessors(qw( pk_generator txn_active ));
1313

14-
our $VERSION = '0.23';
14+
our $VERSION = '0.24';
1515
our $DEBUG = $ENV{DOD_DEBUG} || 0;
1616
our $PROFILE = $ENV{DOD_PROFILE} || 0;
1717
our $PROFILER;

0 commit comments

Comments
 (0)