minotor 8.0.0 → 9.0.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.
Files changed (50) hide show
  1. package/.github/workflows/minotor.yml +1 -1
  2. package/CHANGELOG.md +3 -8
  3. package/README.md +1 -1
  4. package/dist/cli.mjs +352 -256
  5. package/dist/cli.mjs.map +1 -1
  6. package/dist/gtfs/transfers.d.ts +21 -6
  7. package/dist/gtfs/trips.d.ts +2 -2
  8. package/dist/parser.cjs.js +296 -188
  9. package/dist/parser.cjs.js.map +1 -1
  10. package/dist/parser.esm.js +296 -188
  11. package/dist/parser.esm.js.map +1 -1
  12. package/dist/router.cjs.js +1 -1
  13. package/dist/router.cjs.js.map +1 -1
  14. package/dist/router.esm.js +1 -1
  15. package/dist/router.esm.js.map +1 -1
  16. package/dist/router.umd.js +1 -1
  17. package/dist/router.umd.js.map +1 -1
  18. package/dist/routing/router.d.ts +4 -4
  19. package/dist/timetable/io.d.ts +3 -3
  20. package/dist/timetable/proto/timetable.d.ts +6 -4
  21. package/dist/timetable/route.d.ts +13 -21
  22. package/dist/timetable/timetable.d.ts +13 -11
  23. package/dist/timetable/tripBoardingId.d.ts +34 -0
  24. package/package.json +1 -1
  25. package/src/__e2e__/timetable/timetable.bin +2 -2
  26. package/src/cli/repl.ts +53 -67
  27. package/src/gtfs/__tests__/parser.test.ts +19 -4
  28. package/src/gtfs/__tests__/transfers.test.ts +598 -318
  29. package/src/gtfs/__tests__/trips.test.ts +3 -44
  30. package/src/gtfs/parser.ts +26 -8
  31. package/src/gtfs/transfers.ts +151 -20
  32. package/src/gtfs/trips.ts +1 -39
  33. package/src/routing/__tests__/result.test.ts +10 -10
  34. package/src/routing/__tests__/router.test.ts +11 -9
  35. package/src/routing/result.ts +2 -2
  36. package/src/routing/router.ts +34 -22
  37. package/src/timetable/__tests__/io.test.ts +8 -7
  38. package/src/timetable/__tests__/route.test.ts +66 -80
  39. package/src/timetable/__tests__/timetable.test.ts +32 -29
  40. package/src/timetable/__tests__/tripBoardingId.test.ts +57 -0
  41. package/src/timetable/io.ts +21 -20
  42. package/src/timetable/proto/timetable.proto +6 -4
  43. package/src/timetable/proto/timetable.ts +84 -48
  44. package/src/timetable/route.ts +39 -56
  45. package/src/timetable/timetable.ts +37 -26
  46. package/src/timetable/tripBoardingId.ts +94 -0
  47. package/dist/timetable/tripId.d.ts +0 -15
  48. package/src/timetable/__tests__/tripId.test.ts +0 -27
  49. package/src/timetable/tripId.ts +0 -29
  50. /package/dist/timetable/__tests__/{tripId.test.d.ts → tripBoardingId.test.d.ts} +0 -0
@@ -33,7 +33,7 @@ jobs:
33
33
  - uses: actions/checkout@v3
34
34
  - uses: actions/setup-node@v3
35
35
  - name: 🛡️ Audit
36
- run: npm audit --audit-level=high
36
+ run: npm audit --audit-level=high --omit=dev
37
37
 
38
38
  spell:
39
39
  name: 🔠 Spellcheck
package/CHANGELOG.md CHANGED
@@ -1,11 +1,6 @@
1
- # [8.0.0](https://github.com/aubryio/minotor/compare/v7.0.2...v8.0.0) (2025-11-15)
1
+ ## [9.0.1](https://github.com/aubryio/minotor/compare/v9.0.0...v9.0.1) (2025-11-17)
2
2
 
3
3
 
4
- ### Features
4
+ ### Bug Fixes
5
5
 
6
- * support for trip-to-trip in-seat transfers ([#30](https://github.com/aubryio/minotor/issues/30)) ([dc61870](https://github.com/aubryio/minotor/commit/dc6187084c02c0e7211793c146e0dc47c1ace23e))
7
-
8
-
9
- ### BREAKING CHANGES
10
-
11
- * Timetable binary format was updated and is not compatible with the previous one.
6
+ * downgrade compiler target to be compatible with older browsers ([#53](https://github.com/aubryio/minotor/issues/53)) ([c4d054d](https://github.com/aubryio/minotor/commit/c4d054da4f0ffd1dad104d81ba678087c1787d78))
package/README.md CHANGED
@@ -197,4 +197,4 @@ Releases are automatically published to npm when merging to the `main` or `beta`
197
197
 
198
198
  ## Roadmap and requests
199
199
 
200
- The project is under active development, use github issues for reporting bugs and requesting features (make sure to not create duplicates and follow the templates). For custom development, consulting, integrations, or other special requests, feel free to contact [the author](https://aubry.io/).
200
+ The project is under active development, use github issues for reporting bugs and requesting features. For custom development, consulting, integrations, or other special requests, feel free to contact [the author](https://aubry.io/).