pact_broker-client 1.27.9 → 1.27.14

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: 3822acf0ceb27fd9040ec95fd4a9e828b521e92cbfef20c4910121e27c67bfc9
4
- data.tar.gz: 7346eca5f065e52936f6c6c2079e6b5dba9cbaef970e91e6866f963b0dff8ada
3
+ metadata.gz: 42b172b804cac545ec4d9c4a37369e29190fceecb63b19e33642857266d52370
4
+ data.tar.gz: c28a6e208a28265b012cf46e95e132599e2957b9e0ae72e5b0c37db4fb35cb8d
5
5
  SHA512:
6
- metadata.gz: 2910d96b6f9835ff76f1a80c05cdb5176b8693d4dfe1d198e95541c138f4c7b03624c535173b3e25ce5e8e44e706f7bcfd39aec746ea346fa1922a9c41f7c8cf
7
- data.tar.gz: 925fd540adc6840aad5c5c9c4e07c992bc3cb40bb8f168ea6742616aabaeaabc530c855849f4d4e0fafe1d03e14c0925e52e72584576700370dbeae235082744
6
+ metadata.gz: f2ef143422dd0ec9a3471ce50676400287a76e1c905303cb58a8cf8e7b0687643b31d1eb406dae4f29412f394d6ec7e3b9bdc6ea5b18522838e2077f6003c772
7
+ data.tar.gz: d803d7b3316fe1f05edb10598719ad4434357e12b9db1bd7acfd5f3e0345022f69d78b64be47d64d1da1065b6558b4c44e5bbd2d34fb3bca80e0d7d97f243b57
@@ -30,11 +30,24 @@ jobs:
30
30
  INCREMENT: patch
31
31
  - name: Release gem
32
32
  run: |
33
- gem -v
34
33
  touch ~/.gem/credentials
35
- chmod 0600 ~/.gem/credentials
34
+ # chmod 0600 ~/.gem/credentials
36
35
  script/release-gem.sh
37
36
  env:
38
37
  GEM_HOST_API_KEY: '${{ secrets.RUBYGEMS_API_KEY }}'
39
- BUNDLE_GITHUB__COM: x-access-token:${{ secrets.GITHUB_TOKEN }}
40
- #GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}'
38
+ - name: Prepare Github Release
39
+ run: script/prepare-github-release.sh
40
+ - name: Create Github Release
41
+ uses: actions/create-release@v1
42
+ env:
43
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
44
+ with:
45
+ tag_name: ${{ env.TAG }}
46
+ release_name: ${{ env.TAG }}
47
+ body_path: tmp/RELEASE_NOTES.md
48
+ - name: Trigger release of pact-cli Docker image
49
+ uses: peter-evans/repository-dispatch@v1
50
+ with:
51
+ token: ${{ secrets.GHTOKENFORPACTCLIRELEASE }}
52
+ repository: pact-foundation/pact-ruby-cli
53
+ event-type: gem-released
@@ -1,3 +1,15 @@
1
+ <a name="v1.27.14"></a>
2
+ ### v1.27.14 (2020-07-11)
3
+
4
+
5
+ #### Bug Fixes
6
+
7
+ * not a real fix, just testing release notes ([1fabb8b](/../../commit/1fabb8b))
8
+
9
+
10
+ <a name="v1.27.13"></a>
11
+ ### v1.27.13 (2020-07-11)
12
+
1
13
  <a name="v1.27.1"></a>
2
14
  ### v1.27.1 (2020-07-10)
3
15
 
@@ -1,5 +1,5 @@
1
1
  module PactBroker
2
2
  module Client
3
- VERSION = '1.27.9'
3
+ VERSION = '1.27.14'
4
4
  end
5
5
  end
@@ -0,0 +1,7 @@
1
+ #!/bin/sh
2
+ set -e
3
+
4
+ tag=$(git describe)
5
+ mkdir -p tmp
6
+ git diff CHANGELOG.md | grep "^+" | grep -v "b/CHANGELOG.md" | sed 's/^+//g' > tmp/RELEASE_NOTES.md
7
+ echo "::set-env name=TAG::${tag}"
@@ -9,3 +9,4 @@ version_file=$(bundle exec bump file --value-only)
9
9
  version=$(bundle exec bump current --value-only)
10
10
  git add CHANGELOG.md "${version_file}"
11
11
  git commit -m "chore(release): version ${version}"
12
+
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pact_broker-client
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.27.9
4
+ version: 1.27.14
5
5
  platform: ruby
6
6
  authors:
7
7
  - Beth Skurrie
@@ -146,18 +146,15 @@ extensions: []
146
146
  extra_rdoc_files: []
147
147
  files:
148
148
  - ".github/workflows/release_gem.yml"
149
- - ".github/workflows/trigger_pact_cli_release.yml"
150
149
  - ".github/workflows/trigger_pact_docs_update.yml"
151
150
  - ".gitignore"
152
151
  - ".rspec"
153
152
  - ".travis.yml"
154
153
  - CHANGELOG.md
155
- - Dockerfile
156
154
  - Gemfile
157
155
  - README.md
158
156
  - RELEASING.md
159
157
  - Rakefile
160
- - TODO.md
161
158
  - appveyor.yml
162
159
  - bin/pact-broker
163
160
  - ci.sh
@@ -165,7 +162,6 @@ files:
165
162
  - doc/markdown/README.md
166
163
  - doc/pacts/markdown/Pact Broker Client - Pact Broker.md
167
164
  - doc/pacts/markdown/README.md
168
- - entrypoint.sh
169
165
  - example/scripts/README.md
170
166
  - example/scripts/deploy-consumer.sh
171
167
  - example/scripts/pact.json
@@ -221,6 +217,7 @@ files:
221
217
  - pact-broker-client.gemspec
222
218
  - script/api_key_test.rb
223
219
  - script/generate-cli-usage.sh
220
+ - script/prepare-github-release.sh
224
221
  - script/prepare-release.sh
225
222
  - script/publish-pact.sh
226
223
  - script/release-gem.sh
@@ -1,15 +0,0 @@
1
- name: Trigger release of the pact-cli Docker image
2
- on:
3
- release:
4
- types: [created]
5
-
6
- jobs:
7
- build:
8
- runs-on: ubuntu-latest
9
- steps:
10
- - name: Repository Dispatch
11
- uses: peter-evans/repository-dispatch@v1
12
- with:
13
- token: ${{ secrets.GHTOKENFORPACTCLIRELEASE }}
14
- repository: pact-foundation/pact-ruby-cli
15
- event-type: gem-released
data/Dockerfile DELETED
@@ -1,23 +0,0 @@
1
- FROM ruby:2.2.4
2
-
3
- #RUN apk update \
4
- # && apk --no-cache add \
5
- # "build-base>=0.5" \
6
- # "bash>=4.4" \
7
- # "ca-certificates>=20190108" \
8
- # "git>=2.20" \
9
- # "postgresql-dev>=11.3" \
10
- # "sqlite-dev>=3.28" \
11
- # "sqlite>=3.28" \
12
- # "tzdata>=2019" \
13
- # "mariadb-dev>=10.3" \
14
- # && rm -rf /var/cache/apk/*
15
-
16
- WORKDIR /app
17
-
18
- COPY . ./
19
-
20
- RUN gem install bundler -v '~>1.0' \
21
- && bundle install --jobs 3 --retry 3
22
-
23
- CMD []
data/TODO.md DELETED
@@ -1,7 +0,0 @@
1
- can-i-deploy --pacticipant Foo --latest dev --to staging
2
- can-i-deploy --pacticipant Foo --latest dev --with-all-tagged prod # multiple versions in production
3
-
4
- can-i-deploy --pacticipant Foo --stage dev --to-stage prod
5
-
6
- can-i-deploy --pacticipant Foo --branch dev --to-stage prod
7
- can-i-deploy --pacticipant Foo --latest dev --to-stage prod
@@ -1,4 +0,0 @@
1
- #!/bin/sh
2
-
3
- cd $HOME
4
- bundle exec bin/"$@"