Skip to content

Commit a435d28

Browse files
committed
Merge branch 'release/0.3.2'
2 parents f65280c + 9d01896 commit a435d28

File tree

3 files changed

+30
-27
lines changed

3 files changed

+30
-27
lines changed

.ruby-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.4.2
1+
3.4.3

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ruby:3.4.2-alpine AS builder
1+
FROM ruby:3.4.3-alpine AS builder
22
RUN apk add --no-cache build-base
33

44
WORKDIR /tibber-collector
@@ -8,7 +8,7 @@ RUN bundle config --local frozen 1 && \
88
bundle install -j4 --retry 3 && \
99
bundle clean --force
1010

11-
FROM ruby:3.4.2-alpine
11+
FROM ruby:3.4.3-alpine
1212
LABEL maintainer="georg@ledermann.dev"
1313

1414
# Add tzdata to get correct timezone

Gemfile.lock

Lines changed: 27 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
GEM
22
remote: https://rubygems.org/
33
specs:
4-
activesupport (8.0.1)
4+
activesupport (8.0.2)
55
base64
66
benchmark (>= 0.3)
77
bigdecimal
@@ -16,22 +16,22 @@ GEM
1616
uri (>= 0.13.1)
1717
addressable (2.8.7)
1818
public_suffix (>= 2.0.2, < 7.0)
19-
ast (2.4.2)
19+
ast (2.4.3)
2020
base64 (0.2.0)
2121
benchmark (0.4.0)
2222
bigdecimal (3.1.9)
2323
climate_control (1.2.0)
2424
concurrent-ruby (1.3.5)
25-
connection_pool (2.5.0)
25+
connection_pool (2.5.1)
2626
crack (1.0.0)
2727
bigdecimal
2828
rexml
29-
csv (3.3.2)
29+
csv (3.3.4)
3030
docile (1.4.1)
31-
dotenv (3.1.7)
31+
dotenv (3.1.8)
3232
drb (2.2.1)
33-
fiber-storage (1.0.0)
34-
graphql (2.4.11)
33+
fiber-storage (1.0.1)
34+
graphql (2.5.4)
3535
base64
3636
fiber-storage
3737
logger
@@ -43,45 +43,48 @@ GEM
4343
concurrent-ruby (~> 1.0)
4444
influxdb-client (3.2.0)
4545
csv
46-
json (2.10.1)
46+
json (2.10.2)
4747
language_server-protocol (3.17.0.4)
4848
lint_roller (1.1.0)
49-
logger (1.6.6)
50-
minitest (5.25.4)
49+
logger (1.7.0)
50+
minitest (5.25.5)
5151
minitest-silence (0.2.4)
5252
minitest (~> 5.12)
53-
parallel (1.26.3)
54-
parser (3.3.7.1)
53+
parallel (1.27.0)
54+
parser (3.3.8.0)
5555
ast (~> 2.4.1)
5656
racc
57+
prism (1.4.0)
5758
public_suffix (6.0.1)
5859
racc (1.8.1)
5960
rainbow (3.1.1)
6061
rake (13.2.1)
6162
regexp_parser (2.10.0)
6263
rexml (3.4.1)
63-
rubocop (1.73.2)
64+
rubocop (1.75.2)
6465
json (~> 2.3)
6566
language_server-protocol (~> 3.17.0.2)
6667
lint_roller (~> 1.1.0)
6768
parallel (~> 1.10)
6869
parser (>= 3.3.0.2)
6970
rainbow (>= 2.2.2, < 4.0)
7071
regexp_parser (>= 2.9.3, < 3.0)
71-
rubocop-ast (>= 1.38.0, < 2.0)
72+
rubocop-ast (>= 1.44.0, < 2.0)
7273
ruby-progressbar (~> 1.7)
7374
unicode-display_width (>= 2.4.0, < 4.0)
74-
rubocop-ast (1.38.1)
75-
parser (>= 3.3.1.0)
76-
rubocop-graphql (1.5.4)
77-
rubocop (>= 1.50, < 2)
78-
rubocop-minitest (0.37.1)
75+
rubocop-ast (1.44.1)
76+
parser (>= 3.3.7.2)
77+
prism (~> 1.4)
78+
rubocop-graphql (1.5.5)
79+
lint_roller (~> 1.1)
80+
rubocop (>= 1.72.1, < 2)
81+
rubocop-minitest (0.38.0)
7982
lint_roller (~> 1.1)
80-
rubocop (>= 1.72.1, < 2.0)
83+
rubocop (>= 1.75.0, < 2.0)
8184
rubocop-ast (>= 1.38.0, < 2.0)
82-
rubocop-performance (1.24.0)
85+
rubocop-performance (1.25.0)
8386
lint_roller (~> 1.1)
84-
rubocop (>= 1.72.1, < 2.0)
87+
rubocop (>= 1.75.0, < 2.0)
8588
rubocop-ast (>= 1.38.0, < 2.0)
8689
rubocop-rake (0.7.1)
8790
lint_roller (~> 1.1)
@@ -102,7 +105,7 @@ GEM
102105
uri (1.0.3)
103106
vcr (6.3.1)
104107
base64
105-
webmock (3.25.0)
108+
webmock (3.25.1)
106109
addressable (>= 2.8.0)
107110
crack (>= 0.3.2)
108111
hashdiff (>= 0.4.0, < 2.0.0)
@@ -130,4 +133,4 @@ DEPENDENCIES
130133
webmock
131134

132135
BUNDLED WITH
133-
2.6.5
136+
2.6.8

0 commit comments

Comments
 (0)