Skip to content

Commit ab9ffad

Browse files
Merge pull request #354 from OneBusAway/release-please--branches--main--changes--next--components--onebusaway-sdk
release: 1.10.10
2 parents 0335ff3 + 288603b commit ab9ffad

12 files changed

Lines changed: 71 additions & 19 deletions

.devcontainer/devcontainer.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,7 @@
99
"postCreateCommand": "yarn install",
1010
"customizations": {
1111
"vscode": {
12-
"extensions": [
13-
"esbenp.prettier-vscode"
14-
]
12+
"extensions": ["esbenp.prettier-vscode"]
1513
}
1614
}
1715
}

.eslintcache

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,5 @@ dist
77
dist-deno
88
/*.tgz
99
.idea/
10+
.eslintcache
1011

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "1.10.9"
2+
".": "1.10.10"
33
}

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
# Changelog
22

3+
## 1.10.10 (2025-09-27)
4+
5+
Full Changelog: [v1.10.9...v1.10.10](https://github.com/OneBusAway/js-sdk/compare/v1.10.9...v1.10.10)
6+
7+
### Performance Improvements
8+
9+
* faster formatting ([bc7b2bd](https://github.com/OneBusAway/js-sdk/commit/bc7b2bd1abb7b99b91e83879dc2dc7a56eb976a5))
10+
11+
12+
### Chores
13+
14+
* **internal:** codegen related update ([fccbf3d](https://github.com/OneBusAway/js-sdk/commit/fccbf3d61bb36d708c68fd50df8056cbfd0f97c8))
15+
* **internal:** fix incremental formatting in some cases ([d68acbe](https://github.com/OneBusAway/js-sdk/commit/d68acbef0ad0670075f6c90497300a20a4411a80))
16+
* **internal:** ignore .eslintcache ([a7cb2f6](https://github.com/OneBusAway/js-sdk/commit/a7cb2f63178d8d0cddec08aa397bca6e31b9ebf5))
17+
* **internal:** remove deprecated `compilerOptions.baseUrl` from tsconfig.json ([26b9eb2](https://github.com/OneBusAway/js-sdk/commit/26b9eb2a666e7453f761563ec65d78dbe9a8c895))
18+
319
## 1.10.9 (2025-09-20)
420

521
Full Changelog: [v1.10.8...v1.10.9](https://github.com/OneBusAway/js-sdk/compare/v1.10.8...v1.10.9)

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "onebusaway-sdk",
3-
"version": "1.10.9",
3+
"version": "1.10.10",
44
"description": "The official TypeScript library for the Onebusaway SDK API",
55
"author": "Onebusaway SDK <info@onebusaway.org>",
66
"types": "dist/index.d.ts",

release-please-config.json

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,5 @@
6060
}
6161
],
6262
"release-type": "node",
63-
"extra-files": [
64-
"src/version.ts",
65-
"README.md"
66-
]
63+
"extra-files": ["src/version.ts", "README.md"]
6764
}

scripts/fast-format

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
#!/usr/bin/env bash
2+
3+
set -euo pipefail
4+
5+
echo "Script started with $# arguments"
6+
echo "Arguments: $*"
7+
echo "Script location: $(dirname "$0")"
8+
9+
cd "$(dirname "$0")/.."
10+
echo "Changed to directory: $(pwd)"
11+
12+
if [ $# -eq 0 ]; then
13+
echo "Usage: $0 <file-with-paths> [additional-formatter-args...]"
14+
echo "The file should contain one file path per line"
15+
exit 1
16+
fi
17+
18+
FILE_LIST="$1"
19+
20+
echo "Looking for file: $FILE_LIST"
21+
22+
if [ ! -f "$FILE_LIST" ]; then
23+
echo "Error: File '$FILE_LIST' not found"
24+
exit 1
25+
fi
26+
27+
echo "==> Running eslint --fix"
28+
ESLINT_FILES="$(grep '\.ts$' "$FILE_LIST" || true)"
29+
if ! [ -z "$ESLINT_FILES" ]; then
30+
echo "$ESLINT_FILES" | ESLINT_USE_FLAT_CONFIG="false" xargs ./node_modules/.bin/eslint --cache --fix
31+
fi
32+
33+
echo "==> Running prettier --write"
34+
# format things eslint didn't
35+
PRETTIER_FILES="$(grep '\.\(js\|json\)$' "$FILE_LIST" || true)"
36+
if ! [ -z "$PRETTIER_FILES" ]; then
37+
echo "$PRETTIER_FILES" | xargs ./node_modules/.bin/prettier \
38+
--write --cache --cache-strategy metadata --no-error-on-unmatched-pattern \
39+
'!**/dist' '!**/*.ts' '!**/*.mts' '!**/*.cts' '!**/*.js' '!**/*.mjs' '!**/*.cjs'
40+
fi

src/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const VERSION = '1.10.9'; // x-release-please-version
1+
export const VERSION = '1.10.10'; // x-release-please-version

0 commit comments

Comments
 (0)