salesforce_streamer 1.2.1 → 1.2.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/ISSUE_TEMPLATE/bug_report.md +33 -0
- data/.github/ISSUE_TEMPLATE/config.yml +1 -0
- data/.github/ISSUE_TEMPLATE/story.md +22 -0
- data/.github/PULL_REQUEST_TEMPLATE.md +18 -0
- data/.github/workflows/auto-approve.yml +16 -0
- data/Gemfile.lock +26 -23
- data/lib/core_extensions/cookiejar/cookie_validation.rb +1 -1
- data/lib/salesforce_streamer/version.rb +1 -1
- metadata +7 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 88a8ec9604b29ed48acfcf8ac1435fcacf199a7813eba8db8937038874132128
|
4
|
+
data.tar.gz: 5b7c06be3a4467d41845e76578c95a9bb197a10017ee893eb2acc516b26ffbb0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 36d5ba79e4af94533266bc9ac52b5110b6a4f6305db9c60a6498b7218d7a5e8c7f48b9db008b582c56877845bb9a498618141da4af0c3e1b77a8173a0640733d
|
7
|
+
data.tar.gz: d06777105574d0ff430888059ab1d1f61164f520da6b3b5a1c6408e983de3fe22d27fabf575e46a2d7f7ce14936e7af8423b8c7b433a296183a73da8716cd0e9
|
@@ -0,0 +1,33 @@
|
|
1
|
+
---
|
2
|
+
name: Bug report
|
3
|
+
about: Create a report to track an issue that has been identified
|
4
|
+
title: ''
|
5
|
+
labels: ''
|
6
|
+
assignees: ''
|
7
|
+
|
8
|
+
---
|
9
|
+
|
10
|
+
**Describe the bug**
|
11
|
+
A clear and concise description of what the bug is.
|
12
|
+
|
13
|
+
**To Reproduce**
|
14
|
+
Steps to reproduce the behavior:
|
15
|
+
1. Go to '...'
|
16
|
+
2. Click on '....'
|
17
|
+
3. Scroll down to '....'
|
18
|
+
4. See error
|
19
|
+
|
20
|
+
**Expected behavior**
|
21
|
+
A clear and concise description of what you expected to happen.
|
22
|
+
|
23
|
+
**Mutation/Query**
|
24
|
+
|
25
|
+
**URL and HTTP method (for non-GQL):**
|
26
|
+
|
27
|
+
**Sentry or Logs URL:**
|
28
|
+
|
29
|
+
**User/authentication details**
|
30
|
+
Impacted user name or service account
|
31
|
+
|
32
|
+
**Additional context**
|
33
|
+
Add any other context about the problem here.
|
@@ -0,0 +1 @@
|
|
1
|
+
blank_issues_enabled: false
|
@@ -0,0 +1,22 @@
|
|
1
|
+
---
|
2
|
+
name: New story
|
3
|
+
about: Add a new story for implementation
|
4
|
+
title: ''
|
5
|
+
labels: ''
|
6
|
+
assignees: ''
|
7
|
+
|
8
|
+
---
|
9
|
+
|
10
|
+
**Describe the solution**
|
11
|
+
A clear and concise description of what you want to happen.
|
12
|
+
When will this feature be done?
|
13
|
+
|
14
|
+
**Describe the users**
|
15
|
+
Who are we building this feature for?
|
16
|
+
|
17
|
+
**Additional context**
|
18
|
+
Add any other context or screenshots about the feature request here.
|
19
|
+
Link to any applicable documents describing the feature.
|
20
|
+
|
21
|
+
**Designs**
|
22
|
+
Link to any applicable designs on Invision.
|
@@ -0,0 +1,18 @@
|
|
1
|
+
## Description
|
2
|
+
<!--- Describe your changes in detail -->
|
3
|
+
|
4
|
+
## Related issue(s)
|
5
|
+
<!--- GH issue number -->
|
6
|
+
|
7
|
+
## Motivation and Context
|
8
|
+
<!--- Why is this change required? What problem does it solve? -->
|
9
|
+
<!--- If it fixes an open issue, please link to the issue here. -->
|
10
|
+
|
11
|
+
## How Has This Been Tested?
|
12
|
+
<!--- Please describe in detail how you tested your changes. -->
|
13
|
+
|
14
|
+
## Screenshots (if appropriate):
|
15
|
+
<!--- Please add any screenshots of the feature. -->
|
16
|
+
|
17
|
+
## Related PRs
|
18
|
+
<!--- Please add links to any related PRs (backend, component packages, etc). -->
|
@@ -0,0 +1,16 @@
|
|
1
|
+
# automatically approve PRs submitted by Dependabot
|
2
|
+
# this will allow Dependabot to automatically merge dependency update PRs where CI passes
|
3
|
+
# from: https://github.com/hmarr/auto-approve-action
|
4
|
+
name: Auto approve Dependabot PRs
|
5
|
+
|
6
|
+
on:
|
7
|
+
pull_request
|
8
|
+
|
9
|
+
jobs:
|
10
|
+
auto-approve:
|
11
|
+
runs-on: ubuntu-latest
|
12
|
+
steps:
|
13
|
+
- uses: hmarr/auto-approve-action@v2.0.0
|
14
|
+
if: github.actor == 'dependabot[bot]' || github.actor == 'dependabot-preview[bot]'
|
15
|
+
with:
|
16
|
+
github-token: "${{ secrets.GITHUB_TOKEN }}"
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
salesforce_streamer (1.2.
|
4
|
+
salesforce_streamer (1.2.2)
|
5
5
|
faye (= 0.8.9)
|
6
6
|
restforce (~> 4.2)
|
7
7
|
|
@@ -10,16 +10,17 @@ GEM
|
|
10
10
|
specs:
|
11
11
|
addressable (2.7.0)
|
12
12
|
public_suffix (>= 2.0.2, < 5.0)
|
13
|
-
ast (2.4.
|
13
|
+
ast (2.4.1)
|
14
14
|
byebug (11.1.3)
|
15
|
-
codecov (0.
|
15
|
+
codecov (0.2.0)
|
16
|
+
colorize
|
16
17
|
json
|
17
18
|
simplecov
|
18
|
-
|
19
|
+
colorize (0.8.1)
|
19
20
|
cookiejar (0.3.3)
|
20
|
-
diff-lcs (1.
|
21
|
+
diff-lcs (1.4.4)
|
21
22
|
docile (1.3.2)
|
22
|
-
em-http-request (1.1.
|
23
|
+
em-http-request (1.1.6)
|
23
24
|
addressable (>= 2.3.4)
|
24
25
|
cookiejar (!= 0.3.1)
|
25
26
|
em-socksify (>= 0.3)
|
@@ -39,22 +40,22 @@ GEM
|
|
39
40
|
faye-websocket (>= 0.4.0)
|
40
41
|
rack (>= 1.0.0)
|
41
42
|
yajl-ruby (>= 1.0.0)
|
42
|
-
faye-websocket (0.
|
43
|
+
faye-websocket (0.11.0)
|
43
44
|
eventmachine (>= 0.12.0)
|
44
45
|
websocket-driver (>= 0.5.1)
|
45
46
|
hashie (4.1.0)
|
46
47
|
http_parser.rb (0.6.0)
|
47
|
-
|
48
|
-
json (2.3.0)
|
48
|
+
json (2.3.1)
|
49
49
|
jwt (2.2.1)
|
50
50
|
multipart-post (2.1.1)
|
51
|
-
parallel (1.19.
|
52
|
-
parser (2.7.1.
|
53
|
-
ast (~> 2.4.
|
51
|
+
parallel (1.19.2)
|
52
|
+
parser (2.7.1.4)
|
53
|
+
ast (~> 2.4.1)
|
54
54
|
public_suffix (4.0.5)
|
55
|
-
rack (2.2.
|
55
|
+
rack (2.2.3)
|
56
56
|
rainbow (3.0.0)
|
57
57
|
rake (13.0.1)
|
58
|
+
regexp_parser (1.7.1)
|
58
59
|
restforce (4.2.2)
|
59
60
|
faraday (>= 0.9.0, <= 1.0)
|
60
61
|
faraday_middleware (>= 0.8.8, <= 1.0)
|
@@ -75,28 +76,30 @@ GEM
|
|
75
76
|
diff-lcs (>= 1.2.0, < 2.0)
|
76
77
|
rspec-support (~> 3.9.0)
|
77
78
|
rspec-support (3.9.3)
|
78
|
-
rubocop (0.
|
79
|
-
jaro_winkler (~> 1.5.1)
|
79
|
+
rubocop (0.88.0)
|
80
80
|
parallel (~> 1.10)
|
81
|
-
parser (>= 2.7.
|
81
|
+
parser (>= 2.7.1.1)
|
82
82
|
rainbow (>= 2.2.2, < 4.0)
|
83
|
+
regexp_parser (>= 1.7)
|
83
84
|
rexml
|
85
|
+
rubocop-ast (>= 0.1.0, < 1.0)
|
84
86
|
ruby-progressbar (~> 1.7)
|
85
87
|
unicode-display_width (>= 1.4.0, < 2.0)
|
86
|
-
rubocop-
|
87
|
-
|
88
|
-
rubocop-
|
89
|
-
rubocop (>= 0.
|
88
|
+
rubocop-ast (0.1.0)
|
89
|
+
parser (>= 2.7.0.1)
|
90
|
+
rubocop-performance (1.7.0)
|
91
|
+
rubocop (>= 0.82.0)
|
92
|
+
rubocop-rspec (1.42.0)
|
93
|
+
rubocop (>= 0.87.0)
|
90
94
|
ruby-progressbar (1.10.1)
|
91
95
|
simplecov (0.18.5)
|
92
96
|
docile (~> 1.1)
|
93
97
|
simplecov-html (~> 0.11)
|
94
98
|
simplecov-html (0.12.2)
|
95
99
|
unicode-display_width (1.7.0)
|
96
|
-
|
97
|
-
websocket-driver (0.7.1)
|
100
|
+
websocket-driver (0.7.3)
|
98
101
|
websocket-extensions (>= 0.1.0)
|
99
|
-
websocket-extensions (0.1.
|
102
|
+
websocket-extensions (0.1.5)
|
100
103
|
yajl-ruby (1.4.1)
|
101
104
|
|
102
105
|
PLATFORMS
|
@@ -9,7 +9,7 @@ module CoreExtensions
|
|
9
9
|
def self.extended(base)
|
10
10
|
base.class_eval do
|
11
11
|
def self.domains_match(tested_domain, base_domain)
|
12
|
-
return true if tested_domain[-15
|
12
|
+
return true if tested_domain[-15..].eql?('.salesforce.com')
|
13
13
|
|
14
14
|
# original implementation
|
15
15
|
base = effective_host base_domain
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: salesforce_streamer
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.2.
|
4
|
+
version: 1.2.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Scott Serok
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: exe
|
11
11
|
cert_chain: []
|
12
|
-
date: 2020-
|
12
|
+
date: 2020-08-03 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: faye
|
@@ -147,6 +147,11 @@ extensions: []
|
|
147
147
|
extra_rdoc_files: []
|
148
148
|
files:
|
149
149
|
- ".dependabot/config.yml"
|
150
|
+
- ".github/ISSUE_TEMPLATE/bug_report.md"
|
151
|
+
- ".github/ISSUE_TEMPLATE/config.yml"
|
152
|
+
- ".github/ISSUE_TEMPLATE/story.md"
|
153
|
+
- ".github/PULL_REQUEST_TEMPLATE.md"
|
154
|
+
- ".github/workflows/auto-approve.yml"
|
150
155
|
- ".gitignore"
|
151
156
|
- ".rspec"
|
152
157
|
- ".travis.yml"
|