Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [4.3.0]

### Changed

1. Bump dependencies to address security vulnerabilities. (IN-2714)

## [4.2.0] - 2025-02-18

### Changed
Expand Down
9 changes: 5 additions & 4 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
PATH
remote: .
specs:
faithteams-api (4.2.0)
faithteams-api (4.3.0)
activesupport (~> 7.2.2)
http (~> 5.1)
logger (~> 1.6.1)
ostruct (~> 0.6.0)
rexml (~> 3.3.6)
rexml (~> 3.3.9)
thor (~> 1.4.0)

GEM
remote: https://rubygems.org/
Expand Down Expand Up @@ -145,7 +146,7 @@ GEM
simplecov_json_formatter (~> 0.1)
simplecov-html (0.13.1)
simplecov_json_formatter (0.1.4)
thor (1.3.2)
thor (1.4.0)
tzinfo (2.0.6)
concurrent-ruby (~> 1.0)
unicode-display_width (3.1.2)
Expand All @@ -172,7 +173,7 @@ DEPENDENCIES
rubocop-rspec (~> 1.42)
simplecov (~> 0.21)
webmock (~> 3.18)
yard (~> 0.9)
yard (~> 0.9.36)

BUNDLED WITH
2.5.7
5 changes: 3 additions & 2 deletions faithteams-api.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ Gem::Specification.new do |spec|
spec.add_dependency "http", "~> 5.1"
spec.add_dependency "logger", "~> 1.6.1"
spec.add_dependency "ostruct", "~> 0.6.0"
spec.add_dependency "rexml", "~> 3.3.6" # only needs to be specified to address security warning
spec.add_dependency "rexml", "~> 3.3.9" # only needs to be specified to address security warning
spec.add_dependency "thor", "~> 1.4.0"

spec.add_development_dependency "byebug", "~> 11.1"
spec.add_development_dependency "guard-rspec", "~> 4.7"
Expand All @@ -48,5 +49,5 @@ Gem::Specification.new do |spec|
spec.add_development_dependency "rubocop-rake", "~> 0.6"
spec.add_development_dependency "rubocop-rspec", "~> 1.42"
spec.add_development_dependency "webmock", "~> 3.18"
spec.add_development_dependency "yard", "~> 0.9"
spec.add_development_dependency "yard", "~> 0.9.36"
end
2 changes: 1 addition & 1 deletion lib/faithteams/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@

module FaithTeams
# Current version number.
VERSION = "4.2.0"
VERSION = "4.3.0"
end