Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
5f34065
Fix port value (schema indicates integer) (#447)
bart-vmware Feb 12, 2026
bf94c8a
Sync up .DotSettings files from Steeltoe (#448)
bart-vmware Feb 27, 2026
9585bdd
Update `cf create-service` instructions to use `--wait` parameter (#449)
bart-vmware Mar 6, 2026
057a880
Match logger reset with Spring spec at https://docs.spring.io/spring-…
bart-vmware Mar 10, 2026
ac468cf
Bump requests from 2.32.4 to 2.33.0
dependabot[bot] Mar 26, 2026
7af7570
Update NuGet references for database drivers (#454)
bart-vmware Apr 9, 2026
5dbcbbb
Bump pygments from 2.19.2 to 2.20.0
dependabot[bot] Mar 30, 2026
0f4e0da
Clarify Building & Running sections, add clickable links to other REA…
TimHess Apr 20, 2026
e15bf77
Convert to .slnx format, sync-up R# (#457)
bart-vmware Apr 24, 2026
ca9c045
Delete all buildpack.yml files (remove temporary workaround) (#459)
bart-vmware May 6, 2026
d9c294b
Integration test enhancements
TimHess May 6, 2026
def1c1c
Bump lxml from 6.0.0 to 6.1.0
dependabot[bot] May 13, 2026
caaa0a9
Bump urllib3 from 2.6.3 to 2.7.0
dependabot[bot] May 14, 2026
37e7277
Bump idna from 3.11 to 3.15
dependabot[bot] May 19, 2026
78581b0
Reduce scope on python file workflow triggers
TimHess May 15, 2026
5b8ddff
Sync up with https://github.com/SteeltoeOSS/Steeltoe/pull/1694 (#466)
bart-vmware May 22, 2026
1299c31
Block deleting from outside network share root (#465)
bart-vmware May 22, 2026
eb0d2b6
Bump OpenTelemetry dependencies to non-vulnerable version (#468)
bart-vmware May 28, 2026
da2511c
Merge branch 'main' into merge-main-420-into-4x
bart-vmware May 28, 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
19 changes: 15 additions & 4 deletions .github/workflows/Configuration-ConfigurationProviders.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@ name: "Configuration: ConfigurationProviders"

on:
workflow_dispatch:
inputs:
linux_integration_environment:
description: GitHub Environment name for integration tests running on linux.
required: false
type: string
windows_integration_environment:
description: GitHub Environment name for integration tests running on Windows.
required: false
type: string
push:
branches:
- main
Expand All @@ -14,13 +23,15 @@ on:
- nuget.config
- Pipfile*
- pyenv.pkgs
- '**/*.py'
- environment.py
- pysteel/**
- steps/**
- Configuration/src/ConfigurationProviders/**
- .github/workflows/configuration.yml
- .github/workflows/shared-test-workflow.yml

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event.inputs.linux_integration_environment || vars.LINUX_INTEGRATION_ENVIRONMENT }}-${{ github.event.inputs.windows_integration_environment || vars.WINDOWS_INTEGRATION_ENVIRONMENT }}
cancel-in-progress: true

jobs:
Expand All @@ -31,12 +42,12 @@ jobs:
feature: Configuration
sample: ConfigurationProviders
OS: windows
environment_name: ${{ github.event.inputs.windows_integration_environment || vars.WINDOWS_INTEGRATION_ENVIRONMENT }}
linux:
needs: windows
if: ${{ !cancelled() }}
uses: ./.github/workflows/shared-test-workflow.yml
secrets: inherit
with:
feature: Configuration
sample: ConfigurationProviders
OS: linux
environment_name: ${{ github.event.inputs.linux_integration_environment || vars.LINUX_INTEGRATION_ENVIRONMENT }}
19 changes: 15 additions & 4 deletions .github/workflows/Connectors-MySql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@ name: "Connectors: MySql"

on:
workflow_dispatch:
inputs:
linux_integration_environment:
description: GitHub Environment name for integration tests running on linux.
required: false
type: string
windows_integration_environment:
description: GitHub Environment name for integration tests running on Windows.
required: false
type: string
push:
branches:
- main
Expand All @@ -14,13 +23,15 @@ on:
- nuget.config
- Pipfile*
- pyenv.pkgs
- '**/*.py'
- environment.py
- pysteel/**
- steps/**
- Connectors/src/MySql/**
- .github/workflows/mysql.yml
- .github/workflows/shared-test-workflow.yml

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event.inputs.linux_integration_environment || vars.LINUX_INTEGRATION_ENVIRONMENT }}-${{ github.event.inputs.windows_integration_environment || vars.WINDOWS_INTEGRATION_ENVIRONMENT }}
cancel-in-progress: true

jobs:
Expand All @@ -31,12 +42,12 @@ jobs:
feature: Connectors
sample: MySql
OS: linux
environment_name: ${{ github.event.inputs.linux_integration_environment || vars.LINUX_INTEGRATION_ENVIRONMENT }}
windows:
needs: linux
if: ${{ !cancelled() }}
uses: ./.github/workflows/shared-test-workflow.yml
secrets: inherit
with:
feature: Connectors
sample: MySql
OS: windows
environment_name: ${{ github.event.inputs.windows_integration_environment || vars.WINDOWS_INTEGRATION_ENVIRONMENT }}
19 changes: 15 additions & 4 deletions .github/workflows/Connectors-MySqlEFCore.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@ name: "Connectors: MySqlEFCore"

on:
workflow_dispatch:
inputs:
linux_integration_environment:
description: GitHub Environment name for integration tests running on linux.
required: false
type: string
windows_integration_environment:
description: GitHub Environment name for integration tests running on Windows.
required: false
type: string
push:
branches:
- main
Expand All @@ -14,13 +23,15 @@ on:
- nuget.config
- Pipfile*
- pyenv.pkgs
- '**/*.py'
- environment.py
- pysteel/**
- steps/**
- Connectors/src/MySqlEFCore/**
- .github/workflows/mysql-efcore.yml
- .github/workflows/shared-test-workflow.yml

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event.inputs.linux_integration_environment || vars.LINUX_INTEGRATION_ENVIRONMENT }}-${{ github.event.inputs.windows_integration_environment || vars.WINDOWS_INTEGRATION_ENVIRONMENT }}
cancel-in-progress: true

jobs:
Expand All @@ -31,12 +42,12 @@ jobs:
feature: Connectors
sample: MySqlEFCore
OS: windows
environment_name: ${{ github.event.inputs.windows_integration_environment || vars.WINDOWS_INTEGRATION_ENVIRONMENT }}
linux:
needs: windows
if: ${{ !cancelled() }}
uses: ./.github/workflows/shared-test-workflow.yml
secrets: inherit
with:
feature: Connectors
sample: MySqlEFCore
OS: linux
environment_name: ${{ github.event.inputs.linux_integration_environment || vars.LINUX_INTEGRATION_ENVIRONMENT }}
19 changes: 15 additions & 4 deletions .github/workflows/Connectors-PostgreSql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@ name: "Connectors: PostgreSQL"

on:
workflow_dispatch:
inputs:
linux_integration_environment:
description: GitHub Environment name for integration tests running on linux.
required: false
type: string
windows_integration_environment:
description: GitHub Environment name for integration tests running on Windows.
required: false
type: string
push:
branches:
- main
Expand All @@ -14,13 +23,15 @@ on:
- nuget.config
- Pipfile*
- pyenv.pkgs
- '**/*.py'
- environment.py
- pysteel/**
- steps/**
- Connectors/src/PostgreSql/**
- .github/workflows/postgresql.yml
- .github/workflows/shared-test-workflow.yml

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event.inputs.linux_integration_environment || vars.LINUX_INTEGRATION_ENVIRONMENT }}-${{ github.event.inputs.windows_integration_environment || vars.WINDOWS_INTEGRATION_ENVIRONMENT }}
cancel-in-progress: true

jobs:
Expand All @@ -31,12 +42,12 @@ jobs:
feature: Connectors
sample: PostgreSql
OS: windows
environment_name: ${{ github.event.inputs.windows_integration_environment || vars.WINDOWS_INTEGRATION_ENVIRONMENT }}
linux:
needs: windows
if: ${{ !cancelled() }}
uses: ./.github/workflows/shared-test-workflow.yml
secrets: inherit
with:
feature: Connectors
sample: PostgreSql
OS: linux
environment_name: ${{ github.event.inputs.linux_integration_environment || vars.LINUX_INTEGRATION_ENVIRONMENT }}
19 changes: 15 additions & 4 deletions .github/workflows/Connectors-PostgreSqlEFCore.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@ name: "Connectors: PostgreSqlEFCore"

on:
workflow_dispatch:
inputs:
linux_integration_environment:
description: GitHub Environment name for integration tests running on linux.
required: false
type: string
windows_integration_environment:
description: GitHub Environment name for integration tests running on Windows.
required: false
type: string
push:
branches:
- main
Expand All @@ -14,13 +23,15 @@ on:
- nuget.config
- Pipfile*
- pyenv.pkgs
- '**/*.py'
- environment.py
- pysteel/**
- steps/**
- Connectors/src/PostgreSqlEFCore/**
- .github/workflows/postgresql-efcore.yml
- .github/workflows/shared-test-workflow.yml

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event.inputs.linux_integration_environment || vars.LINUX_INTEGRATION_ENVIRONMENT }}-${{ github.event.inputs.windows_integration_environment || vars.WINDOWS_INTEGRATION_ENVIRONMENT }}
cancel-in-progress: true

jobs:
Expand All @@ -31,12 +42,12 @@ jobs:
feature: Connectors
sample: PostgreSqlEFCore
OS: linux
environment_name: ${{ github.event.inputs.linux_integration_environment || vars.LINUX_INTEGRATION_ENVIRONMENT }}
windows:
needs: linux
if: ${{ !cancelled() }}
uses: ./.github/workflows/shared-test-workflow.yml
secrets: inherit
with:
feature: Connectors
sample: PostgreSqlEFCore
OS: windows
environment_name: ${{ github.event.inputs.windows_integration_environment || vars.WINDOWS_INTEGRATION_ENVIRONMENT }}
19 changes: 15 additions & 4 deletions .github/workflows/Connectors-RabbitMQ.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@ name: "Connectors: RabbitMQ"

on:
workflow_dispatch:
inputs:
linux_integration_environment:
description: GitHub Environment name for integration tests running on linux.
required: false
type: string
windows_integration_environment:
description: GitHub Environment name for integration tests running on Windows.
required: false
type: string
push:
branches:
- main
Expand All @@ -14,13 +23,15 @@ on:
- nuget.config
- Pipfile*
- pyenv.pkgs
- '**/*.py'
- environment.py
- pysteel/**
- steps/**
- Connectors/src/RabbitMQ/**
- .github/workflows/rabbitmq.yml
- .github/workflows/shared-test-workflow.yml

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event.inputs.linux_integration_environment || vars.LINUX_INTEGRATION_ENVIRONMENT }}-${{ github.event.inputs.windows_integration_environment || vars.WINDOWS_INTEGRATION_ENVIRONMENT }}
cancel-in-progress: true

jobs:
Expand All @@ -31,12 +42,12 @@ jobs:
feature: Connectors
sample: RabbitMQ
OS: linux
environment_name: ${{ github.event.inputs.linux_integration_environment || vars.LINUX_INTEGRATION_ENVIRONMENT }}
windows:
needs: linux
if: ${{ !cancelled() }}
uses: ./.github/workflows/shared-test-workflow.yml
secrets: inherit
with:
feature: Connectors
sample: RabbitMQ
OS: windows
environment_name: ${{ github.event.inputs.windows_integration_environment || vars.WINDOWS_INTEGRATION_ENVIRONMENT }}
19 changes: 15 additions & 4 deletions .github/workflows/Connectors-Redis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@ name: "Connectors: Redis"

on:
workflow_dispatch:
inputs:
linux_integration_environment:
description: GitHub Environment name for integration tests running on linux.
required: false
type: string
windows_integration_environment:
description: GitHub Environment name for integration tests running on Windows.
required: false
type: string
push:
branches:
- main
Expand All @@ -14,13 +23,15 @@ on:
- nuget.config
- Pipfile*
- pyenv.pkgs
- '**/*.py'
- environment.py
- pysteel/**
- steps/**
- Connectors/src/Redis/**
- .github/workflows/redis.yml
- .github/workflows/shared-test-workflow.yml

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event.inputs.linux_integration_environment || vars.LINUX_INTEGRATION_ENVIRONMENT }}-${{ github.event.inputs.windows_integration_environment || vars.WINDOWS_INTEGRATION_ENVIRONMENT }}
cancel-in-progress: true

jobs:
Expand All @@ -31,12 +42,12 @@ jobs:
feature: Connectors
sample: Redis
OS: linux
environment_name: ${{ github.event.inputs.linux_integration_environment || vars.LINUX_INTEGRATION_ENVIRONMENT }}
windows:
needs: linux
if: ${{ !cancelled() }}
uses: ./.github/workflows/shared-test-workflow.yml
secrets: inherit
with:
feature: Connectors
sample: Redis
OS: windows
environment_name: ${{ github.event.inputs.windows_integration_environment || vars.WINDOWS_INTEGRATION_ENVIRONMENT }}
12 changes: 10 additions & 2 deletions .github/workflows/FileShares-FileSharesWeb.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@ name: "FileShares: FileSharesWeb"

on:
workflow_dispatch:
inputs:
windows_integration_environment:
description: GitHub Environment name for integration tests running on Windows.
required: false
type: string
push:
branches:
- main
Expand All @@ -14,13 +19,15 @@ on:
- nuget.config
- Pipfile*
- pyenv.pkgs
- '**/*.py'
- environment.py
- pysteel/**
- steps/**
- FileShares/src/FileSharesWeb/**
- .github/workflows/networkfileshares.yml
- .github/workflows/shared-test-workflow.yml

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event.inputs.windows_integration_environment || vars.WINDOWS_INTEGRATION_ENVIRONMENT }}
cancel-in-progress: true

jobs:
Expand All @@ -31,3 +38,4 @@ jobs:
feature: FileShares
sample: FileSharesWeb
OS: windows
environment_name: ${{ github.event.inputs.windows_integration_environment || vars.WINDOWS_INTEGRATION_ENVIRONMENT }}
Loading