Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
d930043
feat: converted project to zoneless
petruki Nov 28, 2025
11089e9
- migrated metric module to zoneless
petruki Nov 28, 2025
1db70ba
- fixes changelog for zoneless compatibility
petruki Nov 28, 2025
cd2e9a0
- fixes components editing for zoneless compatibility
petruki Nov 29, 2025
dbab368
- fixes domain snapshot for zoneless compatibility
petruki Nov 29, 2025
de41fb5
- fixes group/config list when empty
petruki Nov 29, 2025
2a44a2f
- fixes domain transfer for zoneless compatibility
petruki Nov 29, 2025
3271f67
- fixes slack-auth for zoneless compatiblity
petruki Dec 1, 2025
4657de3
- fixes signup-team for zoneless compatiblity
petruki Dec 1, 2025
79bf7d5
- fixes signup for zoneless compatiblity
petruki Dec 1, 2025
0c404ea
- fixes app/login for zoneless compatiblity
petruki Dec 2, 2025
d9f86f6
- fixes settings for zoneless compatiblity
petruki Dec 2, 2025
40849eb
- fixes login-reset for zoneless compatiblity
petruki Dec 2, 2025
3080517
- fixes app-version for zoneless compatiblity
petruki Dec 2, 2025
a16e06a
- fixes documentation for zoneless compatiblity
petruki Dec 2, 2025
c42a1ae
- fixes ext-slack for zoneless compatiblity
petruki Dec 2, 2025
809f586
- bump version to v2.2.0
petruki Dec 2, 2025
2d9cc04
- fixes domain-preview for zoneless compatiblity
petruki Dec 2, 2025
87c12bd
- fixes group-preview for zoneless compatiblity
petruki Dec 2, 2025
9a778fb
- fixes config-preview for zoneless compatiblity
petruki Dec 2, 2025
1f55a5c
- fixes ext-gitops for zoneless compatiblity
petruki Dec 2, 2025
eddb6af
- fixes all detail components for zoneless compatiblity
petruki Dec 2, 2025
0064f71
- fixes preview components toggle style change event
petruki Dec 3, 2025
891fbdc
- chore: element-autocomplete style color
petruki Dec 3, 2025
1b7b470
- chore: gh action update
petruki Dec 3, 2025
3099dc7
- fix strategy clone wrong env value display
petruki Dec 3, 2025
3eea35a
- chore: removed unused module and fix code smells
petruki Dec 6, 2025
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
4 changes: 2 additions & 2 deletions .github/workflows/master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:

steps:
- name: Git checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0

Expand Down Expand Up @@ -65,7 +65,7 @@ jobs:

steps:
- name: Checkout Kustomize
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
token: ${{ secrets.ARGOCD_PAT }}
repository: switcherapi/switcher-deployment
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/re-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:

steps:
- name: Checkout Kustomize
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
token: ${{ secrets.ARGOCD_PAT }}
repository: switcherapi/switcher-deployment
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/re-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:

steps:
- name: Git checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0
ref: ${{ github.event.inputs.tag }}
Expand All @@ -37,7 +37,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0
ref: ${{ github.event.inputs.tag }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:

steps:
- name: Git checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0

Expand All @@ -32,7 +32,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Docker meta
id: meta
Expand Down
1 change: 0 additions & 1 deletion angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
},
"index": "src/index.html",
"polyfills": [
"zone.js",
"@angular/localize/init"
],
"tsConfig": "tsconfig.app.json",
Expand Down
7 changes: 0 additions & 7 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,6 @@ export default defineConfig({
],
processor: angular.processInlineTemplates,
rules: {
"@angular-eslint/directive-selector": [
"error",
{
type: "attribute",
prefix: "app"
},
],
"@angular-eslint/component-selector": [
"error",
{
Expand Down
Loading