Skip to content

Commit 436abdb

Browse files
authored
Flexibilize data_conduit dependency (#347)
Flexibilize data_conduit dependency on securerandom so applications can update it easily
1 parent ac5d4d9 commit 436abdb

File tree

6 files changed

+14
-8
lines changed

6 files changed

+14
-8
lines changed

packages/data_conduit/Gemfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ PATH
1111
PATH
1212
remote: .
1313
specs:
14-
data_conduit (0.1.2)
14+
data_conduit (0.1.3)
1515
activesupport (~> 7.0)
1616
rest-client (~> 2.1)
17-
securerandom (~> 0.2.2)
17+
securerandom (>= 0.2.2)
1818
sequel (~> 5.90.0)
1919

2020
GEM

packages/data_conduit/data_conduit.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Gem::Specification.new do |spec|
2222
spec.require_paths = ["lib"]
2323

2424
spec.add_dependency "rest-client", "~> 2.1"
25-
spec.add_dependency "securerandom", "~> 0.2.2"
25+
spec.add_dependency "securerandom", ">= 0.2.2"
2626

2727
spec.add_development_dependency "activesupport", "~> 7.1.0"
2828
spec.add_development_dependency "appraisal", "~> 2.5.0"

packages/data_conduit/docs/CHANGELOG

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## Unreleased
2+
3+
## [0.1.3] - 2025-06-02
4+
5+
- Flexibilize secure_random dependency [#347](https://github.com/powerhome/power-tools/pull/347)
6+
17
## [0.1.2] - 2025-05-30
28

39
- Improve conditions key handling for the TrinoAdapter [#345](https://github.com/powerhome/power-tools/pull/345)

packages/data_conduit/gemfiles/sequel_5.90.gemfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ PATH
1111
PATH
1212
remote: ..
1313
specs:
14-
data_conduit (0.1.2)
14+
data_conduit (0.1.3)
1515
activesupport (~> 7.0)
1616
rest-client (~> 2.1)
17-
securerandom (~> 0.2.2)
17+
securerandom (>= 0.2.2)
1818
sequel (~> 5.90.0)
1919

2020
GEM

packages/data_conduit/gemfiles/sequel_latest.gemfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ PATH
1111
PATH
1212
remote: ..
1313
specs:
14-
data_conduit (0.1.2)
14+
data_conduit (0.1.3)
1515
activesupport (~> 7.0)
1616
rest-client (~> 2.1)
17-
securerandom (~> 0.2.2)
17+
securerandom (>= 0.2.2)
1818
sequel (~> 5.90.0)
1919

2020
GEM
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module DataConduit
4-
VERSION = "0.1.2"
4+
VERSION = "0.1.3"
55
end

0 commit comments

Comments
 (0)