eve_online 0.43.0 → 0.44.0

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: 78796cd52c312fba97cbc11ccf2d0c83f17cdfc366fc54ffcd55ce79b1286de6
4
- data.tar.gz: cdc290ca3951773e4b94e93c18a2586a5abdd2aeb533e76193f1f4a8fe460513
3
+ metadata.gz: 3d4048b8d7c69dd7875291d88bb0534793ced1395fb043b065827fc736b2c63e
4
+ data.tar.gz: a6e81d1624cd13051f0679298784d5b4e8c50d95ea6c8da5493f6d749803a4b4
5
5
  SHA512:
6
- metadata.gz: 5466b4eeb5d5d147dc876bc9aac6ea46d06a7ee658e56a5a1d0c8fc91c30bf219f2f14fcc592d1e78dcbb1ed652d8bb34c1aec8615c69900993ac2ec5ca09bc8
7
- data.tar.gz: 4fa03e051b7633f439311c01cc5842dcd2a079f07fe5a61a4fe3afd2284e0dfd29b3319d2c072f8c423817254ec0ddab554a08118d5a7724ccec9b2c4f0b54fb
6
+ metadata.gz: 88ecaa6eb01fa3e538bd7bec3c730d29325fc72dec3370aad65591e405745594eb40e682aa8b619fe2c8a25ac6f23d3eb49bf05470daa98bb2f99a50ae957301
7
+ data.tar.gz: 6ce52081afd6e1212620f7ffff888fe1b82a659eed175186c6b2eb856529ad2c7f04d512427d4046bf4190679e2812d0a1f6d20f508278cec9563ea902395639
data/.fasterer.yml CHANGED
@@ -1,2 +1,5 @@
1
1
  speedups:
2
2
  fetch_with_argument_vs_block: false
3
+
4
+ exclude_paths:
5
+ - "vendor/**/*"
@@ -1,10 +1,18 @@
1
1
  version: 2
2
2
  updates:
3
- - package-ecosystem: bundler
4
- directory: "/"
5
- schedule:
6
- interval: daily
7
- open-pull-requests-limit: 99
8
- allow:
9
- - dependency-type: direct
10
- - dependency-type: indirect
3
+ - package-ecosystem: "bundler"
4
+ directory: "/"
5
+ schedule:
6
+ interval: "daily"
7
+ open-pull-requests-limit: 99
8
+ allow:
9
+ - dependency-type: "direct"
10
+ - dependency-type: "indirect"
11
+ assignees:
12
+ - "biow0lf"
13
+ - package-ecosystem: "github-actions"
14
+ directory: "/"
15
+ schedule:
16
+ interval: "daily"
17
+ assignees:
18
+ - "biow0lf"
@@ -1,4 +1,4 @@
1
- name: mdl
1
+ name: "Markdown Lint"
2
2
 
3
3
  on:
4
4
  push:
@@ -15,5 +15,5 @@ jobs:
15
15
  runs-on: ubuntu-latest
16
16
 
17
17
  steps:
18
- - uses: actions/checkout@v2
19
- - uses: actionshub/markdownlint@main
18
+ - uses: actions/checkout@v3
19
+ - uses: bewuethr/mdl-action@v1.1.2
@@ -16,21 +16,21 @@ jobs:
16
16
  strategy:
17
17
  fail-fast: false
18
18
  matrix:
19
- ruby:
20
- - 2.7
21
- - "3.0"
22
- - 3.1
23
- name: Ruby ${{ matrix.ruby }}
19
+ ruby: ["3.0", "3.1", "3.2", "head"]
20
+ activesupport: ["6.1", "7.0", "main"]
21
+ env:
22
+ BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/activesupport_${{ matrix.activesupport }}.gemfile
23
+
24
+ name: Ruby ${{ matrix.ruby }} and ActiveSupport ${{ matrix.activesupport }}
24
25
  steps:
25
- - uses: actions/checkout@v2
26
+ - uses: actions/checkout@v3
26
27
  - run: rm Gemfile.lock
27
28
  - run: rm .ruby-version
28
29
  - name: Set up Ruby
29
30
  uses: ruby/setup-ruby@v1
30
31
  with:
31
32
  ruby-version: ${{ matrix.ruby }}
32
- - run: bundle install --jobs 4 --retry 3
33
- - run: bundle exec appraisal install || true
34
- - run: bundle exec appraisal rake
33
+ bundler-cache: true
34
+ - run: bundle exec rspec
35
35
  - run: bundle exec standardrb
36
36
  - run: bundle exec fasterer
data/.gitignore CHANGED
@@ -8,5 +8,5 @@
8
8
  /tmp/
9
9
  /.idea/
10
10
  /.DS_Store
11
- /gemfiles/
11
+ /gemfiles/*.gemfile.lock
12
12
 
data/.rubocop.yml CHANGED
@@ -1,7 +1,7 @@
1
1
  AllCops:
2
2
  NewCops: enable
3
3
  SuggestExtensions: false
4
- TargetRubyVersion: 2.7
4
+ TargetRubyVersion: 3.0
5
5
 
6
6
  Style/WordArray:
7
7
  Enabled: true
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- 3.1.2
1
+ 3.2.2
data/.standard.yml CHANGED
@@ -1,4 +1,4 @@
1
- ruby_version: 2.7.6
1
+ ruby_version: 3.0.0
2
2
 
3
3
  ignore:
4
4
  - 'lib/eve_online/esi/base.rb':
data/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # Changelog
2
2
 
3
+ ## v0.44.0
4
+
5
+ * Update `faraday` to `>= 2.3.0`
6
+ * BREAKING: Always pass esi to middleware. To migrate, remove any esi passing.
7
+ * Ruby 3.2
8
+ * Bump activesupport requirements to 6.1 or later
9
+ * Remove etag support. Use `faraday-http-cache` instead.
10
+ * Remove `EveOnline::Exceptions::NotModified`
11
+ * Remove `EveOnline::ESI::Base#etag=`
12
+ * Remove `EveOnline::ESI::Base#etag`
13
+ * Remove `EveOnline::ESI::Base#not_modified?`
14
+ * Remove `EveOnline::ESI::Base#content`
15
+
3
16
  ## v0.43.0
4
17
 
5
18
  * Ruby 3.1.2
data/Gemfile.lock CHANGED
@@ -1,148 +1,135 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- eve_online (0.43.0)
5
- activesupport (>= 5.2.0)
6
- faraday
7
- faraday_middleware
4
+ eve_online (0.44.0)
5
+ activesupport (>= 6.1.0)
6
+ faraday (>= 2.3.0)
8
7
 
9
8
  GEM
10
9
  remote: https://rubygems.org/
11
10
  specs:
12
- activesupport (7.0.2.4)
11
+ activesupport (7.0.5)
13
12
  concurrent-ruby (~> 1.0, >= 1.0.2)
14
13
  i18n (>= 1.6, < 2)
15
14
  minitest (>= 5.1)
16
15
  tzinfo (~> 2.0)
17
- addressable (2.8.0)
18
- public_suffix (>= 2.0.2, < 5.0)
19
- appraisal (2.4.1)
20
- bundler
21
- rake
22
- thor (>= 0.14.0)
16
+ addressable (2.8.4)
17
+ public_suffix (>= 2.0.2, < 6.0)
23
18
  ast (2.4.2)
24
19
  awesome_print (1.9.2)
25
20
  coderay (1.1.3)
26
21
  colorize (0.8.1)
27
- concurrent-ruby (1.1.10)
22
+ concurrent-ruby (1.2.2)
28
23
  crack (0.4.5)
29
24
  rexml
30
25
  diff-lcs (1.5.0)
31
26
  docile (1.4.0)
32
- faraday (1.10.0)
33
- faraday-em_http (~> 1.0)
34
- faraday-em_synchrony (~> 1.0)
35
- faraday-excon (~> 1.1)
36
- faraday-httpclient (~> 1.0)
37
- faraday-multipart (~> 1.0)
38
- faraday-net_http (~> 1.0)
39
- faraday-net_http_persistent (~> 1.0)
40
- faraday-patron (~> 1.0)
41
- faraday-rack (~> 1.0)
42
- faraday-retry (~> 1.0)
27
+ faraday (2.7.6)
28
+ faraday-net_http (>= 2.0, < 3.1)
43
29
  ruby2_keywords (>= 0.0.4)
44
- faraday-em_http (1.0.0)
45
- faraday-em_synchrony (1.0.0)
46
- faraday-excon (1.1.0)
47
- faraday-httpclient (1.0.1)
48
- faraday-multipart (1.0.3)
49
- multipart-post (>= 1.2, < 3)
50
- faraday-net_http (1.0.1)
51
- faraday-net_http_persistent (1.2.0)
52
- faraday-patron (1.0.0)
53
- faraday-rack (1.0.0)
54
- faraday-retry (1.0.3)
55
- faraday_middleware (1.2.0)
56
- faraday (~> 1.0)
57
- fasterer (0.10.0)
30
+ faraday-net_http (3.0.2)
31
+ fasterer (0.10.1)
58
32
  colorize (~> 0.7)
59
33
  ruby_parser (>= 3.19.1)
60
34
  hashdiff (1.0.1)
61
- i18n (1.10.0)
35
+ i18n (1.14.1)
62
36
  concurrent-ruby (~> 1.0)
37
+ json (2.6.3)
38
+ language_server-protocol (3.17.0.3)
39
+ lint_roller (1.0.0)
63
40
  method_source (1.0.0)
64
- mini_portile2 (2.8.0)
65
- minitest (5.15.0)
66
- multipart-post (2.1.1)
67
- nokogiri (1.13.4)
68
- mini_portile2 (~> 2.8.0)
41
+ mini_portile2 (2.8.2)
42
+ minitest (5.18.1)
43
+ nokogiri (1.15.2)
44
+ mini_portile2 (~> 2.8.2)
69
45
  racc (~> 1.4)
70
- nokogiri (1.13.4-x86_64-darwin)
46
+ nokogiri (1.15.2-arm64-darwin)
71
47
  racc (~> 1.4)
72
- parallel (1.22.1)
73
- parser (3.1.2.0)
48
+ nokogiri (1.15.2-x86_64-darwin)
49
+ racc (~> 1.4)
50
+ parallel (1.23.0)
51
+ parser (3.2.2.3)
74
52
  ast (~> 2.4.1)
75
- pry (0.14.1)
53
+ racc
54
+ pry (0.14.2)
76
55
  coderay (~> 1.1)
77
56
  method_source (~> 1.0)
78
- public_suffix (4.0.7)
79
- racc (1.6.0)
57
+ public_suffix (5.0.1)
58
+ racc (1.7.1)
80
59
  rainbow (3.1.1)
81
60
  rake (13.0.6)
82
- regexp_parser (2.3.1)
61
+ regexp_parser (2.8.1)
83
62
  rexml (3.2.5)
84
- rspec (3.11.0)
85
- rspec-core (~> 3.11.0)
86
- rspec-expectations (~> 3.11.0)
87
- rspec-mocks (~> 3.11.0)
88
- rspec-core (3.11.0)
89
- rspec-support (~> 3.11.0)
90
- rspec-expectations (3.11.0)
63
+ rspec (3.12.0)
64
+ rspec-core (~> 3.12.0)
65
+ rspec-expectations (~> 3.12.0)
66
+ rspec-mocks (~> 3.12.0)
67
+ rspec-core (3.12.2)
68
+ rspec-support (~> 3.12.0)
69
+ rspec-expectations (3.12.3)
91
70
  diff-lcs (>= 1.2.0, < 2.0)
92
- rspec-support (~> 3.11.0)
71
+ rspec-support (~> 3.12.0)
93
72
  rspec-its (1.3.0)
94
73
  rspec-core (>= 3.0.0)
95
74
  rspec-expectations (>= 3.0.0)
96
- rspec-mocks (3.11.1)
75
+ rspec-mocks (3.12.5)
97
76
  diff-lcs (>= 1.2.0, < 2.0)
98
- rspec-support (~> 3.11.0)
99
- rspec-support (3.11.0)
100
- rubocop (1.28.2)
77
+ rspec-support (~> 3.12.0)
78
+ rspec-support (3.12.0)
79
+ rubocop (1.52.1)
80
+ json (~> 2.3)
101
81
  parallel (~> 1.10)
102
- parser (>= 3.1.0.0)
82
+ parser (>= 3.2.2.3)
103
83
  rainbow (>= 2.2.2, < 4.0)
104
84
  regexp_parser (>= 1.8, < 3.0)
105
- rexml
106
- rubocop-ast (>= 1.17.0, < 2.0)
85
+ rexml (>= 3.2.5, < 4.0)
86
+ rubocop-ast (>= 1.28.0, < 2.0)
107
87
  ruby-progressbar (~> 1.7)
108
- unicode-display_width (>= 1.4.0, < 3.0)
109
- rubocop-ast (1.17.0)
110
- parser (>= 3.1.1.0)
111
- rubocop-performance (1.13.3)
88
+ unicode-display_width (>= 2.4.0, < 3.0)
89
+ rubocop-ast (1.29.0)
90
+ parser (>= 3.2.1.0)
91
+ rubocop-performance (1.18.0)
112
92
  rubocop (>= 1.7.0, < 2.0)
113
93
  rubocop-ast (>= 0.4.0)
114
- ruby-progressbar (1.11.0)
94
+ ruby-progressbar (1.13.0)
115
95
  ruby2_keywords (0.0.5)
116
- ruby_parser (3.19.1)
96
+ ruby_parser (3.20.2)
117
97
  sexp_processor (~> 4.16)
118
- sexp_processor (4.16.1)
119
- simplecov (0.21.2)
98
+ sexp_processor (4.17.0)
99
+ simplecov (0.22.0)
120
100
  docile (~> 1.1)
121
101
  simplecov-html (~> 0.11)
122
102
  simplecov_json_formatter (~> 0.1)
123
103
  simplecov-html (0.12.3)
124
104
  simplecov_json_formatter (0.1.4)
125
- standard (1.11.0)
126
- rubocop (= 1.28.2)
127
- rubocop-performance (= 1.13.3)
128
- thor (1.2.1)
129
- tzinfo (2.0.4)
105
+ standard (1.29.0)
106
+ language_server-protocol (~> 3.17.0.2)
107
+ lint_roller (~> 1.0)
108
+ rubocop (~> 1.52.0)
109
+ standard-custom (~> 1.0.0)
110
+ standard-performance (~> 1.1.0)
111
+ standard-custom (1.0.1)
112
+ lint_roller (~> 1.0)
113
+ standard-performance (1.1.0)
114
+ lint_roller (~> 1.0)
115
+ rubocop-performance (~> 1.18.0)
116
+ tzinfo (2.0.6)
130
117
  concurrent-ruby (~> 1.0)
131
- unicode-display_width (2.1.0)
118
+ unicode-display_width (2.4.2)
132
119
  vcr (6.1.0)
133
- webmock (3.14.0)
120
+ webmock (3.18.1)
134
121
  addressable (>= 2.8.0)
135
122
  crack (>= 0.3.2)
136
123
  hashdiff (>= 0.4.0, < 2.0.0)
137
124
 
138
125
  PLATFORMS
126
+ arm64-darwin-21
139
127
  ruby
140
128
  x86_64-darwin-19
141
129
  x86_64-darwin-20
142
130
  x86_64-darwin-21
143
131
 
144
132
  DEPENDENCIES
145
- appraisal
146
133
  awesome_print
147
134
  bundler
148
135
  eve_online!
@@ -158,4 +145,4 @@ DEPENDENCIES
158
145
  webmock
159
146
 
160
147
  BUNDLED WITH
161
- 2.3.12
148
+ 2.4.14
data/LICENSE.txt CHANGED
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2015-2022 Igor Zubkov
3
+ Copyright (c) 2015-2023 Igor Zubkov
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal