Skip to content

Commit b32732f

Browse files
authored
Merge branch 'main' into copilot/fix-1937
2 parents 2395dcf + dcc90fc commit b32732f

File tree

84 files changed

+1783
-989
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

84 files changed

+1783
-989
lines changed

.devcontainer/docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ services:
2222
# (Adding the "ports" property to this file will not forward from a Codespace.)
2323

2424
elasticsearch:
25-
image: exceptionless/elasticsearch:8.18.1
25+
image: exceptionless/elasticsearch:8.19.2
2626
environment:
2727
node.name: elasticsearch
2828
cluster.name: exceptionless
@@ -38,7 +38,7 @@ services:
3838
kibana:
3939
depends_on:
4040
- elasticsearch
41-
image: docker.elastic.co/kibana/kibana:8.18.1
41+
image: docker.elastic.co/kibana/kibana:8.19.2
4242
environment:
4343
xpack.security.enabled: "false"
4444
ports:

.github/instructions/frontend.instructions.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,9 @@ Located in the `src/Exceptionless.Web/ClientApp` directory.
3636
- Ensure semantic HTML, mobile-first design, and WCAG 2.2 Level AA compliance.
3737
- Use shadcn-svelte components (based on [bits-ui](https://bits-ui.com/docs/llms.txt)).
3838
- Look for new components in the shadcn-svelte documentation
39+
- **Navigation**: Prefer `href` over `onclick` with `goto()` for better linkability, SEO, and accessibility.
40+
- Users can right-click to open in new tabs, copy links, and screen readers work better
41+
- Use `onclick` with `goto()` only for complex navigation logic or when additional processing is needed
3942

4043
## API Calls
4144

.github/workflows/build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ jobs:
126126
- name: Setup Node.js environment
127127
uses: actions/setup-node@v4
128128
with:
129-
node-version: 24
129+
node-version: 22
130130

131131
- name: Cache node_modules
132132
uses: actions/cache@v4

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ FROM build AS api-publish
4949
WORKDIR /app/src/Exceptionless.Web
5050

5151
RUN apt-get update -yq
52-
RUN curl -sL https://deb.nodesource.com/setup_24.x | bash - && apt-get install -yq nodejs
52+
RUN curl -sL https://deb.nodesource.com/setup_22.x | bash - && apt-get install -yq nodejs
5353

5454
RUN dotnet publish -c Release -o out /p:SkipSpaPublish=true
5555

@@ -69,7 +69,7 @@ FROM build AS app-publish
6969
WORKDIR /app/src/Exceptionless.Web
7070

7171
RUN apt-get update -yq
72-
RUN curl -sL https://deb.nodesource.com/setup_24.x | bash - && apt-get install -yq nodejs
72+
RUN curl -sL https://deb.nodesource.com/setup_22.x | bash - && apt-get install -yq nodejs
7373

7474
RUN dotnet publish -c Release -o out
7575

@@ -98,7 +98,7 @@ ENTRYPOINT ["/app/app-docker-entrypoint.sh"]
9898

9999
# completely self-contained
100100

101-
FROM exceptionless/elasticsearch:8.18.1 AS exceptionless
101+
FROM exceptionless/elasticsearch:8.19.2 AS exceptionless
102102

103103
WORKDIR /app
104104
COPY --from=job-publish /app/src/Exceptionless.Job/out ./
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# https://www.docker.elastic.co/
2-
FROM docker.elastic.co/elasticsearch/elasticsearch:8.18.1
2+
FROM docker.elastic.co/elasticsearch/elasticsearch:8.19.2
33

44
RUN elasticsearch-plugin install -b mapper-size
55

docker/docker-compose.apm.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: "2.2"
22

33
services:
44
setup:
5-
image: docker.elastic.co/elasticsearch/elasticsearch:8.18.1
5+
image: docker.elastic.co/elasticsearch/elasticsearch:8.19.2
66
volumes:
77
- certs:/usr/share/elasticsearch/config/certs
88
user: "0"
@@ -53,7 +53,7 @@ services:
5353
depends_on:
5454
setup:
5555
condition: service_healthy
56-
image: docker.elastic.co/elasticsearch/elasticsearch:8.18.1
56+
image: docker.elastic.co/elasticsearch/elasticsearch:8.19.2
5757
volumes:
5858
- certs:/usr/share/elasticsearch/config/certs
5959
- esdata:/usr/share/elasticsearch/data
@@ -98,7 +98,7 @@ services:
9898
depends_on:
9999
elasticsearch:
100100
condition: service_healthy
101-
image: docker.elastic.co/kibana/kibana:8.18.1
101+
image: docker.elastic.co/kibana/kibana:8.19.2
102102
volumes:
103103
- certs:/usr/share/kibana/config/certs
104104
ports:
@@ -124,7 +124,7 @@ services:
124124
depends_on:
125125
elasticsearch:
126126
condition: service_healthy
127-
image: docker.elastic.co/apm/apm-server:8.18.1
127+
image: docker.elastic.co/apm/apm-server:8.19.2
128128
volumes:
129129
- certs:/usr/share/apm-server/certs
130130
ports:

docker/docker-compose.dev.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ services:
5050
- appdata:/app/storage
5151

5252
elasticsearch:
53-
image: exceptionless/elasticsearch:8.18.1
53+
image: exceptionless/elasticsearch:8.19.2
5454
environment:
5555
discovery.type: single-node
5656
xpack.security.enabled: "false"
@@ -64,7 +64,7 @@ services:
6464
kibana:
6565
depends_on:
6666
- elasticsearch
67-
image: docker.elastic.co/kibana/kibana:8.18.1
67+
image: docker.elastic.co/kibana/kibana:8.19.2
6868
ports:
6969
- 5601:5601
7070

docker/docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
services:
22
elasticsearch:
3-
image: exceptionless/elasticsearch:8.18.1
3+
image: exceptionless/elasticsearch:8.19.2
44
environment:
55
node.name: elasticsearch
66
cluster.name: exceptionless
@@ -16,7 +16,7 @@ services:
1616
kibana:
1717
depends_on:
1818
- elasticsearch
19-
image: docker.elastic.co/kibana/kibana:8.18.1
19+
image: docker.elastic.co/kibana/kibana:8.19.2
2020
environment:
2121
xpack.security.enabled: "false"
2222
ports:

samples/docker-compose.all-in-one.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ services:
2020
kibana:
2121
depends_on:
2222
- elasticsearch
23-
image: docker.elastic.co/kibana/kibana:8.18.1
23+
image: docker.elastic.co/kibana/kibana:8.19.2
2424
ports:
2525
- 5601:5601
2626

samples/docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ services:
4444
- ex_appdata:/app/storage
4545

4646
elasticsearch:
47-
image: exceptionless/elasticsearch:8.18.1
47+
image: exceptionless/elasticsearch:8.19.2
4848
environment:
4949
discovery.type: single-node
5050
xpack.security.enabled: "false"
@@ -58,7 +58,7 @@ services:
5858
kibana:
5959
depends_on:
6060
- elasticsearch
61-
image: docker.elastic.co/kibana/kibana:8.18.1
61+
image: docker.elastic.co/kibana/kibana:8.19.2
6262
ports:
6363
- 5601:5601
6464

0 commit comments

Comments
 (0)