athens 0.4.0 → 0.4.2

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: cb4922b50ef935d722a54d54d4f3d9a9e47b587b67592454b806bf11e00f7be1
4
- data.tar.gz: 2fc14349880958e3212444e8285a0005c76f9e1bcb219ac8423cb1f1cdacfb57
3
+ metadata.gz: 34f9d8fcd1a27e93db0308c97482447d599e00772bb5f8eca6432b5aabcf723f
4
+ data.tar.gz: c963847d857b3bc7d7354116cc44ef822d4ebb2b762aa4bed9c5692699715e44
5
5
  SHA512:
6
- metadata.gz: 6c8dc6d78814f5b947d08434b8f2ccf13998439fca59465495401cc9e73f7e7e30efe3899679d545fe17184704b81fab33ddf5ffc5d2eb833e6ea2ef67dc6f2e
7
- data.tar.gz: 4e7d3d6f0cd1bdd5da7644c16b8802bc810d8f15f12e05fcd746acb743d48fe5c0ff740928ae117047aa2d6c2417daf33b86cab630cfbe0f42e87650c58e7909
6
+ metadata.gz: d8c8a70a8189bac46c5d086ea60991f04585ee1ecb3e6d33003494ee8f3e9f1f27f759e03d589d97ce636752e5bd9c75bd5185a38e08d937d83e04a79e1c67e9
7
+ data.tar.gz: a26a2d7832d12254da52beaf7ac6695d445e7e31822339461d23eed0c796aecd85994a3f516de990bfd52221f2f4dc5fb57c7103e88a682dad438925fa8d670e
data/CHANGELOG.md CHANGED
@@ -1,3 +1,11 @@
1
+ ## 0.4.2 / 2024-03-04
2
+
3
+ * Not locking `aws-sdk-core` gem version because `aws-sdk-athena` already requires it
4
+
5
+ ## 0.4.1 / 2022-06-16
6
+
7
+ * Specifying minimum version of `aws-sdk-core` gem for `jmespath` security issue
8
+
1
9
  ## 0.4.0 / 2021-12-03
2
10
 
3
11
  * Added automatic parsing of JSON columns (thanks [darkside](https://github.com/darkside))
data/Gemfile.lock CHANGED
@@ -1,29 +1,29 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- athens (0.4.0)
4
+ athens (0.4.2)
5
5
  aws-sdk-athena (~> 1)
6
6
  multi_json (~> 1.0)
7
7
 
8
8
  GEM
9
9
  remote: https://rubygems.org/
10
10
  specs:
11
- aws-eventstream (1.2.0)
12
- aws-partitions (1.539.0)
13
- aws-sdk-athena (1.44.0)
14
- aws-sdk-core (~> 3, >= 3.122.0)
11
+ aws-eventstream (1.3.0)
12
+ aws-partitions (1.895.0)
13
+ aws-sdk-athena (1.81.0)
14
+ aws-sdk-core (~> 3, >= 3.191.0)
15
15
  aws-sigv4 (~> 1.1)
16
- aws-sdk-core (3.124.0)
16
+ aws-sdk-core (3.191.3)
17
+ aws-eventstream (~> 1, >= 1.3.0)
18
+ aws-partitions (~> 1, >= 1.651.0)
19
+ aws-sigv4 (~> 1.8)
20
+ jmespath (~> 1, >= 1.6.1)
21
+ aws-sigv4 (1.8.0)
17
22
  aws-eventstream (~> 1, >= 1.0.2)
18
- aws-partitions (~> 1, >= 1.525.0)
19
- aws-sigv4 (~> 1.1)
20
- jmespath (~> 1.0)
21
- aws-sigv4 (1.4.0)
22
- aws-eventstream (~> 1, >= 1.0.2)
23
- jmespath (1.4.0)
23
+ jmespath (1.6.2)
24
24
  multi_json (1.15.0)
25
- rake (13.0.6)
26
- rexml (3.2.5)
25
+ rake (13.1.0)
26
+ rexml (3.2.6)
27
27
 
28
28
  PLATFORMS
29
29
  ruby
data/README.md CHANGED
@@ -170,6 +170,12 @@ After checking out the repo, run `bin/setup` to install dependencies. You can al
170
170
 
171
171
  If you want you can use Vagrant instead, there's already a `Vagrantfile` so a simple `vagrant up` should get you setup.
172
172
 
173
+ If you want to use Docker, grab a ruby image and boot into the console. Then install git and bash and you can run the `bin/setup` script from there:
174
+
175
+ ```
176
+ docker run --rm -it -v $(pwd):/app -w /app ruby:2.7-alpine /bin/sh -c 'apk add bash git;/bin/bash'
177
+ ```
178
+
173
179
  To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
174
180
 
175
181
  ## Contributing
data/bin/setup CHANGED
@@ -3,6 +3,7 @@ set -euo pipefail
3
3
  IFS=$'\n\t'
4
4
  set -vx
5
5
 
6
+ gem install bundler:`tail -1 Gemfile.lock | xargs`
6
7
  bundle install
7
8
 
8
9
  # Do any other automated setup that you need to do here
@@ -1,3 +1,3 @@
1
1
  module Athens
2
- VERSION = "0.4.0"
2
+ VERSION = "0.4.2"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: athens
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.4.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chris Schulte
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-12-03 00:00:00.000000000 Z
11
+ date: 2024-03-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-athena
@@ -127,7 +127,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
127
127
  - !ruby/object:Gem::Version
128
128
  version: '0'
129
129
  requirements: []
130
- rubygems_version: 3.0.9
130
+ rubygems_version: 3.5.4
131
131
  signing_key:
132
132
  specification_version: 4
133
133
  summary: Run simple SQL queries in AWS Athena