djin 0.11.1 → 0.11.2

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: b8b751c3b121d17a2b12ff1a74150298fb04e6a5a412a4b8def42992f7008804
4
- data.tar.gz: b178db2c40895920abf006f9c3ac2d73af23d789651642096e9e30ef38a6c099
3
+ metadata.gz: c8ed8e839aa664296b03ffabbd80b1394d68bfbd02439205d79d26fc7b450653
4
+ data.tar.gz: a7023cca57674f3f7e176d80b21f7c60d3251017df6f1252bd47d3549ed89740
5
5
  SHA512:
6
- metadata.gz: b4c9807ae25080ec6cb2f6118b6a1d24ccccecf7b1205a677dfffb79d178668f69cf373213360e877a3fc2f2f7a9f901bfab6e7517490c59adf7d6c586b5c853
7
- data.tar.gz: feec1ba8678b52c50f8d7bb12fd218e4bf08e147aee7ca7a634673b6f6abd76b6c4f1fe2fe4e0f902cb028deb1ae76c1a738339d46c44a81271cf8db7d1e23c3
6
+ metadata.gz: f8e9ead0edc8cf175b3fad08e6129f023be758610bc2e0636cd4d0b72aa7b2239b08b84234693127ddd8f1e74731852a5e7e2d0bdf8de55bbb17f88734aac625
7
+ data.tar.gz: 9d2f4d89f2a1a220b67f3e8a0d97b95e43c75f542559eb8ead1d829c4687f9a856f644268c3e3f3ed3a63f20d765d9689653490eb4a6d527fa1e4f864a18eb57
@@ -1,3 +1,7 @@
1
+ ## 0.11.2 - 29/01/2021
2
+ * [FIX] Remote-Config Fetch for custom Branches
3
+ [FIX] Integration Specs
4
+
1
5
  ## 0.11.1 - 15/01/2021
2
6
  * [FIX] remote-config fetch with same repo reference
3
7
 
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- djin (0.11.1)
4
+ djin (0.11.2)
5
5
  dry-cli (~> 0.6.0)
6
6
  dry-equalizer (~> 0.3.0)
7
7
  dry-struct (~> 1.3.0)
@@ -40,24 +40,22 @@ GEM
40
40
  dry-logic (1.1.0)
41
41
  concurrent-ruby (~> 1.0)
42
42
  dry-core (~> 0.5, >= 0.5)
43
- dry-schema (1.5.6)
43
+ dry-schema (1.6.0)
44
44
  concurrent-ruby (~> 1.0)
45
45
  dry-configurable (~> 0.8, >= 0.8.3)
46
- dry-core (~> 0.4)
47
- dry-equalizer (~> 0.2)
46
+ dry-core (~> 0.5, >= 0.5)
48
47
  dry-initializer (~> 3.0)
49
48
  dry-logic (~> 1.0)
50
- dry-types (~> 1.4)
49
+ dry-types (~> 1.5)
51
50
  dry-struct (1.3.0)
52
51
  dry-core (~> 0.4, >= 0.4.4)
53
52
  dry-equalizer (~> 0.3)
54
53
  dry-types (~> 1.3)
55
54
  ice_nine (~> 0.11)
56
- dry-types (1.4.0)
55
+ dry-types (1.5.0)
57
56
  concurrent-ruby (~> 1.0)
58
57
  dry-container (~> 0.3)
59
- dry-core (~> 0.4, >= 0.4.4)
60
- dry-equalizer (~> 0.3)
58
+ dry-core (~> 0.5, >= 0.5)
61
59
  dry-inflector (~> 0.1, >= 0.1.2)
62
60
  dry-logic (~> 1.0, >= 1.0.2)
63
61
  dry-validation (1.5.6)
data/README.md CHANGED
@@ -27,7 +27,7 @@ If you use Rbenv you can install djin only once and create an alias in your .bas
27
27
  To use djin first you need to create a djin.yml file:
28
28
 
29
29
  ```yaml
30
- djin_version: '0.11.1'
30
+ djin_version: '0.11.2'
31
31
 
32
32
  tasks:
33
33
  # With a docker image
@@ -54,7 +54,7 @@ You can also set task dependencies with depends_on option:
54
54
 
55
55
 
56
56
  ```yaml
57
- djin_version: '0.11.1'
57
+ djin_version: '0.11.2'
58
58
 
59
59
  _default_run_options: &default_run_options
60
60
  options: "--rm"
@@ -83,7 +83,7 @@ tasks:
83
83
  Or mix local commands and docker/docker-compose commands:
84
84
 
85
85
  ```yaml
86
- djin_version: '0.11.1'
86
+ djin_version: '0.11.2'
87
87
 
88
88
  _default_run_options: &default_run_options
89
89
  options: "--rm"
@@ -122,7 +122,7 @@ After that you can run `djin {{task_name}}`, like `djin script` or `djin test`
122
122
  You can also use environment variables using the '{{YOUR_ENV_HERE}}' syntax, like so:
123
123
 
124
124
  ```yaml
125
- djin_version: '0.11.1'
125
+ djin_version: '0.11.2'
126
126
 
127
127
  _default_run_options: &default_run_options
128
128
  options: "--rm"
@@ -139,7 +139,7 @@ tasks:
139
139
 
140
140
  Or define some variables to use in multiple locations
141
141
  ```yaml
142
- djin_version: '0.11.1'
142
+ djin_version: '0.11.2'
143
143
 
144
144
  _default_run_options: &default_run_options
145
145
  options: "--rm"
@@ -163,7 +163,7 @@ tasks:
163
163
  It's also possible to pass custom arguments to the command, which means is possible to make a djin task act like the command itself:
164
164
 
165
165
  ```yaml
166
- djin_version: '0.11.1'
166
+ djin_version: '0.11.2'
167
167
 
168
168
  _default_run_options: &default_run_options
169
169
  options: "--rm"
@@ -189,7 +189,7 @@ Under the hood djin uses [Mustache](https://mustache.github.io/), so you can use
189
189
  If you have multiple tasks with similar behavior and with small differences you can use the `include` keyword, so this:
190
190
 
191
191
  ```yaml
192
- djin_version: '0.11.1'
192
+ djin_version: '0.11.2'
193
193
 
194
194
  tasks:
195
195
  "host1:ssh":
@@ -228,7 +228,7 @@ can become this:
228
228
 
229
229
  ```yaml
230
230
  # djin.yml
231
- djin_version: '0.11.1'
231
+ djin_version: '0.11.2'
232
232
 
233
233
  include:
234
234
  - file: '.djin/server_tasks.yml'
@@ -250,7 +250,7 @@ include:
250
250
 
251
251
  ```yaml
252
252
  # .djin/server_tasks.yml
253
- djin_version: '0.11.1'
253
+ djin_version: '0.11.2'
254
254
 
255
255
  tasks:
256
256
  "{{namespace}}:ssh":
@@ -272,7 +272,7 @@ tasks:
272
272
  You can also reuse tasks in some git repository, to do that you need to declare a git source and optionally a version:
273
273
 
274
274
  ```yaml
275
- djin_version: '0.11.1'
275
+ djin_version: '0.11.2'
276
276
 
277
277
  include:
278
278
  - git: 'https://github.com/catks/djin.git'
data/djin.yml CHANGED
@@ -1,4 +1,4 @@
1
- djin_version: '0.11.1'
1
+ djin_version: '0.11.2'
2
2
 
3
3
  _default_run_options: &default_run_options
4
4
  options: "--rm --entrypoint=''"
@@ -1,5 +1,5 @@
1
1
  ---
2
- djin_version: '0.11.1'
2
+ djin_version: '0.11.2'
3
3
 
4
4
  include:
5
5
  - file: 'djin_lib/test.yml'
@@ -1,4 +1,4 @@
1
- djin_version: '0.11.1'
1
+ djin_version: '0.11.2'
2
2
 
3
3
  _default_run_options: &default_run_options
4
4
  options: "--rm --entrypoint=''"
@@ -1,4 +1,4 @@
1
- djin_version: '0.11.1'
1
+ djin_version: '0.11.2'
2
2
 
3
3
  include:
4
4
  - file: '.djin/server_tasks.yml'
@@ -1,4 +1,4 @@
1
- djin_version: '0.11.1'
1
+ djin_version: '0.11.2'
2
2
 
3
3
  include:
4
4
  - git: 'https://gitserver/myrepo.git'
@@ -33,7 +33,7 @@ module Djin
33
33
 
34
34
  stderr.puts "Checking out to '#{rc.version}'"
35
35
  git_repo.checkout(rc.version)
36
- git_repo.pull
36
+ git_repo.pull('origin', rc.version)
37
37
  end
38
38
  end
39
39
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Djin
4
- VERSION = '0.11.1'
4
+ VERSION = '0.11.2'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: djin
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.11.1
4
+ version: 0.11.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Carlos Atkinson
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-01-15 00:00:00.000000000 Z
11
+ date: 2021-01-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: dry-cli