gtfs 3.2.0 → 3.2.1

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.
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
+ ## [3.2.1] - 2021-11-26
9
+
10
+ ### Updated
11
+
12
+ - Updated sqlite3 dependency to use @vscode/sqlite3 for npm audit warning
13
+ - Downgraded dtslint to 3.4.2 for npm audit warning
14
+
8
15
  ## [3.2.0] - 2021-11-21
9
16
 
10
17
  ### Added
package/lib/db.js CHANGED
@@ -1,4 +1,4 @@
1
- import sqlite3 from 'sqlite3';
1
+ import sqlite3 from '@vscode/sqlite3';
2
2
  import { open } from 'sqlite';
3
3
  import { setDefaultConfig } from './utils.js';
4
4
  const dbs = {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gtfs",
3
- "version": "3.2.0",
3
+ "version": "3.2.1",
4
4
  "description": "Import GTFS transit data into SQLite and query routes, stops, times, fares and more",
5
5
  "keywords": [
6
6
  "transit",
@@ -70,7 +70,8 @@
70
70
  },
71
71
  "dependencies": {
72
72
  "@turf/helpers": "^6.5.0",
73
- "chalk": "^4.1.2",
73
+ "@vscode/sqlite3": "^5.0.7",
74
+ "chalk": "^5.0.0",
74
75
  "csv-parse": "^5.0.3",
75
76
  "csv-stringify": "^6.0.4",
76
77
  "lodash-es": "^4.17.21",
@@ -81,7 +82,6 @@
81
82
  "recursive-copy": "^2.0.13",
82
83
  "sanitize-filename": "^1.6.3",
83
84
  "sqlite": "^4.0.23",
84
- "sqlite3": "^5.0.2",
85
85
  "sqlstring-sqlite": "^0.1.1",
86
86
  "strip-bom-stream": "^5.0.0",
87
87
  "tmp-promise": "^3.0.3",
@@ -90,13 +90,13 @@
90
90
  "yargs": "^17.2.1"
91
91
  },
92
92
  "devDependencies": {
93
- "dtslint": "^4.2.0",
94
- "eslint": "^8.2.0",
93
+ "dtslint": "^4.2.1",
94
+ "eslint": "^8.3.0",
95
95
  "eslint-config-prettier": "^8.3.0",
96
96
  "eslint-config-xo": "^0.39.0",
97
97
  "husky": "^7.0.4",
98
98
  "mocha": "^9.1.3",
99
- "prettier": "^2.4.1",
99
+ "prettier": "^2.5.0",
100
100
  "pretty-quick": "^3.1.2",
101
101
  "should": "^13.2.3"
102
102
  },