Skip to content
Closed
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
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Changelog

All notable changes to the Azure Load Testing GitHub Action will be documented in this file.

## [v1] - 2025-11

### Recommended Version
**v1 is the recommended version for all users.**

### Changed
- Updated data plane token scope from `https://loadtest.azure-dev.com` to `https://cnt-prod.loadtesting.azure.com` for production Azure Load Testing service.

## [v1] - Previous Release

### Features
- Initial release of Azure Load Testing GitHub Action
- Support for running load tests with Azure Load Testing service
- Integration with GitHub Actions workflows
- Support for JMeter scripts, Locust tests, and URL-based tests
- Pass/Fail criteria configuration
- Secret and environment variable injection
- Multi-region testing support
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout GitHub Actions
uses: actions/checkout@v2
uses: actions/checkout@v1

- name: Login to Azure
uses: azure/login@v1
Expand Down
2 changes: 1 addition & 1 deletion lib/mappers.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ var resourceId = "";
var subscriptionID = "";
var environment = "AzureCloud";
var armTokenScope = "https://management.core.windows.net";
var dataPlaneTokenScope = "https://loadtest.azure-dev.com";
var dataPlaneTokenScope = "https://cnt-prod.loadtesting.azure.com";
var armEndpoint = "https://management.azure.com";
var tenantId = "";
var yamlFile = "";
Expand Down
2 changes: 1 addition & 1 deletion src/mappers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ var resourceId = "";
var subscriptionID = "";
var environment="AzureCloud";
var armTokenScope="https://management.core.windows.net";
var dataPlaneTokenScope="https://loadtest.azure-dev.com";
var dataPlaneTokenScope="https://cnt-prod.loadtesting.azure.com";
var armEndpoint="https://management.azure.com";
var tenantId = "";
var yamlFile = "";
Expand Down
Loading