Skip to content

Commit d3f0fde

Browse files
committed
Update version to 10.*
1 parent 6a0d8d5 commit d3f0fde

Some content is hidden

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

41 files changed

+82
-125
lines changed

MyApp/_pages/ai-server/openai-chat-all-languages.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ We'll use this to show how to call Open AI Chat APIs in 11 different languages:
2424
Install the `ServiceStack.Client` NuGet package:
2525

2626
:::copy
27-
`<PackageReference Include="ServiceStack.Client" Version="8.*" />`
27+
`<PackageReference Include="ServiceStack.Client" Version="10.*" />`
2828
:::
2929

3030
Download AI Server's C# DTOs with [x dotnet tool](/dotnet-tool):
@@ -335,7 +335,7 @@ let result:OpenAiChatResponse = try await client.postAsync(
335335
Install the `ServiceStack.Client` NuGet package:
336336

337337
:::copy
338-
`<PackageReference Include="ServiceStack.Client" Version="8.*" />`
338+
`<PackageReference Include="ServiceStack.Client" Version="10.*" />`
339339
:::
340340

341341
Download AI Server's F# DTOs with [x dotnet tool](/dotnet-tool):
@@ -369,7 +369,7 @@ let result = client.Post<OpenAiChatCompletionResponse>("/v1/chat/completions",
369369
Install the `ServiceStack.Client` NuGet package:
370370

371371
:::copy
372-
`<PackageReference Include="ServiceStack.Client" Version="8.*" />`
372+
`<PackageReference Include="ServiceStack.Client" Version="10.*" />`
373373
:::
374374

375375
Download AI Server's VB.NET DTOs with [x dotnet tool](/dotnet-tool):

MyApp/_pages/amazon-sqs-mq.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ To start using Amazon SQS in stand-alone MQ Servers (i.e. without HTTP access) i
2222
Support for registering Amazon Simple Queue Service (SQS) as an [MQ Server](/messaging) is available in [ServiceStack.Aws](https://www.nuget.org/packages/ServiceStack.Aws) NuGet package:
2323

2424
:::copy
25-
`<PackageReference Include="ServiceStack.Aws" Version="8.*" />`
25+
`<PackageReference Include="ServiceStack.Aws" Version="10.*" />`
2626
:::
2727

2828
Once installed SQS can be configured the same way as any other [MQ Servers](/messaging), by first registering the ServiceBus `IMessageService` provider followed by registering all ServiceStack Services you want to be able to invoke via MQ’s:

MyApp/_pages/auth/identity-auth.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ but replace their internal implementation to use ASP.NET Identity Auth instead.
8686
The new Identity Auth integration is contained in the .NET 6+ **ServiceStack.Extensions** NuGet package:
8787

8888
```xml
89-
<PackageReference Include="ServiceStack.Extensions" Version="8.*" />
89+
<PackageReference Include="ServiceStack.Extensions" Version="10.*" />
9090
```
9191

9292
Which at a minimum lets you configure ServiceStack to use Identity Auth by simply registering the existing `AuthFeature`

MyApp/_pages/autoquery/dynamodb.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ requests when deployed to production
5555
To Get Started Install [ServiceStack's AWS Support package](https://github.com/ServiceStack/ServiceStack/tree/main/ServiceStack.Aws) from NuGet:
5656

5757
:::copy
58-
`<PackageReference Include="ServiceStack.Aws" Version="8.*" />`
58+
`<PackageReference Include="ServiceStack.Aws" Version="10.*" />`
5959
:::
6060

6161
## Simple AutoQuery Data Example

MyApp/_pages/autoquery/rdbms.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ services.AddPlugin(new AutoQueryFeature { MaxLimit = 100 });
2121
Which is all that's needed to enable the AutoQuery feature. The AutoQueryFeature is inside [ServiceStack.Server](https://servicestack.net/download#get-started) NuGet package which contains value-added features that utilize either OrmLite and Redis which can be added to your project with:
2222

2323
:::copy
24-
`<PackageReference Include="ServiceStack.Server" Version="8.*" />`
24+
`<PackageReference Include="ServiceStack.Server" Version="10.*" />`
2525
:::
2626

2727
If you don't have OrmLite configured it can be registered with a 1-liner by specifying your preferred provider and Connection String:

MyApp/_pages/aws-getting-started.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ Now that you're PostgreSQL instance is running, connecting with OrmLite will req
6767
```
6868

6969
:::copy
70-
`<PackageReference Include="ServiceStack.OrmLite.PostgreSQL" Version="8.*" />`
70+
`<PackageReference Include="ServiceStack.OrmLite.PostgreSQL" Version="10.*" />`
7171
:::
7272

7373
Once this dependency is installed, the `OrmLiteConnectionFactory` can be used with the `PostgreSqlDialect.Provider` can be configured in the AppHost Configure method. For example.
@@ -187,7 +187,7 @@ Now that you're Aurora instance is running, connecting with OrmLite will require
187187
```
188188

189189
:::copy
190-
`<PackageReference Include="ServiceStack.OrmLite.MySql" Version="8.*" />`
190+
`<PackageReference Include="ServiceStack.OrmLite.MySql" Version="10.*" />`
191191
:::
192192

193193
Once this dependency is installed, the `OrmLiteConnectionFactory` can be used with the `MySqlDialect.Provider` can be configured in the AppHost Configure method. For example.
@@ -307,7 +307,7 @@ Now that you're MySQL instance is running, connecting with OrmLite will require
307307
```
308308

309309
:::copy
310-
`<PackageReference Include="ServiceStack.OrmLite.MySql" Version="8.*" />`
310+
`<PackageReference Include="ServiceStack.OrmLite.MySql" Version="10.*" />`
311311
:::
312312

313313
Once this dependency is installed, the `OrmLiteConnectionFactory` can be used with the `MySqlDialect.Provider` can be configured in the AppHost Configure method. For example.
@@ -431,7 +431,7 @@ Now that you're MariaDB instance is running, connecting with OrmLite will requir
431431
```
432432

433433
:::copy
434-
`<PackageReference Include="ServiceStack.OrmLite.MySql" Version="8.*" />`
434+
`<PackageReference Include="ServiceStack.OrmLite.MySql" Version="10.*" />`
435435
:::
436436

437437
Once this dependency is installed, the `OrmLiteConnectionFactory` can be used with the `MySqlDialect.Provider` can be configured in the AppHost Configure method. For example.
@@ -556,7 +556,7 @@ If you are connecting to a new instance without a database, you'll need to creat
556556
```
557557

558558
:::copy
559-
`<PackageReference Include="ServiceStack.SqlServer" Version="8.*" />`
559+
`<PackageReference Include="ServiceStack.SqlServer" Version="10.*" />`
560560
:::
561561

562562
Once this dependency is installed, the `OrmLiteConnectionFactory` can be used with the `SqlServerDialect.Provider` can be configured in the AppHost Configure method. For example.
@@ -665,7 +665,7 @@ Now you're your Redis nodes are ready, your AppHost can be configured to use the
665665
First, you'll need to install `ServiceStack.Redis` NuGet package if your application doesn't already use it.
666666

667667
:::copy
668-
`<PackageReference Include="ServiceStack.Redis" Version="8.*" />`
668+
`<PackageReference Include="ServiceStack.Redis" Version="10.*" />`
669669
:::
670670

671671
In this example, we are going to use a `PooledRedisClientManager` for our `IRedisClientsManager`. This will be responsible for creating `ICacheClient`s that our `Service`s will use to connect to the ElastiCache nodes. We will need to provide our `PooledRedisClientManager` with the nodes we have create. For example, as shown above, we created a cluster of **1 Primary** (master) and **2 Read Replicas** (slaves), these endpoint URLs can be accessed from the ElastiCache **Dashboard**.
@@ -794,7 +794,7 @@ Now you're your Memcached cluster is ready, your AppHost can be configured to us
794794
First, you'll need to install `ServiceStack.Caching.Memcached`:
795795

796796
:::copy
797-
`<PackageReference Include="ServiceStack.Caching.Memcached" Version="8.*" />`
797+
`<PackageReference Include="ServiceStack.Caching.Memcached" Version="10.*" />`
798798
:::
799799

800800
To access the Memcached nodes from your `Service`s, you will need to register a `MemcachedClientCache` as a `ICacheClient` with the IoC container. This client has to initialized with each of the node endpoints provided by AWS. From the [ElastiCache Dashboard](https://console.aws.amazon.com/elasticache/home), click on the `nodes` on your cluster to see the node endpoint URLs.

MyApp/_pages/aws-pocodynamo.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ configurations, related items, conventions, aliases, dep-free data annotation at
139139
PocoDynamo is contained in ServiceStack's AWS NuGet package:
140140

141141
:::copy
142-
`<PackageReference Include="ServiceStack.Aws" Version="8.*" />`
142+
`<PackageReference Include="ServiceStack.Aws" Version="10.*" />`
143143
:::
144144

145145
> PocoDynamo has a 10 Tables [free-quota usage](https://servicestack.net/download#free-quotas) limit which can be unlocked with a [commercial license key](https://servicestack.net/pricing).

MyApp/_pages/aws.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ All of ServiceStack's support for AWS is encapsulated within the single **Servic
5151
references the latest modular AWSSDK **v3.1x** dependencies **.NET 4.5+** projects can install from NuGet with:
5252

5353
:::copy
54-
`<PackageReference Include="ServiceStack.Aws" Version="8.*" />`
54+
`<PackageReference Include="ServiceStack.Aws" Version="10.*" />`
5555
:::
5656

5757
This **ServiceStack.Aws** NuGet package includes implementations for the following ServiceStack providers:
@@ -537,7 +537,7 @@ configurations, related items, conventions, aliases, dep-free data annotation at
537537
PocoDynamo is contained in ServiceStack's AWS NuGet package:
538538

539539
:::copy
540-
`<PackageReference Include="ServiceStack.Aws" Version="8.*" />`
540+
`<PackageReference Include="ServiceStack.Aws" Version="10.*" />`
541541
:::
542542

543543
> PocoDynamo has a 10 Tables [free-quota usage](https://servicestack.net/download#free-quotas) limit which is unlocked with a [license key](https://servicestack.net/pricing).

MyApp/_pages/azure-service-bus-mq.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ To start using Azure Service Bus in stand-alone MQ Servers (i.e. without HTTP ac
2121
Support for registering Azure Service Bus as an [MQ Server](/messaging) in ServiceStack is available in [ServiceStack.Azure](https://www.nuget.org/packages/ServiceStack.Azure) NuGet package:
2222

2323
:::copy
24-
`<PackageReference Include="ServiceStack.Azure" Version="8.*" />`
24+
`<PackageReference Include="ServiceStack.Azure" Version="10.*" />`
2525
:::
2626

2727
Once installed ServiceBus can be configured the same way as any other [MQ Servers](/messaging), by first registering the ServiceBus `IMessageService` provider followed by registering all ServiceStack Services you want to be able to invoke via MQ’s:

MyApp/_pages/azure.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ title: Azure Resources
88
ServiceStack.Azure package provides support to Azure ServiceBus and Azure Blob Storage. All features are incapsulated in single ServiceStack.Azure package. To install package run from NuGet
99

1010
:::copy
11-
`<PackageReference Include="ServiceStack.Azure" Version="8.*" />`
11+
`<PackageReference Include="ServiceStack.Azure" Version="10.*" />`
1212
:::
1313

1414
ServiceStack.Azure includes implementation of the following ServiceStack providers:

0 commit comments

Comments
 (0)