Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
96afb58
feat(e2e): add automated end-to-end testing infrastructure for the ex…
naveenku-jfrog May 13, 2026
f990399
fix(e2e): allow CI to bypass the local 40MB vsix pre-flight check (#613)
naveenku-jfrog May 13, 2026
5d196e6
fix(e2e): stop calling tfx unpublish + force private publisher in man…
naveenku-jfrog May 13, 2026
cee5b4f
fix(e2e): use a distinct extension id for the private CI publish (#615)
naveenku-jfrog May 13, 2026
9dc6727
refactor(e2e): drop fragile CI publish step, hand off install to a ma…
naveenku-jfrog May 17, 2026
1d243a2
fix(e2e): bake the real destination publisher into the .vsix at build…
naveenku-jfrog May 17, 2026
208ecfc
fix(e2e): bake the real publisher AND a fresh extension id into the .…
naveenku-jfrog May 17, 2026
57d5424
fix(e2e): surface the real HTTP error when the ADO trigger fails (#620)
naveenku-jfrog May 17, 2026
43cb7b7
Fix/e2e yaml drop template params (#621)
naveenku-jfrog May 19, 2026
ae341f7
Fix/e2e yaml drop template params (#622)
naveenku-jfrog May 19, 2026
e0d8b0b
e2e: rename private-build tasks with E2E suffix to fix ADO ambiguity …
naveenku-jfrog May 19, 2026
6b01680
fix(e2e): match CliV2 task name case (JfrogCliV2E2E not JFrogCliV2E2E…
naveenku-jfrog May 19, 2026
5ca3a84
fix(e2e): inline Maven pom.xml to remove GitHub SAML dependency (#625)
naveenku-jfrog May 19, 2026
58408ee
fix(e2e): replace runtime coalesce expressions with simple variable d…
naveenku-jfrog May 19, 2026
2573ee1
fix(e2e): fix S1 traceability script causing bash parse error (#627)
naveenku-jfrog May 19, 2026
6ba925f
fix(oidc-pipeline): fix OIDC regression pipeline test configuration
naveenku-jfrog May 19, 2026
7c41a92
fix(oidc-pipeline): fix OIDC regression pipeline test configuration (…
naveenku-jfrog May 19, 2026
b66df77
fix(e2e): fix OIDC pipeline config and automate Marketplace publish f…
naveenku-jfrog May 20, 2026
a67d4cb
Merge branch 'jfrog:v2' into v2
naveenku-jfrog May 20, 2026
e293d99
fix(e2e): use env var instead of secrets in if condition for Marketpl…
naveenku-jfrog May 20, 2026
b2ef1d9
fix(e2e): add --no-wait-validation to tfx publish to avoid null versi…
naveenku-jfrog May 20, 2026
28c511b
feat(pipelines): print installed JFrog extension task version at pipe…
naveenku-jfrog May 20, 2026
47b3a09
feat(workflow): print extension version under test at start of jobs 2…
naveenku-jfrog May 20, 2026
892012b
feat(workflow): verify Marketplace extension version matches build in…
naveenku-jfrog May 20, 2026
36f7e40
fix(workflow): handle empty/non-200 Marketplace API response in versi…
naveenku-jfrog May 20, 2026
94d4cbc
fix(workflow): run Marketplace version check after 7-min propagation …
naveenku-jfrog May 20, 2026
5470c91
fix(workflow): collapse multi-line python3 -c to single line to fix Y…
naveenku-jfrog May 20, 2026
2c4351b
fix(workflow): use extensionquery POST API instead of wrong vsextensi…
naveenku-jfrog May 20, 2026
66159cc
fix(workflow): use authenticated gallery API and correct flags for pr…
naveenku-jfrog May 20, 2026
36c01a9
fix(workflow): use tfx extension show instead of Marketplace REST API…
naveenku-jfrog May 20, 2026
6b173e9
feat(workflow): add pre-build Marketplace version check as first step…
naveenku-jfrog May 20, 2026
90cfe17
fix(workflow): parse tfx JSON output with python instead of grep for …
naveenku-jfrog May 20, 2026
2a0cdaa
fix(workflow): collapse multi-line python3 to single line to fix YAML…
naveenku-jfrog May 20, 2026
3924dc6
feat(workflow): move Marketplace version check to jobs 2 and 3 only, …
naveenku-jfrog May 20, 2026
bdd1501
feat(workflow): fail jobs 2 and 3 if Marketplace version does not mat…
naveenku-jfrog May 20, 2026
ea0b362
add node 22 in matrix for tests
naveenku-jfrog Jun 24, 2026
5a44aa8
Merge branch 'v2' into RTECO-813-jfrog-azure-devops-extension-support…
naveenku-jfrog Jun 24, 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
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
fail-fast: false
matrix:
os: [ ubuntu, windows ]
node-version: [ '16', '20', '24' ]
node-version: [ '16', '20', '22', '24' ]
include:
- os: windows
extraSkipTests: ",conan"
Expand Down
2 changes: 1 addition & 1 deletion buildScripts/trigger-ado-pipeline.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ set -eu
# ADO_ORG - Azure DevOps organization name (e.g. vigneshc0742)
# ADO_PROJECT - Azure DevOps project name (e.g. ecomatrix-test)
# ADO_PIPELINE_ID - Pipeline definition ID (e.g. 63)
# ADO_PAT - PAT with Build Read+Execute and Project Read scopes only
# ADO_PAT - PAT with Build Read+Execute and Project Read scopes
#
# Optional environment variables:
# GH_PR_NUMBER - GitHub PR number passed into pipeline as a variable (default: 0)
Expand Down
Loading