plan_my_stuff 1.0.2 → 1.0.3
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/CHANGELOG.md +8 -0
- data/lib/plan_my_stuff/version.rb +1 -1
- data/lib/tasks/plan_my_stuff.rake +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8d22beb4e744332fb2af5dc20c00480c1818d78a68d594322dfbe58585f003ff
|
|
4
|
+
data.tar.gz: 0b8cc3be8d88f4b4ed26bfa31daa5fe4863c7239cab0c6c59ed6e873d6b7341f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3c7b565d97c5664b92163d282cd0809ca98e176633e4f015e17d03c2178b27909c029b4f5819efd842928ba26478eba86cade55e1c5f6dcc3a97c388185d46e1
|
|
7
|
+
data.tar.gz: d74dcf1c7a4756d3b88a339c8ff325fe114a96152f27e03f03f431008bb4affdc6d78c5ce6a5a3dbb7d9e31553b24bd06cc5593c9d85e6abc7f080143ed44c2b
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.0.3
|
|
4
|
+
|
|
5
|
+
### Fixed
|
|
6
|
+
|
|
7
|
+
- `plan_my_stuff:webhooks:create_org` and `plan_my_stuff:webhooks:create_repo` now use `import_client` (the
|
|
8
|
+
`import_access_token`) instead of the regular `access_token`, since creating org and repo webhooks requires an admin
|
|
9
|
+
token
|
|
10
|
+
|
|
3
11
|
## 1.0.2
|
|
4
12
|
|
|
5
13
|
### Fixed
|
|
@@ -29,7 +29,7 @@ namespace :plan_my_stuff do
|
|
|
29
29
|
raise(PlanMyStuff::ConfigurationError, 'PlanMyStuff.configuration.webhook_secret is blank')
|
|
30
30
|
end
|
|
31
31
|
|
|
32
|
-
hook = PlanMyStuff.
|
|
32
|
+
hook = PlanMyStuff.import_client.rest(
|
|
33
33
|
:create_org_hook,
|
|
34
34
|
config.organization,
|
|
35
35
|
{ url: url, content_type: 'json', secret: config.webhook_secret, insecure_ssl: '0' },
|
|
@@ -56,7 +56,7 @@ namespace :plan_my_stuff do
|
|
|
56
56
|
raise(PlanMyStuff::ConfigurationError, 'PlanMyStuff.configuration.webhook_secret is blank')
|
|
57
57
|
end
|
|
58
58
|
|
|
59
|
-
hook = PlanMyStuff.
|
|
59
|
+
hook = PlanMyStuff.import_client.rest(
|
|
60
60
|
:create_hook,
|
|
61
61
|
repo,
|
|
62
62
|
'web',
|