Skip to content

Commit 6cdc3fc

Browse files
authored
Update to use Dev Proxy v1.0.0 release (#43)
1 parent 39e63c9 commit 6cdc3fc

File tree

13 files changed

+19
-19
lines changed

13 files changed

+19
-19
lines changed

.github/workflows/test-install-specific.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
id: setup-version
1616
uses: ./setup
1717
with:
18-
version: v0.29.2
18+
version: v1.0.0
1919
auto-start: false
2020

2121
- name: Verify Installation
@@ -29,9 +29,9 @@ jobs:
2929
echo "Version output: $version_output"
3030
3131
if echo "$version_output" | grep -q "0.29.2"; then
32-
echo "✅ Correct version (v0.29.2) installed"
32+
echo "✅ Correct version (v1.0.0) installed"
3333
else
34-
echo "❌ Expected version v0.29.2 but got: $version_output"
34+
echo "❌ Expected version v1.0.0 but got: $version_output"
3535
exit 1
3636
fi
3737
else

.github/workflows/test-llm-usage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
auto-stop: false
4141
config-file: ./samples/llm-usage/.devproxy/devproxyrc.json
4242
report-job-summary: $GITHUB_STEP_SUMMARY
43-
version: v1.0.0-beta.8
43+
version: v1.0.0
4444

4545
- name: Install the Dev Proxy certificate for Chromium
4646
uses: ./chromium-cert

.github/workflows/test-playwright-web-app.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
- name: Setup Dev Proxy
2929
uses: ./setup
3030
with:
31-
version: v0.29.2
31+
version: v1.0.0
3232
config-file: ./samples/playwright-web-app/.devproxy/devproxyrc.json
3333

3434
- name: Install the Dev Proxy certificate for Chromium

.github/workflows/test-setup.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
id: setup-devproxy
1616
uses: ./setup
1717
with:
18-
version: v0.29.2
18+
version: v1.0.0
1919
auto-record: true
2020

2121
- name: Verify Setup and Start

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Use the `setup` action to install and start Dev Proxy.
2525
id: setup-devproxy
2626
uses: dev-proxy-tools/actions/setup@v1
2727
with:
28-
version: v0.29.2
28+
version: v1.0.0
2929
```
3030
3131
The `setup` action automatically:
@@ -49,7 +49,7 @@ You can customize the behavior of the `setup` action using the following inputs:
4949
| `enable-cache` | Enable caching of Dev Proxy installation to speed up subsequent runs. Only applies when `version` is specified. | No | `true` |
5050
| `log-file` | Path to log Dev Proxy output to | No | `devproxy.log` |
5151
| `report-job-summary` | Path to output report content for use as summaries (e.g., `$GITHUB_STEP_SUMMARY`). | No | None |
52-
| `version` | Version of Dev Proxy to install (e.g., v0.29.2, v1.0.0-beta.2) | No | latest |
52+
| `version` | Version of Dev Proxy to install (e.g., v1.0.0, v1.0.0-beta.2) | No | latest |
5353

5454
**Outputs:**
5555

@@ -204,14 +204,14 @@ jobs:
204204
runs-on: ubuntu-latest
205205
steps:
206206
207-
# Install v0.29.2 and start Dev Proxy in recording mode
207+
# Install v1.0.0 and start Dev Proxy in recording mode
208208
# Reports are written to Job Summary
209209
# Caching is enabled by default to speed up subsequent runs
210210
- name: Setup Dev Proxy
211211
id: setup-devproxy
212212
uses: dev-proxy-tools/actions/setup@v1
213213
with:
214-
version: v0.29.2
214+
version: v1.0.0
215215
auto-record: true
216216
report-job-summary: $GITHUB_STEP_SUMMARY
217217

install/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Install Dev Proxy
22
description: Install Dev Proxy with optional version specification
33
inputs:
44
version:
5-
description: Version of Dev Proxy to install (e.g., v0.29.2). If not specified, the latest version will be installed.
5+
description: Version of Dev Proxy to install (e.g., v1.0.0). If not specified, the latest version will be installed.
66
required: false
77
called-by-setup:
88
description: Indicates if this action is called by the setup action

samples/llm-usage/.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
uses: dev-proxy-tools/actions/setup@v1
3636
with:
3737
auto-record: true
38-
version: v1.0.0-beta.8
38+
version: v1.0.0
3939
report-job-summary: $GITHUB_STEP_SUMMARY
4040

4141
- name: Install the Dev Proxy certificate for Chromium

samples/node-js/.devproxy/devproxy-errors.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.29.2/genericrandomerrorplugin.errorsfile.schema.json",
2+
"$schema": "https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v1.0.0/genericrandomerrorplugin.errorsfile.schema.json",
33
"errors": [
44
{
55
"request": {

samples/node-js/.devproxy/devproxyrc.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.29.2/rc.schema.json",
2+
"$schema": "https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v1.0.0/rc.schema.json",
33
"plugins": [
44
{
55
"name": "RetryAfterPlugin",
@@ -17,7 +17,7 @@
1717
"https://jsonplaceholder.typicode.com/*"
1818
],
1919
"genericRandomErrorPlugin": {
20-
"$schema": "https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.29.2/genericrandomerrorplugin.schema.json",
20+
"$schema": "https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v1.0.0/genericrandomerrorplugin.schema.json",
2121
"errorsFile": "devproxy-errors.json",
2222
"rate": 50
2323
},

samples/playwright-web-app/.devproxy/devproxyrc.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "https://raw.githubusercontent.com/microsoft/dev-proxy/main/schemas/v0.29.2/rc.schema.json",
2+
"$schema": "https://raw.githubusercontent.com/microsoft/dev-proxy/main/schemas/v1.0.0/rc.schema.json",
33
"plugins": [
44
{
55
"name": "MockResponsePlugin",

0 commit comments

Comments
 (0)