diff --git a/CHANGELOG.md b/CHANGELOG.md index c6d313b8..09c4cacc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,9 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p ## [Unreleased] +### Changed +- Gemfile template updated with the latest available dependencies (https://github.com/interagent/pliny/pull/379) + ### Removed - Remove deprecated `PLINY_ENV` environment variable support in favor of `APP_ENV` to align with Sinatra conventions (https://github.com/interagent/pliny/pull/373) diff --git a/lib/template/Gemfile b/lib/template/Gemfile index 8ea247c9..c91b6edf 100644 --- a/lib/template/Gemfile +++ b/lib/template/Gemfile @@ -1,10 +1,10 @@ # frozen_string_literal: true source "https://rubygems.org" -ruby "2.4.0" +ruby "3.4.6" gem "pg" -gem "pliny", "~> 0.32" +gem "pliny", "~> 2" gem "pry" gem "puma", "~> 7" gem "rack-ssl" @@ -15,7 +15,7 @@ gem "sentry-ruby" gem "sequel", "~> 5.73" gem "sequel-paranoid" gem "sequel_pg", "~> 1.17", require: "sequel" -gem "sinatra", [">= 3.0", "< 5.0"], require: "sinatra/base" +gem "sinatra", "~> 4.0", require: "sinatra/base" gem "sinatra-contrib", require: ["sinatra/namespace", "sinatra/reloader"] gem "sinatra-router" gem "sucker_punch"