gtfs 4.4.1 → 4.4.2

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.
@@ -8,7 +8,7 @@ jobs:
8
8
 
9
9
  strategy:
10
10
  matrix:
11
- node-version: [16.x, 18.x, 20.x]
11
+ node-version: [18.x, 20.x]
12
12
 
13
13
  steps:
14
14
  - uses: actions/checkout@v3
package/CHANGELOG.md CHANGED
@@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [4.4.2] - 2023-07-08
9
+
10
+ ### Changed
11
+
12
+ - Added index to stoptimes table for stop_id field
13
+ - Updated node.js versions for tests
14
+
8
15
  ## [4.4.1] - 2023-07-07
9
16
 
10
17
  ### Changed
@@ -31,6 +31,7 @@ const model = {
31
31
  type: 'varchar(255)',
32
32
  required: true,
33
33
  prefix: true,
34
+ index: true,
34
35
  },
35
36
  {
36
37
  name: 'stop_sequence',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gtfs",
3
- "version": "4.4.1",
3
+ "version": "4.4.2",
4
4
  "description": "Import GTFS transit data into SQLite and query routes, stops, times, fares and more",
5
5
  "keywords": [
6
6
  "transit",
@@ -57,7 +57,8 @@
57
57
  "Matt Moran",
58
58
  "Daniel Sörlöv",
59
59
  "Ali Zarghami <alizarghami@gmail.com>",
60
- "David Abell"
60
+ "David Abell",
61
+ "Matthias Feist <matze@matf.de>"
61
62
  ],
62
63
  "type": "module",
63
64
  "main": "index.js",
@@ -108,7 +109,7 @@
108
109
  "should": "^13.2.3"
109
110
  },
110
111
  "engines": {
111
- "node": ">= 14.17.0"
112
+ "node": ">= 18.0.0"
112
113
  },
113
114
  "release-it": {
114
115
  "github": {