Skip to content

Commit 4e2bd9c

Browse files
committed
CUMULUS-4708: Updated CHANGELOG.
1 parent 1631617 commit 4e2bd9c

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,10 @@ Phase 2 — full apply to clean up old S3 objects and apply remaining changes:
2929

3030
### Added
3131

32+
- **CUMULUS-4707**
33+
- Implement list of granules route in iceberg search api
34+
- **CUMULUS-4708**
35+
- Implement list of executions route in iceberg search api
3236
- **CUMULUS-4534**
3337
- collection db model has added non-optional cmr_provider field
3438
- update requires db-migration to add cmr_provider to collection model

packages/db/tests/test-iceberg-connection.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
'use strict';
22

3-
const _ = require('lodash');
3+
const isFunction = require('lodash/isFunction');
44
const test = require('ava');
55
const sinon = require('sinon');
66
// noCallThru prevents proxyquire from loading the real @duckdb/node-api binary,
@@ -104,7 +104,7 @@ test.serial('acquireDuckDbConnection returns a connection from the pool after in
104104
const conn = await acquireDuckDbConnection();
105105

106106
t.truthy(conn, 'should return a connection object');
107-
t.true(_.isFunction(conn.run), 'returned connection must expose run()');
107+
t.true(isFunction(conn.run), 'returned connection must expose run()');
108108
});
109109

110110
test.serial('released connection is re-acquired on next acquireDuckDbConnection call', async (t) => {

0 commit comments

Comments
 (0)