cobra_commander 0.15.0 → 0.15.1

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: 4fe38b5cf9d55a71b6a24111018d90cbd624c4d6bd3a95a7313f9c7afbeb6e92
4
- data.tar.gz: 4fe0c927cbc3b985c0153849ff48889511dd726e35ddf534dd723cf9c8d18501
3
+ metadata.gz: d625729cf3e531754033d5e368c51e228ffb2e4e46d3c85e841e1731ec3ebc16
4
+ data.tar.gz: 7e9e07583026f458cae3eb4820e6a2de08afd91ea1d76203cc17c6f7666bd0a5
5
5
  SHA512:
6
- metadata.gz: e1d80dac7d927f2f6cf754d09f6aa731f95ac7279f49784f3c4d03f1d4373d17cd44edc67c30218af28cdf3957c3042ed683cbd899903fe4cdd568c4b061c116
7
- data.tar.gz: f87bf50a8747adfc75617b3c55dabd11d1148bfe90587ed07c362d4fe0cfe9d30299889aab1b5fda6b3af4a8993cc26ce0381816d8585bc368fdf4876dee6013
6
+ metadata.gz: 2cbf7b292a417763f26e2b4345c90d77bd33ad33e96b12c0823274fbcd94cc545d6f0ee58508171d1020ebfbddef33dd376406887a1a7a04583e8dec760b942d
7
+ data.tar.gz: dfbb0224eea4dcac7037add00b03f8e41cc4563e50ec3880283028fb940b2f9ad72dba4aa40f6d487f4ef4df68431f1e40b6bb9a74208299e822e7e80fce7ea3
data/docs/CHANGELOG.md CHANGED
@@ -2,13 +2,17 @@
2
2
 
3
3
  ## Unreleased
4
4
 
5
+ ## Version 0.15.1 - 2022-08-23
6
+
7
+ * Fix `--affected` filter [#82](https://github.com/powerhome/cobra_commander/pull/82)
8
+
5
9
  ## Version 0.15.0 - 2022-08-16
6
10
 
11
+ * Resolve YARN dependencies based on yarn workspaces info workspaceDependencies [#81](https://github.com/powerhome/cobra_commander/pull/81)
7
12
  * Add `--affected` filter to `cobra ls` and `cobra exec`, to target all components affected by changes since given branch [#80](https://github.com/powerhome/cobra_commander/pull/80)
8
13
  * Allows a comma separated list of components on `cobra ls` and `cobra exec` instead of a single component [#79](https://github.com/powerhome/cobra_commander/pull/79)
9
- * Resolve YARN dependencies based on yarn workspaces info workspaceDependencies [#81](https://github.com/powerhome/cobra_commander/pull/81)
10
- * Fix cbra.info links [#70](https://github.com/powerhome/cobra_commander/pull/70)
11
14
  * Replace standardrb by rubocop-powerhome [#78](https://github.com/powerhome/cobra_commander/pull/78)
15
+ * Fix cbra.info links [#70](https://github.com/powerhome/cobra_commander/pull/70)
12
16
 
13
17
  ## Version 0.14.0 - 2021-11-24
14
18
 
@@ -13,6 +13,10 @@ module CobraCommander
13
13
  @names ||= all_affected.map(&:name)
14
14
  end
15
15
 
16
+ def all_affected
17
+ @all_affected ||= (@directly | @transitively).sort_by(&:name)
18
+ end
19
+
16
20
  def scripts
17
21
  @scripts ||= paths.map { |path| File.join(path, "test.sh") }
18
22
  end
@@ -69,10 +73,6 @@ module CobraCommander
69
73
  }
70
74
  end
71
75
 
72
- def all_affected
73
- @all_affected ||= (@directly | @transitively).sort_by(&:name)
74
- end
75
-
76
76
  def paths
77
77
  @paths ||= all_affected.map(&:root_paths).flatten
78
78
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module CobraCommander
4
- VERSION = "0.15.0"
4
+ VERSION = "0.15.1"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cobra_commander
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.15.0
4
+ version: 0.15.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ben Langfeld
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: exe
12
12
  cert_chain: []
13
- date: 2022-08-17 00:00:00.000000000 Z
13
+ date: 2022-08-23 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: bundler