bullet_train 1.4.10 → 1.4.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/docs/upgrades/notable-versions.md +63 -0
- data/docs/upgrades/options.md +4 -0
- data/docs/upgrades/yolo-130.md +2 -0
- data/docs/upgrades/yolo-140.md +2 -0
- data/docs/upgrades.md +2 -0
- data/lib/bullet_train/resolver.rb +2 -11
- data/lib/bullet_train/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 140dbaf8f86eba011c5c4e5b5a01a6901d4ab16b669acbffeed08a3dc75f5dfb
|
4
|
+
data.tar.gz: 9a1153ecb4219a98ee472aa6f56a2ac1070f2f893f79735112fad5d17464bb74
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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)
|
data/docs/upgrades/options.md
CHANGED
@@ -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 "`.
|
data/docs/upgrades/yolo-130.md
CHANGED
@@ -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
|
```
|
data/docs/upgrades/yolo-140.md
CHANGED
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
|
```
|
@@ -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
|
-
|
62
|
-
|
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("/")
|
data/lib/bullet_train/version.rb
CHANGED
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.
|
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-
|
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
|