Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
caea803
chore(internal): make `test_proxy_environment_variables` more resilie…
stainless-app[bot] Feb 25, 2026
39d55bd
codegen metadata
stainless-app[bot] Feb 25, 2026
d58e1b8
chore(internal): codegen related update
stainless-app[bot] Mar 3, 2026
19677f4
refactor(types): use `extra_items` from PEP 728
stainless-app[bot] Mar 6, 2026
3ad7bbb
chore(test): do not count install time for mock server timeout
stainless-app[bot] Mar 6, 2026
907041a
chore(ci): skip uploading artifacts on stainless-internal branches
stainless-app[bot] Mar 7, 2026
d31637b
fix(pydantic): do not pass `by_alias` unless set
stainless-app[bot] Mar 17, 2026
b7baa1e
fix(deps): bump minimum typing-extensions version
stainless-app[bot] Mar 17, 2026
4e152dc
chore(internal): tweak CI branches
stainless-app[bot] Mar 17, 2026
bc0d6b6
fix: sanitize endpoint path params
stainless-app[bot] Mar 20, 2026
d2618bd
refactor(tests): switch from prism to steady
stainless-app[bot] Mar 20, 2026
775fe46
chore(tests): bump steady to v0.19.4
stainless-app[bot] Mar 21, 2026
9ef3615
chore(tests): bump steady to v0.19.5
stainless-app[bot] Mar 21, 2026
5a510e6
chore(internal): update gitignore
stainless-app[bot] Mar 24, 2026
33d721e
chore(tests): bump steady to v0.19.6
stainless-app[bot] Mar 24, 2026
3343492
chore(ci): skip lint on metadata-only changes
stainless-app[bot] Mar 25, 2026
3d09621
chore(tests): bump steady to v0.19.7
stainless-app[bot] Mar 25, 2026
e8555c7
feat(internal): implement indices array format for query and form ser…
stainless-app[bot] Mar 27, 2026
649317d
chore(tests): bump steady to v0.20.1
stainless-app[bot] Apr 1, 2026
2c51cba
chore(tests): bump steady to v0.20.2
stainless-app[bot] Apr 1, 2026
75acb50
fix(client): preserve hardcoded query params when merging with user p…
stainless-app[bot] Apr 8, 2026
16c4a95
fix: ensure file data are only sent as 1 parameter
stainless-app[bot] Apr 11, 2026
9e8bba9
perf(client): optimize file structure copying in multipart requests
stainless-app[bot] Apr 18, 2026
0a6f60a
chore(tests): bump steady to v0.22.1
stainless-app[bot] Apr 18, 2026
d8c02a2
feat(api): api update
stainless-app[bot] Apr 22, 2026
2543d0b
chore(internal): more robust bootstrap script
stainless-app[bot] Apr 23, 2026
c76b368
chore(internal): codegen related update
stainless-app[bot] Apr 28, 2026
c5d7b06
codegen metadata
stainless-app[bot] Apr 30, 2026
59d0d24
chore(internal): codegen related update
stainless-app[bot] May 1, 2026
1dba76d
codegen metadata
stainless-app[bot] May 8, 2026
0e34552
chore(internal): codegen related update
stainless-app[bot] May 9, 2026
65987ba
feat(client): add compatibility aliases for old type names
stainless-app[bot] May 12, 2026
f6dbe33
chore(internal): codegen related update
stainless-app[bot] May 13, 2026
167b11e
feat(api): api update
stainless-app[bot] May 22, 2026
7b6ee51
feat(api): api update
stainless-app[bot] May 26, 2026
808556a
feat(api): api update
stainless-app[bot] Jun 24, 2026
ad5130b
codegen metadata
stainless-app[bot] Jun 24, 2026
d03691f
fix(types): avoid type-checker errors on params with additional prope…
stainless-app[bot] Jun 30, 2026
4407c4f
release: 0.2.0
stainless-app[bot] Jun 30, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
chore(tests): bump steady to v0.19.5
  • Loading branch information
stainless-app[bot] committed Mar 21, 2026
commit 9ef3615041ea171a462a29f8cfd268133df0c6fc
6 changes: 3 additions & 3 deletions scripts/mock
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ echo "==> Starting mock server with URL ${URL}"
# Run steady mock on the given spec
if [ "$1" == "--daemon" ]; then
# Pre-install the package so the download doesn't eat into the startup timeout
npm exec --package=@stdy/cli@0.19.4 -- steady --version
npm exec --package=@stdy/cli@0.19.5 -- steady --version

npm exec --package=@stdy/cli@0.19.4 -- steady --host 127.0.0.1 -p 4010 --validator-form-array-format=comma --validator-query-array-format=comma --validator-form-object-format=brackets --validator-query-object-format=brackets "$URL" &> .stdy.log &
npm exec --package=@stdy/cli@0.19.5 -- steady --host 127.0.0.1 -p 4010 --validator-form-array-format=comma --validator-query-array-format=comma --validator-form-object-format=brackets --validator-query-object-format=brackets "$URL" &> .stdy.log &

# Wait for server to come online via health endpoint (max 30s)
echo -n "Waiting for server"
Expand All @@ -48,5 +48,5 @@ if [ "$1" == "--daemon" ]; then

echo
else
npm exec --package=@stdy/cli@0.19.4 -- steady --host 127.0.0.1 -p 4010 --validator-form-array-format=comma --validator-query-array-format=comma --validator-form-object-format=brackets --validator-query-object-format=brackets "$URL"
npm exec --package=@stdy/cli@0.19.5 -- steady --host 127.0.0.1 -p 4010 --validator-form-array-format=comma --validator-query-array-format=comma --validator-form-object-format=brackets --validator-query-object-format=brackets "$URL"
fi
2 changes: 1 addition & 1 deletion scripts/test
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ elif ! steady_is_running ; then
echo -e "To run the server, pass in the path or url of your OpenAPI"
echo -e "spec to the steady command:"
echo
echo -e " \$ ${YELLOW}npm exec --package=@stdy/cli@0.19.4 -- steady path/to/your.openapi.yml --host 127.0.0.1 -p 4010 --validator-form-array-format=comma --validator-query-array-format=comma --validator-form-object-format=brackets --validator-query-object-format=brackets${NC}"
echo -e " \$ ${YELLOW}npm exec --package=@stdy/cli@0.19.5 -- steady path/to/your.openapi.yml --host 127.0.0.1 -p 4010 --validator-form-array-format=comma --validator-query-array-format=comma --validator-form-object-format=brackets --validator-query-object-format=brackets${NC}"
echo

exit 1
Expand Down