airports 1.13.0 → 1.14.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6ead13a6011ca1ffece1d3a1db537ccad6513ee2ec8c84447a9d299fc325f2a3
4
- data.tar.gz: bd09d34f8c19155701838473c4778019cdbaccbf9e7aa31cfdc1dd79f0334bf8
3
+ metadata.gz: 1af36a5f48ec2356dd8a48c12396e3f88a1a05076fcf8eaef39892c3cf182bc5
4
+ data.tar.gz: 47371503a45d7e0db0db255e4dea81b956bcd2be0d19d7308984faeb07355341
5
5
  SHA512:
6
- metadata.gz: a241b3ef68e785df2b230df03b34cc6a051e06fd5f7e6c9a1b6eccf95ea5975e746109deab6b24d18d63b72c5eb98dbd1589c76e856815d8e8a4241e375b3f2b
7
- data.tar.gz: c72db4366a6de4971bc3e3486f1b17573a2669e9edbc86c60d5d60d6b2439aa8e100f620fd52dc8d2556b9b3264b942cdaab1a8352aa93c6cb6279d9a9f011cb
6
+ metadata.gz: c8ed9c0bffec2950104f4539a9c7e1449a7d9a7f17d9acb0782e6e17b3693295f6ab9ab0ab7a252b67ba6657797a342a11df05fd1ec81b0be4b85fc46e89aac4
7
+ data.tar.gz: 55e7183fe4e1359967e962ac04704116e10dacf0a255f78aa92549fb3ecb4f82915dddf805c293cc1ff73e3c8aab8f18afc261b23de97b62dba979998c3db7b3
@@ -38,7 +38,7 @@ jobs:
38
38
 
39
39
  steps:
40
40
  - name: Checkout repository
41
- uses: actions/checkout@v6
41
+ uses: actions/checkout@v7
42
42
 
43
43
  # Initializes the CodeQL tools for scanning.
44
44
  - name: Initialize CodeQL
@@ -9,10 +9,10 @@ jobs:
9
9
  runs-on: ubuntu-latest
10
10
  strategy:
11
11
  matrix:
12
- ruby-version: ["2.6", "2.7", "3.0", "3.1", "3.2", "3.3", "3.4"]
12
+ ruby-version: ["2.6", "2.7", "3.0", "3.1", "3.2", "3.3", "3.4", "4.0"]
13
13
  steps:
14
14
  - name: Checkout code
15
- uses: actions/checkout@v6
15
+ uses: actions/checkout@v7
16
16
  - name: Setup Ruby ${{ matrix.ruby_version }}
17
17
  uses: ruby/setup-ruby@v1
18
18
  with:
data/.tool-versions CHANGED
@@ -1 +1 @@
1
- ruby 3.3.6
1
+ ruby 4.0.2
data/CHANGELOG.md CHANGED
@@ -1,3 +1,21 @@
1
+ ## v1.14.0 (17 August, 2026)
2
+
3
+ - Add DJT/KDJT airport code mapping for renamed Palm Beach airport (@Copilot)
4
+ - Update rubocop requirement from ~> 1.88.0 to ~> 1.89.0 (@dependabot)
5
+
6
+ ## v1.13.0 (2 April, 2026)
7
+
8
+ - Fix name for `PBH` from Thimphu to Paro (@Copilot)
9
+ - Update rubocop requirement from ~> 1.78.0 to ~> 1.84.2 (@dependabot)
10
+ - Update pry requirement from ~> 0.15.0 to ~> 0.16.0 (@dependabot)
11
+ - Bump actions/checkout from 4 to 6 (@dependabot)
12
+ - Bump github/codeql-action from 3 to 4 (@dependabot)
13
+
14
+ ## v1.12.0 (21 July, 2025)
15
+
16
+ - Add NLU (Felipe Ángeles International Airport) (@iRonin)
17
+ - Add TFU (Chengdu Tianfu International Airport) (@iRonin)
18
+
1
19
  ## v1.11.0 (24 March, 2025)
2
20
 
3
21
  - Add Monmouth Executive Airport (BLM) (@FinnLawrence)
data/Gemfile CHANGED
@@ -4,11 +4,11 @@ source 'https://rubygems.org'
4
4
 
5
5
  gemspec
6
6
 
7
- gem "gc_ruboconfig", "~> 5.0.2"
7
+ gem "gc_ruboconfig", "~> 6.0.0"
8
8
  gem "pry", "~> 0.16.0"
9
9
  gem "rake", "~> 13.0"
10
10
  gem "rspec", "~> 3.13.0"
11
11
  gem "rspec-its", "~> 2.0.0"
12
12
  gem "rspec_junit_formatter", "~> 0.6.0"
13
- gem "rubocop", "~> 1.84.2"
13
+ gem "rubocop", "~> 1.89.0"
14
14
  gem "rubocop-rake", "~> 0.7.1", require: false
data/Rakefile CHANGED
@@ -46,7 +46,7 @@ task :update do
46
46
  }
47
47
  end
48
48
 
49
- File.open("data/airports.json", "w").puts JSON.generate(cleaned_data)
49
+ File.open("data/airports.json", "w") { |f| f.puts JSON.generate(cleaned_data) }
50
50
  end
51
51
 
52
52
  task default: :spec