airports 1.12.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 +4 -4
- data/.github/workflows/codeql-analysis.yml +4 -4
- data/.github/workflows/test_and_lint.yml +2 -2
- data/.gitignore +1 -0
- data/.tool-versions +1 -1
- data/CHANGELOG.md +18 -0
- data/Gemfile +3 -3
- data/README.md +1 -1
- data/Rakefile +1 -1
- data/data/airports.json +1 -1
- data/data/patches.dat +2 -0
- data/lib/airports/version.rb +1 -1
- metadata +3 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1af36a5f48ec2356dd8a48c12396e3f88a1a05076fcf8eaef39892c3cf182bc5
|
|
4
|
+
data.tar.gz: 47371503a45d7e0db0db255e4dea81b956bcd2be0d19d7308984faeb07355341
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c8ed9c0bffec2950104f4539a9c7e1449a7d9a7f17d9acb0782e6e17b3693295f6ab9ab0ab7a252b67ba6657797a342a11df05fd1ec81b0be4b85fc46e89aac4
|
|
7
|
+
data.tar.gz: 55e7183fe4e1359967e962ac04704116e10dacf0a255f78aa92549fb3ecb4f82915dddf805c293cc1ff73e3c8aab8f18afc261b23de97b62dba979998c3db7b3
|
|
@@ -38,11 +38,11 @@ jobs:
|
|
|
38
38
|
|
|
39
39
|
steps:
|
|
40
40
|
- name: Checkout repository
|
|
41
|
-
uses: actions/checkout@
|
|
41
|
+
uses: actions/checkout@v7
|
|
42
42
|
|
|
43
43
|
# Initializes the CodeQL tools for scanning.
|
|
44
44
|
- name: Initialize CodeQL
|
|
45
|
-
uses: github/codeql-action/init@
|
|
45
|
+
uses: github/codeql-action/init@v4
|
|
46
46
|
with:
|
|
47
47
|
languages: ${{ matrix.language }}
|
|
48
48
|
# If you wish to specify custom queries, you can do so here or in a config file.
|
|
@@ -56,7 +56,7 @@ jobs:
|
|
|
56
56
|
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
|
|
57
57
|
# If this step fails, then you should remove it and run the build manually (see below)
|
|
58
58
|
- name: Autobuild
|
|
59
|
-
uses: github/codeql-action/autobuild@
|
|
59
|
+
uses: github/codeql-action/autobuild@v4
|
|
60
60
|
|
|
61
61
|
# ℹ️ Command-line programs to run using the OS shell.
|
|
62
62
|
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
|
|
@@ -69,4 +69,4 @@ jobs:
|
|
|
69
69
|
# ./location_of_script_within_repo/buildscript.sh
|
|
70
70
|
|
|
71
71
|
- name: Perform CodeQL Analysis
|
|
72
|
-
uses: github/codeql-action/analyze@
|
|
72
|
+
uses: github/codeql-action/analyze@v4
|
|
@@ -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@
|
|
15
|
+
uses: actions/checkout@v7
|
|
16
16
|
- name: Setup Ruby ${{ matrix.ruby_version }}
|
|
17
17
|
uses: ruby/setup-ruby@v1
|
|
18
18
|
with:
|
data/.gitignore
CHANGED
data/.tool-versions
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
ruby
|
|
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", "~>
|
|
8
|
-
gem "pry", "~> 0.
|
|
7
|
+
gem "gc_ruboconfig", "~> 6.0.0"
|
|
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.
|
|
13
|
+
gem "rubocop", "~> 1.89.0"
|
|
14
14
|
gem "rubocop-rake", "~> 0.7.1", require: false
|
data/README.md
CHANGED
|
@@ -11,7 +11,7 @@ It's based on data from [OpenFlights](http://openflights.org), with a bit of mas
|
|
|
11
11
|
Install the gem by adding it to your Gemfile:
|
|
12
12
|
|
|
13
13
|
```ruby
|
|
14
|
-
gem "airports", "~> 1.
|
|
14
|
+
gem "airports", "~> 1.13.0"
|
|
15
15
|
```
|
|
16
16
|
|
|
17
17
|
You can then look up an airport by its IATA code (e.g. `LHR` for London Heathrow) using `Airports.find_by_iata_code`, which returns an object with a bunch of accessors like `name` and `city`:
|