Skip to content

v1.12.0

Compare
Choose a tag to compare
@github-actions github-actions released this 10 Dec 19:17
· 54 commits to main since this release
6463c43

Potentially Breaking Changes

This release contains a big set of updates to the CI workflows for GitHub Actions. If you've customized the workflows you may have some merge conflicts, or there may be things that don't quite work like they used to. If that's the case please open an issue and/or reach out on Discord if you'd like some help.

Likely Merge Conflict

You're likely to have a merge conflict in config/database.yml when you upgrade. It probably looks like this:

<<<<<<< HEAD
  database: your_app_test
||||||| f499f057
  database: untitled_application_test
=======
  database: untitled_application_test<%= ENV['TEST_ENV_NUMBER'] %>
  <% if ENV['CI'] %>username: <%= ENV['POSTGRES_USER'] %><% end %>
  <% if ENV['CI'] %>password: <%= ENV['POSTGRES_PASSWORD'] %><% end %>
  <% if ENV['CI'] %>host: localhost<% end %>
>>>>>>> v1.12.0

The best way to resolve this is to pick the entire bottom block, deleting the others:

  database: untitled_application_test<%= ENV['TEST_ENV_NUMBER'] %>
  <% if ENV['CI'] %>username: <%= ENV['POSTGRES_USER'] %><% end %>
  <% if ENV['CI'] %>password: <%= ENV['POSTGRES_PASSWORD'] %><% end %>
  <% if ENV['CI'] %>host: localhost<% end %>

Then update that first line to say your_app_test (using the naming convention for your app) instead of untitled_application_test:

  database: your_app_test<%= ENV['TEST_ENV_NUMBER'] %>
  <% if ENV['CI'] %>username: <%= ENV['POSTGRES_USER'] %><% end %>
  <% if ENV['CI'] %>password: <%= ENV['POSTGRES_PASSWORD'] %><% end %>
  <% if ENV['CI'] %>host: localhost<% end %>

What's changed in bullet_train-core

Also check the corresponding release for the bullet_train-core repo:
https://github.com/bullet-train-co/bullet_train-core/releases

What's Changed

  • [ruby] Update all Bundler dependencies (2024-11-26) by @depfu in #1783
  • [js] Update all Yarn dependencies (2024-11-27) by @depfu in #1785
  • [js] Update all Yarn dependencies (2024-12-01) by @depfu in #1788
  • 🚨 [security] [ruby] Update rails-html-sanitizer 1.6.0 → 1.6.1 (patch) by @depfu in #1789
  • [js] Update all Yarn dependencies (2024-12-05) by @depfu in #1791
  • Improvements for CI in GitHub Actions by @jagthedrummer in #1787
  • [ruby] Update all Bundler dependencies (2024-12-10) by @depfu in #1784
  • BT-Core version bump: - 1.12.0 by @jagthedrummer in #1794

Full Changelog: v1.11.0...v1.12.0