bullet_train 1.4.9 → 1.4.11

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 433bfb9d02ab90a900aa78aa7918b9b33a644738756ca001d75571e889faa111
4
- data.tar.gz: 4a0fb6994451fb11ac8bd268bb2df790e994ff7b1a4e9ac3ca6f9c71e3187808
3
+ metadata.gz: 140dbaf8f86eba011c5c4e5b5a01a6901d4ab16b669acbffeed08a3dc75f5dfb
4
+ data.tar.gz: 9a1153ecb4219a98ee472aa6f56a2ac1070f2f893f79735112fad5d17464bb74
5
5
  SHA512:
6
- metadata.gz: 18bf21a0212e080b886d045a25cce43f6a05f60844c2bc97f73bd062190d9d01968fcf0e8946c9a98f2a3784958685e90ff321edf471b583be7dcf0a0c3d7683
7
- data.tar.gz: aea9776250358a2436400ed63c4ee89bc80b1bb31537dcb082f249fd6ae3522bddcc008a6d275c6a046514a351a209ba8a49741fd66b7fcbbe9c755171969d1e
6
+ metadata.gz: aaee080da3b6620766f71c0f9c064640246f392b1a95d20451dbb205182ba2c2db84f97475311feb5dfa7e4637ddbaf4bf9fabb808184ef44ac9f585bc89f6fd
7
+ data.tar.gz: 42307b6892bd7946f2be04a1a184003e88c041b150233bb36c0d135045736ea3491679fb7d10a0f14f4a15515ed37ec9aa2cde25041421e3becb5ee69443c44f
@@ -0,0 +1,63 @@
1
+ # Notable Versions
2
+
3
+ ## v1.4.11 / v1.5.0
4
+
5
+ In v1.5.0 we made some fairly big changes to the format of system tests. In order to ease the
6
+ transition we shipped a helper in 1.4.11 that you can use to modify your copy of the tests before
7
+ you merge in version 1.5.0. Doing this should reduce the chances for merge conflicts.
8
+
9
+ To use the helper to modify your tests run this in a console (after updating to v1.4.11):
10
+
11
+ ```
12
+ bin/update/system_tests/use_device_test
13
+ ```
14
+
15
+ Then you should:
16
+
17
+ * Run the tests to make sure they still pass
18
+ * Commit the updated test files
19
+ * Update to v1.5.0
20
+
21
+ ### About this change
22
+
23
+ We've introduced a new `device_test` helper that wraps up some of the implementation
24
+ details about running system tests on a variety of devices.
25
+
26
+ It simplifies the way that we write system tests like this:
27
+
28
+ ```diff
29
+ - @@test_devices.each do |device_name, display_details|
30
+ - test "user can so something on a #{device_name}" do
31
+ - resize_for(display_details)
32
+ - # actual tests here
33
+ - end
34
+ - end
35
+ + device_test "user can do something" do
36
+ + # actual test code
37
+ + end
38
+ ```
39
+
40
+ The specific changes are:
41
+
42
+ * Remove the enclosing @@test_devices.each do block
43
+ * Remove one level of indentation from test inside those blocks
44
+ * Remove the resize_for(display_details) from tests in those blocks
45
+ * Use `device_test` helper to handle running the test on different devices
46
+
47
+
48
+ ## v1.3.22
49
+
50
+ In version 1.3.22 we added an `Address` model. If your app already had an `Address` model you'll
51
+ probably want to reject some of the updates made to the starter repo in this version.
52
+
53
+ TODO: Can we offer more direction here?
54
+
55
+
56
+ ## v1.3.0
57
+
58
+ Version 1.3.0 is when we started explicitly bumping the Bullet Train gems within the starter repo
59
+ every time that we release a new version of the `core` gems. Unfortunately, at that time we were
60
+ only making changes to Gemfile.lock which kind of hides the dependencies, and is often a source of
61
+ merge conflicts that can be hard to sort out.
62
+
63
+ [See the upgrade guide for getting your app to version 1.3.0](/docs/upgrades/yolo-130)
@@ -7,6 +7,8 @@
7
7
  * [Upgrade from any version to `1.4.0`](/docs/upgrades/yolo-140.md)
8
8
  * [Upgrade from any version to `1.3.0`](/docs/upgrades/yolo-130.md)
9
9
  * [Upgrade from `1.3.x` to `1.4.0`](/docs/upgrades/yolo-140.md)
10
+ * [Notable versions](/docs/upgrades/notable-versions)
11
+
10
12
 
11
13
  ## About the upgrade process
12
14
 
@@ -27,6 +29,8 @@ which is less hidden and is not as prone to having merge conflicts as `Gemfile.l
27
29
  As a result of these changes, there are a few different ways that you might choose to upgrade your application
28
30
  depending on which version you're currently on.
29
31
 
32
+ [Be sure to check our Notable Versions list to see if there's anything tricky about the version you're moving to.](/docs/upgrades/notable-versions)
33
+
30
34
  ## How to find your current version
31
35
 
32
36
  You can easily find your current version by running `bundle show | grep "bullet_train "`.
@@ -173,6 +173,8 @@ Before doing this you should have already followed the instructions above to get
173
173
 
174
174
  For purposes of this example we'll assume that you're stepping up from `1.3.0` to `1.3.1`.
175
175
 
176
+ [Be sure to check our Notable Versions list to see if there's anything tricky about the version you're moving to.](/docs/upgrades/notable-versions)
177
+
176
178
  ### 1. Make sure you're working with a clean local copy.
177
179
 
178
180
  ```
@@ -12,6 +12,8 @@
12
12
 
13
13
  ## Getting to `1.4.0`
14
14
 
15
+ [Be sure to check our Notable Versions list to see if there's anything tricky about the version you're moving to.](/docs/upgrades/notable-versions)
16
+
15
17
  ### 1. Make sure you're working with a clean local copy.
16
18
 
17
19
  ```
@@ -58,7 +58,7 @@ generate a new one that matches what you need:
58
58
 
59
59
  ```
60
60
  git checkout HEAD -- Gemfile.lock
61
- bundle update
61
+ bundle install
62
62
  ```
63
63
 
64
64
  If you choose to sort out `Gemfile.lock` by hand it's a good idea to run `bundle install` just to make
data/docs/upgrades.md CHANGED
@@ -36,6 +36,8 @@ your application.
36
36
 
37
37
  For the purposes of these instructions we'll assume that you're on version `1.4.0` and are going to upgrade to version `1.4.1`.
38
38
 
39
+ [Be sure to check our Notable Versions list to see if there's anything tricky about the version you're moving to.](/docs/upgrades/notable-versions)
40
+
39
41
  ### 2. Make sure you're working with a clean local copy.
40
42
 
41
43
  ```
@@ -85,7 +87,7 @@ generate a new one that matches what you need:
85
87
 
86
88
  ```
87
89
  git checkout HEAD -- Gemfile.lock
88
- bundle update
90
+ bundle install
89
91
  ```
90
92
 
91
93
  If you choose to sort out `Gemfile.lock` by hand it's a good idea to run `bundle install` just to make
@@ -58,17 +58,8 @@ module BulletTrain
58
58
  # Look for showcase preview.
59
59
  file_name = source_file[:absolute_path].split("/").last
60
60
  showcase_partials = Dir.glob(`bundle show bullet_train-themes-light`.chomp + "/app/views/showcase/**/*.html.erb")
61
- has_showcase_partial = false
62
- showcase_partial = nil
63
- showcase_partials.each do |partial|
64
- has_showcase_preview = partial.match?(/#{file_name}$/)
65
- if has_showcase_preview
66
- showcase_partial = partial
67
- break
68
- end
69
- end
70
-
71
- if has_showcase_partial
61
+ showcase_preview = showcase_partials.find { _1.end_with?(file_name) }
62
+ if showcase_preview
72
63
  puts "Ejecting showcase preview for #{source_file[:relative_path]}"
73
64
  partial_relative_path = showcase_preview.scan(/(?=app\/views\/showcase).*/).last
74
65
  directory = partial_relative_path.split("/")[0..-2].join("/")
@@ -1,3 +1,3 @@
1
1
  module BulletTrain
2
- VERSION = "1.4.9"
2
+ VERSION = "1.4.11"
3
3
  end
data/lib/bullet_train.rb CHANGED
@@ -9,6 +9,8 @@ require "bullet_train/super_load_and_authorize_resource"
9
9
  require "bullet_train/has_uuid"
10
10
  require "bullet_train/scope_validator"
11
11
 
12
+ require "exceptions"
13
+
12
14
  require "colorizer"
13
15
  require "bullet_train/core_ext/string_emoji_helper"
14
16
 
data/lib/exceptions.rb ADDED
@@ -0,0 +1,3 @@
1
+ class RemovingLastTeamAdminException < RuntimeError; end
2
+
3
+ class RemovingLastTeamException < RuntimeError; end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bullet_train
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.9
4
+ version: 1.4.11
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Culver
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-09-27 00:00:00.000000000 Z
11
+ date: 2023-10-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: standard
@@ -753,6 +753,7 @@ files:
753
753
  - docs/trademark.md
754
754
  - docs/tunneling.md
755
755
  - docs/upgrades.md
756
+ - docs/upgrades/notable-versions.md
756
757
  - docs/upgrades/options.md
757
758
  - docs/upgrades/yolo-130.md
758
759
  - docs/upgrades/yolo-140.md
@@ -767,6 +768,7 @@ files:
767
768
  - lib/bullet_train/resolver.rb
768
769
  - lib/bullet_train/version.rb
769
770
  - lib/colorizer.rb
771
+ - lib/exceptions.rb
770
772
  - lib/tasks/bullet_train_tasks.rake
771
773
  homepage: https://github.com/bullet-train-co/bullet_train-core/tree/main/bullet_train
772
774
  licenses: