Skip to content

Commit b472f12

Browse files
build(deps): bump faraday from 2.14.0 to 2.14.1 (#331)
* build(deps): bump faraday from 2.14.0 to 2.14.1 Bumps [faraday](https://github.com/lostisland/faraday) from 2.14.0 to 2.14.1. - [Release notes](https://github.com/lostisland/faraday/releases) - [Changelog](https://github.com/lostisland/faraday/blob/main/CHANGELOG.md) - [Commits](lostisland/faraday@v2.14.0...v2.14.1) --- updated-dependencies: - dependency-name: faraday dependency-version: 2.14.1 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> * Fix KeyError in database.yml production config preventing test execution (#332) --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Copilot <198982749+Copilot@users.noreply.github.com>
1 parent e42e1cf commit b472f12

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Gemfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ GEM
186186
railties (>= 6.1.0)
187187
faker (3.6.0)
188188
i18n (>= 1.8.11, < 2)
189-
faraday (2.14.0)
189+
faraday (2.14.1)
190190
faraday-net_http (>= 2.0, < 3.5)
191191
json
192192
logger
@@ -299,7 +299,7 @@ GEM
299299
jbuilder (2.14.1)
300300
actionview (>= 7.0.0)
301301
activesupport (>= 7.0.0)
302-
json (2.18.0)
302+
json (2.18.1)
303303
jwt (3.1.2)
304304
base64
305305
kamal (2.10.1)

config/database.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ production:
4141
port: <%= ENV.fetch("DB_PORT") { 5432 } %>
4242
database: <%= ENV.fetch("DB_NAME") { "wit_calendar_backend_production" } %>
4343
username: <%= ENV.fetch("DB_USERNAME") { "wit_calendar_backend" } %>
44-
password: <%= ENV.fetch("DB_PASSWORD") %>
44+
password: <%= ENV.fetch("DB_PASSWORD") { "" } %>
4545
queue:
4646
adapter: postgresql
4747
encoding: unicode
@@ -50,5 +50,5 @@ production:
5050
port: <%= ENV.fetch("DB_PORT") { 5432 } %>
5151
database: <%= ENV.fetch("DB_NAME_QUEUE") { "wit_calendar_backend_production_queue" } %>
5252
username: <%= ENV.fetch("DB_USERNAME") { "wit_calendar_backend" } %>
53-
password: <%= ENV.fetch("DB_PASSWORD") %>
53+
password: <%= ENV.fetch("DB_PASSWORD") { "" } %>
5454
migrations_paths: db/queue_migrate

0 commit comments

Comments
 (0)