From 7ad239a7fb1b017f466b6cb785df1ce509b73825 Mon Sep 17 00:00:00 2001 From: Jacob Sheehy Date: Thu, 3 Oct 2024 16:29:24 -0400 Subject: [PATCH 1/2] [chore] Update CHANGELOG and bump version Signed-off-by: Jacob Sheehy --- CHANGELOG.md | 4 ++++ lib/blueprinter/version.rb | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 26f98e74..b5e6a35c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.1.2 - 2024/10/3 +- 🐛 [BUGFIX] Fixes an issue where a `Blueprinter::BlueprinterError` would be raised on render when providing `view: nil`, instead of falling back on the `:default` view. See +[#472](https://github.com/procore-oss/blueprinter/pull/472). Tahnks to [@lessthanjacob](https://github.com/lessthanjacob). + ## 1.1.1 - 2024/10/2 * 🐛 [BUGFIX] Fixes an issue when when calling `.render` multiple times on a Blueprint using the same `options` hash, which would result in the `options` changing unexpectedly between calls. See [#453](https://github.com/procore-oss/blueprinter/pull/453). Thanks to [@ryanmccarthypdx](https://github.com/ryanmccarthypdx). * 🐛 [BUGFIX] Fixes an issue when passing in a `Symbol` (representing a method) to the `if:` condition on an association. The provided `Symbol` would be erroneously sent to the association's Blueprint, instead of the Blueprint in which the association was defined within. See [#464](https://github.com/procore-oss/blueprinter/pull/464). Thanks to [@lessthanjacob](https://github.com/lessthanjacob). diff --git a/lib/blueprinter/version.rb b/lib/blueprinter/version.rb index cd3a79ea..7fceea31 100644 --- a/lib/blueprinter/version.rb +++ b/lib/blueprinter/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Blueprinter - VERSION = '1.1.1' + VERSION = '1.1.2' end From 8f34a852b7dfb584fca67976daf6decafa108ed0 Mon Sep 17 00:00:00 2001 From: Jake Sheehy Date: Thu, 3 Oct 2024 17:02:05 -0400 Subject: [PATCH 2/2] Update CHANGELOG.md Co-authored-by: frisco miranda Signed-off-by: Jake Sheehy --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b5e6a35c..3d7f6b31 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ ## 1.1.2 - 2024/10/3 - 🐛 [BUGFIX] Fixes an issue where a `Blueprinter::BlueprinterError` would be raised on render when providing `view: nil`, instead of falling back on the `:default` view. See -[#472](https://github.com/procore-oss/blueprinter/pull/472). Tahnks to [@lessthanjacob](https://github.com/lessthanjacob). +[#472](https://github.com/procore-oss/blueprinter/pull/472). Thanks to [@lessthanjacob](https://github.com/lessthanjacob). ## 1.1.1 - 2024/10/2 * 🐛 [BUGFIX] Fixes an issue when when calling `.render` multiple times on a Blueprint using the same `options` hash, which would result in the `options` changing unexpectedly between calls. See [#453](https://github.com/procore-oss/blueprinter/pull/453). Thanks to [@ryanmccarthypdx](https://github.com/ryanmccarthypdx).