Skip to content

Commit

Permalink
HOTFIX Integrate Changes (#36)
Browse files Browse the repository at this point in the history
* build(deps): bump activesupport from 7.0.4.1 to 7.0.4.3 (#33)

* build(deps): bump activesupport from 7.0.4.1 to 7.0.4.3

Bumps [activesupport](https://github.com/rails/rails) from 7.0.4.1 to 7.0.4.3.
- [Release notes](https://github.com/rails/rails/releases)
- [Changelog](https://github.com/rails/rails/blob/v7.0.4.3/activesupport/CHANGELOG.md)
- [Commits](rails/rails@v7.0.4.1...v7.0.4.3)

---
updated-dependencies:
- dependency-name: activesupport
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>

* ci(github): 🐛 add permission to write a check to simplecov

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Viserion77 <jeferson.a.oficial@gmail.com>

* build(deps): bump nokogiri from 1.14.0 to 1.14.3 (#34)

Bumps [nokogiri](https://github.com/sparklemotion/nokogiri) from 1.14.0 to 1.14.3.
- [Release notes](https://github.com/sparklemotion/nokogiri/releases)
- [Changelog](https://github.com/sparklemotion/nokogiri/blob/main/CHANGELOG.md)
- [Commits](sparklemotion/nokogiri@v1.14.0...v1.14.3)

---
updated-dependencies:
- dependency-name: nokogiri
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* feat(client): 🐛 add http header (#35)

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
Viserion77 and dependabot[bot] authored Jun 14, 2023
1 parent b69a7c2 commit a6382a6
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/quality-inspector.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,15 @@ on:
branches: [ "develop" ]
pull_request:
branches: [ "develop" ]

jobs:
Rspec:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: ['3.0']
permissions:
checks: write

steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,5 @@

# rspec failure tracking
.rspec_status

nubank_sdk-*.gem
10 changes: 5 additions & 5 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ PATH
GEM
remote: https://rubygems.org/
specs:
activesupport (7.0.4.1)
activesupport (7.0.4.3)
concurrent-ruby (~> 1.0, >= 1.0.2)
i18n (>= 1.6, < 2)
minitest (>= 5.1)
tzinfo (~> 2.0)
ast (2.4.2)
backport (1.2.0)
benchmark (0.2.1)
concurrent-ruby (1.1.10)
concurrent-ruby (1.2.2)
diff-lcs (1.5.0)
docile (1.4.0)
e2mmap (0.1.0)
Expand All @@ -36,8 +36,8 @@ GEM
kramdown-parser-gfm (1.1.0)
kramdown (~> 2.0)
mini_portile2 (2.8.1)
minitest (5.17.0)
nokogiri (1.14.0)
minitest (5.18.0)
nokogiri (1.14.3)
mini_portile2 (~> 2.8.0)
racc (~> 1.4)
parallel (1.22.1)
Expand Down Expand Up @@ -105,7 +105,7 @@ GEM
yard (~> 0.9, >= 0.9.24)
thor (1.2.1)
tilt (2.0.11)
tzinfo (2.0.5)
tzinfo (2.0.6)
concurrent-ruby (~> 1.0)
unicode-display_width (2.3.0)
webrick (1.7.0)
Expand Down
1 change: 1 addition & 0 deletions lib/nubank_sdk/client.rb
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ def initialize(base_url, connection_adapter = nil)
def post(path, body)
@connection.post(path) do |req|
req.headers['Content-Type'] = 'application/json'
req.headers['X-Correlation-Id'] = 'WEB-APP.pewW9'
req.body = body.to_json
end
end
Expand Down

0 comments on commit a6382a6

Please sign in to comment.