avro-resolution_canonical_form 0.5.0 → 0.6.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: e736c50683d624c7b5485a6f88f5781615aea22d511f9dda2e2303f93f4b3da0
4
- data.tar.gz: 1ae5676258a29dbaa26161eca21fa7293284f6b882b9d9d0938b578ff7d8254a
3
+ metadata.gz: 53825f132917454e820d4110d0d4d27432838342e4a474037b1b754cb7a52bb6
4
+ data.tar.gz: 7350bd692e7e4bf457b680d889d83ccf9af64fc2a81022d75ffd071838c422ae
5
5
  SHA512:
6
- metadata.gz: c7b1c18ea72995dea01d6b294056208d927f311203b4c907b93c1f240e253ea99f2f849d6602881b354f863016bc24801ba23542fdb427b007f0d81400fcc49d
7
- data.tar.gz: bcc4207e111b01fbe560469b41069dc53f98747618ac4eca1572acd732a9268f51ba444788adee001649a8ef3a019108272c2d7f652bc9803a29b28dd4f0f60a
6
+ metadata.gz: 3f161a235a537eabc52a2f669f08e540f549cd6c15b13548ed4cfeb71e88f37a524374cbc9a6a3032356c65beb02b57289b900fe690b725c5d6a046921686e7b
7
+ data.tar.gz: 72189a46bad33eeed7427395d3172e77c45f5bc09b6b30e255745567c9b271fcd772c73a54c1e6cd74801060becab2caf523f23acaea8452000a5c8486d43116
data/.circleci/config.yml CHANGED
@@ -2,14 +2,14 @@ version: 2.1
2
2
  jobs:
3
3
  lint:
4
4
  docker:
5
- - image: salsify/ruby_ci:2.6.8
5
+ - image: salsify/ruby_ci:2.7.7
6
6
  working_directory: ~/avro-resolution_canonical_form
7
7
  steps:
8
8
  - checkout
9
9
  - restore_cache:
10
10
  keys:
11
- - v2-gems-ruby-2.6.8-{{ checksum "avro-resolution_canonical_form.gemspec" }}-{{ checksum "Gemfile" }}
12
- - v2-gems-ruby-2.6.8-
11
+ - v2-gems-ruby-2.7.7-{{ checksum "avro-resolution_canonical_form.gemspec" }}-{{ checksum "Gemfile" }}
12
+ - v2-gems-ruby-2.7.7-
13
13
  - run:
14
14
  name: Install Gems
15
15
  command: |
@@ -18,7 +18,7 @@ jobs:
18
18
  bundle clean
19
19
  fi
20
20
  - save_cache:
21
- key: v2-gems-ruby-2.6.8-{{ checksum "avro-resolution_canonical_form.gemspec" }}-{{ checksum "Gemfile" }}
21
+ key: v2-gems-ruby-2.7.7-{{ checksum "avro-resolution_canonical_form.gemspec" }}-{{ checksum "Gemfile" }}
22
22
  paths:
23
23
  - "vendor/bundle"
24
24
  - "gemfiles/vendor/bundle"
@@ -66,6 +66,7 @@ workflows:
66
66
  matrix:
67
67
  parameters:
68
68
  ruby-version:
69
- - "2.6.8"
70
- - "2.7.4"
71
- - "3.0.2"
69
+ - "2.7.7"
70
+ - "3.0.5"
71
+ - "3.1.3"
72
+ - "3.2.0"
@@ -0,0 +1 @@
1
+ * @jturkel @tjwp @salsify/infrastructure-services
data/.rubocop.yml CHANGED
@@ -2,7 +2,7 @@ inherit_gem:
2
2
  salsify_rubocop: conf/rubocop.yml
3
3
 
4
4
  AllCops:
5
- TargetRubyVersion: 2.6
5
+ TargetRubyVersion: 2.7
6
6
 
7
7
  Naming/FileName:
8
8
  Exclude:
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # avro-resolution_canonical_form
2
2
 
3
+ ## v0.6.0
4
+ - Add support for Ruby 3.2.
5
+ - Drop support for Ruby 2.6.
6
+
3
7
  ## v0.5.0
4
8
  - Require Avro v1.11.
5
9
 
@@ -19,6 +19,7 @@ Gem::Specification.new do |spec|
19
19
  # Set 'allowed_push_post' to control where this gem can be published.
20
20
  if spec.respond_to?(:metadata)
21
21
  spec.metadata['allowed_push_host'] = 'https://rubygems.org'
22
+ spec.metadata['rubygems_mfa_required'] = 'true'
22
23
  else
23
24
  raise 'RubyGems 2.0 or newer is required to protect against public gem pushes.'
24
25
  end
@@ -28,7 +29,7 @@ Gem::Specification.new do |spec|
28
29
  spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
29
30
  spec.require_paths = ['lib']
30
31
 
31
- spec.required_ruby_version = '>= 2.6'
32
+ spec.required_ruby_version = '>= 2.7'
32
33
 
33
34
  spec.add_development_dependency 'bundler', '~> 2.0'
34
35
  spec.add_development_dependency 'overcommit'
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module AvroResolutionCanonicalForm
4
- VERSION = '0.5.0'
4
+ VERSION = '0.6.0'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: avro-resolution_canonical_form
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0
4
+ version: 0.6.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Salsify, Inc
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-11-02 00:00:00.000000000 Z
11
+ date: 2023-01-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -132,6 +132,7 @@ extensions: []
132
132
  extra_rdoc_files: []
133
133
  files:
134
134
  - ".circleci/config.yml"
135
+ - ".github/CODEOWNERS"
135
136
  - ".gitignore"
136
137
  - ".overcommit.yml"
137
138
  - ".rspec"
@@ -153,6 +154,7 @@ licenses:
153
154
  - MIT
154
155
  metadata:
155
156
  allowed_push_host: https://rubygems.org
157
+ rubygems_mfa_required: 'true'
156
158
  post_install_message: |2
157
159
 
158
160
  avro-resolution_canonical_form now requires Avro v1.11.
@@ -170,15 +172,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
170
172
  requirements:
171
173
  - - ">="
172
174
  - !ruby/object:Gem::Version
173
- version: '2.6'
175
+ version: '2.7'
174
176
  required_rubygems_version: !ruby/object:Gem::Requirement
175
177
  requirements:
176
178
  - - ">="
177
179
  - !ruby/object:Gem::Version
178
180
  version: '0'
179
181
  requirements: []
180
- rubygems_version: 3.0.3
181
- signing_key:
182
+ rubygems_version: 3.3.7
183
+ signing_key:
182
184
  specification_version: 4
183
185
  summary: Unique identification of Avro schemas for schema resolution
184
186
  test_files: []