Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updating bullet train to 1.4.0 #9

Merged
merged 21 commits into from
Sep 8, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
bbf3578
BT-Core version bump: - 1.3.21 (#951)
github-actions[bot] Aug 31, 2023
22ef890
Update all Yarn dependencies (2023-09-01) (#956)
depfu[bot] Sep 1, 2023
500c1db
Update all Bundler dependencies (2023-09-01) (#957)
depfu[bot] Sep 1, 2023
29768d5
Add Address model, Factory, Addresses::Country and Addresses::Region …
pascallaliberte Sep 1, 2023
122f695
BT-Core version bump: - 1.3.22 (#958)
github-actions[bot] Sep 1, 2023
9a3e831
Add `ruby-vips` in the `:development` group (#959)
jagthedrummer Sep 1, 2023
76617c1
Update all Bundler dependencies (2023-09-02) (#960)
depfu[bot] Sep 2, 2023
edf6a67
BT-Core version bump: - 1.3.23 (#963)
github-actions[bot] Sep 5, 2023
54903a1
Update all Bundler dependencies (2023-09-06) (#966)
depfu[bot] Sep 6, 2023
6c179fa
Fix typo in bump-core banner (#967)
lagr Sep 6, 2023
d821c26
Eager load classes for OpenAPI test (#935)
newstler Sep 6, 2023
8bd48b5
BT-Core version bump: - 1.3.24 (#969)
github-actions[bot] Sep 6, 2023
918f4ca
Update all Yarn dependencies (2023-09-07) (#972)
depfu[bot] Sep 7, 2023
dcb97cb
Update all Bundler dependencies (2023-09-07) (#973)
depfu[bot] Sep 7, 2023
47b39ff
Update all Bundler dependencies (2023-09-08) (#975)
depfu[bot] Sep 8, 2023
0d31ce1
Decrease parallelism in CircleCI (#976)
jagthedrummer Sep 8, 2023
78e1933
Remove bullet train webhooks routing (#947)
gazayas Sep 8, 2023
10ad472
BT-Core version bump: - 1.3.25 (#977)
github-actions[bot] Sep 8, 2023
cf1456f
Explicitly set the expected verison of BulletTrain gems (#968)
jagthedrummer Sep 8, 2023
01cbee6
BT-Core version bump: - 1.4.0 (#979)
github-actions[bot] Sep 8, 2023
f941b3b
Merge tag 'v1.4.0' into updating-bullet-train-1.4.0
jagthedrummer Sep 8, 2023
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
14 changes: 7 additions & 7 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ jobs:
- <<: *postgres_docker_image
- image: cimg/redis:6.2.6
executor: ruby/default
parallelism: 16
parallelism: 2
steps:
- browser-tools/install-chrome:
chrome-version: "116.0.5845.96" # TODO: remove -> https://github.com/CircleCI-Public/browser-tools-orb/issues/75
Expand Down Expand Up @@ -123,7 +123,7 @@ jobs:
export RAILS_ENV=test
bundle exec rails "knapsack_pro:queue:minitest[--verbose]"
environment:
KNAPSACK_PRO_CI_NODE_TOTAL: 16
KNAPSACK_PRO_CI_NODE_TOTAL: 2

# If you don't want to use Knapsack Pro, then use this configuration:
#
Expand All @@ -150,7 +150,7 @@ jobs:
- <<: *postgres_docker_image
- image: circleci/redis
executor: ruby/default
parallelism: 16
parallelism: 2
steps:
- browser-tools/install-browser-tools:
chrome-version: "116.0.5845.96" # TODO: remove -> https://github.com/CircleCI-Public/browser-tools-orb/issues/75
Expand Down Expand Up @@ -180,7 +180,7 @@ jobs:
export RAILS_ENV=test
bundle exec rails "knapsack_pro:queue:minitest[--verbose]"
environment:
KNAPSACK_PRO_CI_NODE_TOTAL: 16
KNAPSACK_PRO_CI_NODE_TOTAL: 2
HIDE_THINGS: true

# If you don't want to use Knapsack Pro, then use this configuration:
Expand Down Expand Up @@ -254,7 +254,7 @@ jobs:
- <<: *postgres_docker_image
- image: cimg/redis:6.2.6
executor: ruby/default
parallelism: 16
parallelism: 2
steps:
- browser-tools/install-chrome:
chrome-version: "116.0.5845.96" # TODO: remove -> https://github.com/CircleCI-Public/browser-tools-orb/issues/75
Expand Down Expand Up @@ -295,7 +295,7 @@ jobs:
fi
environment:
RAILS_ENV: test
KNAPSACK_PRO_CI_NODE_TOTAL: 16
KNAPSACK_PRO_CI_NODE_TOTAL: 2
KNAPSACK_PRO_TEST_FILE_PATTERN: "test/system/**{,/*/**}/*_test.rb"

# Uncomment the job at the bottom of this file to run these system tests.
Expand All @@ -308,7 +308,7 @@ jobs:
- <<: *postgres_docker_image
- image: cimg/redis:6.2.6
executor: ruby/default
parallelism: 4
parallelism: 2

steps:
- browser-tools/install-chrome:
Expand Down
9 changes: 7 additions & 2 deletions .github/workflows/version-bump.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@ name: "Create Version Bump PR For Core Gems & NPM Packages"

on:
workflow_dispatch:
inputs:
versionNumber:
description: 'Version Number'
required: true
type: string

permissions:
contents: write
Expand Down Expand Up @@ -32,7 +37,7 @@ jobs:

- name: "Bump core"
id: bump-core
run: ./bin/bump-core
run: ./bin/bump-core ${{ inputs.versionNumber }}

- name: "Create Pull Request"
id: cpr
Expand All @@ -44,7 +49,7 @@ jobs:
branch: "core-version-bump/${{ steps.bump-core.outputs.NEW_VERSION_NUMBER }}"
delete-branch: true
title: "BT-Core version bump: ${{ inputs.versionBump }} - ${{ steps.bump-core.outputs.NEW_VERSION_NUMBER }}"
add-paths: "Gemfile.lock,yarn.lock"
add-paths: "Gemfile, Gemfile.lock, package.json, yarn.lock"
body: |
Version bump of the `core` ruby gems and npm packages to version `${{ steps.bump-core.outputs.NEW_VERSION_NUMBER }}`

Expand Down
42 changes: 30 additions & 12 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,10 @@ group :development do

# Speed up commands on slow machines / big apps [https://github.com/rails/spring]
# gem "spring"

# Workaround to get image process to behave on a Mac in development
# https://github.com/libvips/ruby-vips/issues/155#issuecomment-1047370993
gem "ruby-vips"
end

group :test do
Expand All @@ -96,21 +100,35 @@ end
# BULLET TRAIN GEMS
# This section is the list of Ruby gems included by default for Bullet Train.

# We use a constant here so that we can ensure that all of the bullet_train-*
# packages are on the same version.
BULLET_TRAIN_VERSION = "1.4.0"

# Core packages.
gem "bullet_train"
gem "bullet_train-super_scaffolding"
gem "bullet_train-api"
gem "bullet_train-outgoing_webhooks"
gem "bullet_train-incoming_webhooks"
gem "bullet_train-themes"
gem "bullet_train-themes-light"
gem "bullet_train-integrations"
gem "bullet_train-integrations-stripe"
gem "bullet_train", BULLET_TRAIN_VERSION
gem "bullet_train-super_scaffolding", BULLET_TRAIN_VERSION
gem "bullet_train-api", BULLET_TRAIN_VERSION
gem "bullet_train-outgoing_webhooks", BULLET_TRAIN_VERSION
gem "bullet_train-incoming_webhooks", BULLET_TRAIN_VERSION
gem "bullet_train-themes", BULLET_TRAIN_VERSION
gem "bullet_train-themes-light", BULLET_TRAIN_VERSION
gem "bullet_train-integrations", BULLET_TRAIN_VERSION
gem "bullet_train-integrations-stripe", BULLET_TRAIN_VERSION

# Optional support packages.
gem "bullet_train-sortable"
gem "bullet_train-scope_questions"
gem "bullet_train-obfuscates_id"
gem "bullet_train-sortable", BULLET_TRAIN_VERSION
gem "bullet_train-scope_questions", BULLET_TRAIN_VERSION
gem "bullet_train-obfuscates_id", BULLET_TRAIN_VERSION

# Core gems that are dependencies of gems listed above. Technically they
# shouldn't need to be listed here, but we list them so that we can keep
# verion numbers in sync.
gem "bullet_train-fields", BULLET_TRAIN_VERSION
gem "bullet_train-has_uuid", BULLET_TRAIN_VERSION
gem "bullet_train-roles", BULLET_TRAIN_VERSION
gem "bullet_train-scope_validator", BULLET_TRAIN_VERSION
gem "bullet_train-super_load_and_authorize_resource", BULLET_TRAIN_VERSION
gem "bullet_train-themes-tailwind_css", BULLET_TRAIN_VERSION

gem "devise"
gem "devise-two-factor"
Expand Down
Loading
Loading