Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
"update-submodule": "git submodule update --remote src/prefab-common",
"version": "yarn build && oclif readme && git add README.md && cat package.json | jq .version | awk '{print \"// NOTE: This file is generated\\nexport default \"$1}' > src/version.ts && git add src/version.ts"
},
"version": "0.5.2",
"version": "0.5.3",
"bugs": "https://github.com/prefab-cloud/prefab-cli/issues",
"keywords": [
"oclif"
Expand Down
2 changes: 1 addition & 1 deletion src/prefab-common
2 changes: 1 addition & 1 deletion src/version.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
// NOTE: This file is generated
export default '0.5.2'
export default '0.5.3'
2 changes: 1 addition & 1 deletion test/responses/set-default.ts
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ const cannedResponses: CannedResponses = {
[
{
configKey: 'test.json',
currentVersionId: '17259086775344510',
currentVersionId: ANY,
environmentId: '6',
value: {
json: {
Expand Down
2 changes: 1 addition & 1 deletion test/test-helper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ export const getCannedResponse = async (
let body: DefaultBodyType = {}

if (request.method === 'POST') {
body = await request.json()
body = await request.clone().json()

if (!body || typeof body !== 'object') {
throw new Error('Expected http body to be an object')
Expand Down