Skip to content

Commit 3930a7e

Browse files
committed
chore(docs): sync to Atmosphere 4.0.44
1 parent f332543 commit 3930a7e

5 files changed

Lines changed: 7 additions & 7 deletions

File tree

docs/src/content/docs/integrations/semantic-kernel.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,12 @@ You will also need Semantic Kernel's own dependencies (kernel core + the aiservi
2525
<dependency>
2626
<groupId>com.microsoft.semantic-kernel</groupId>
2727
<artifactId>semantickernel-api</artifactId>
28-
<version>4.0.43</version>
28+
<version>4.0.44</version>
2929
</dependency>
3030
<dependency>
3131
<groupId>com.microsoft.semantic-kernel</groupId>
3232
<artifactId>semantickernel-aiservices-openai</artifactId>
33-
<version>4.0.43</version>
33+
<version>4.0.44</version>
3434
</dependency>
3535
```
3636

docs/src/content/docs/reference/admin.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ Returns an aggregated snapshot:
6767
```json
6868
{
6969
"status": "UP",
70-
"version": "4.0.43",
70+
"version": "4.0.44",
7171
"connections": 3,
7272
"broadcasters": 12,
7373
"handlers": 12,

docs/src/content/docs/tutorial/09-ai-endpoint.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -348,7 +348,7 @@ reply must carry the function `name`. `OpenAiCompatibleClient` now
348348
serializes both unconditionally — additive for OpenAI, required for the
349349
stricter crowd. The serialized wire shape is pinned by unit tests in
350350
`atmosphere-ai` so future refactors cannot silently regress either side.
351-
Applies from `atmosphere-ai` `4.0.43` onward.
351+
Applies from `atmosphere-ai` `4.0.44` onward.
352352
:::
353353

354354
### Atmosphere Init-Params

docs/src/content/docs/tutorial/21-war-deployment.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,13 @@ Deploy Atmosphere as a standard WAR to any Servlet 6.0+ container with WebSocket
3131
<dependency>
3232
<groupId>jakarta.inject</groupId>
3333
<artifactId>jakarta.inject-api</artifactId>
34-
<version>4.0.43</version>
34+
<version>4.0.44</version>
3535
</dependency>
3636

3737
<dependency>
3838
<groupId>com.fasterxml.jackson.core</groupId>
3939
<artifactId>jackson-databind</artifactId>
40-
<version>4.0.43</version>
40+
<version>4.0.44</version>
4141
</dependency>
4242
</dependencies>
4343
</project>

docs/src/content/docs/tutorial/22-migration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ const sub = await atmosphere.atmosphere.subscribe(request, handlers);
130130

131131
1. **Update JDK** to 21+
132132
2. **Replace** `javax.*` imports with `jakarta.*`
133-
3. **Update** `atmosphere-runtime` dependency to the current `4.0.x` release (at time of writing, `4.0.43` on `main`; check Maven Central for the latest stable)
133+
3. **Update** `atmosphere-runtime` dependency to the current `4.0.x` release (at time of writing, `4.0.44` on `main`; check Maven Central for the latest stable)
134134
4. **Replace** Jersey/Meteor code with `@ManagedService` (if not already using it)
135135
5. **Replace** `atmosphere-javascript` with `atmosphere.js` 5.0
136136
6. **Optionally** adopt Rooms for group messaging patterns

0 commit comments

Comments
 (0)