Skip to content

Commit 9647ec7

Browse files
committed
Updates
1 parent d50e3fa commit 9647ec7

17 files changed

Lines changed: 24 additions & 24 deletions

.github/workflows/sync-skills.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -34,29 +34,29 @@ jobs:
3434
run: |
3535
# Copy skills content only (not plugin manifests)
3636
# The target repo has its own plugin structure
37-
if [ -d "source/skills/shiny-sqlitedocumentdb" ]; then
37+
if [ -d "source/skills/shiny-documentdb" ]; then
3838
# Remove existing skill directory to ensure clean sync
39-
rm -rf skills-repo/skills/shiny-sqlitedocumentdb
39+
rm -rf skills-repo/skills/shiny-documentdb
4040
mkdir -p skills-repo/skills
41-
cp -r source/skills/shiny-sqlitedocumentdb skills-repo/skills/
41+
cp -r source/skills/shiny-documentdb skills-repo/skills/
4242
fi
4343
4444
- name: Create Pull Request
4545
uses: peter-evans/create-pull-request@v6
4646
with:
4747
token: ${{ secrets.SKILLS_REPO_TOKEN }}
4848
path: skills-repo
49-
commit-message: "Update shiny-sqlitedocumentdb skill from SqliteDocumentDb repository"
50-
title: "Update shiny-sqlitedocumentdb skill"
49+
commit-message: "Update shiny-documentdb skill from DocumentDb repository"
50+
title: "Update shiny-documentdb skill"
5151
body: |
52-
This PR updates the shiny-sqlitedocumentdb skill from the [SqliteDocumentDb repository](https://github.com/shinyorg/SqliteDocumentDb).
52+
This PR updates the shiny-documentdb skill from the [DocumentDb repository](https://github.com/shinyorg/DocumentDb).
5353
5454
**Source commit:** ${{ github.sha }}
5555
**Triggered by:** @${{ github.actor }}
5656
5757
---
58-
*This PR was automatically created by the [sync-skills workflow](https://github.com/shinyorg/SqliteDocumentDb/actions/workflows/sync-skills.yml).*
59-
branch: update-shiny-sqlitedocumentdb-skill
58+
*This PR was automatically created by the [sync-skills workflow](https://github.com/shinyorg/DocumentDb/actions/workflows/sync-skills.yml).*
59+
branch: update-shiny-documentdb-skill
6060
delete-branch: true
6161
labels: |
6262
automated

Directory.build.props

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
<Authors>aritchie;ShinyLib</Authors>
99

1010
<PackageLicenseExpression>MIT</PackageLicenseExpression>
11-
<PackageProjectUrl>https://github.com/shinyorg/SqliteDocumentDb</PackageProjectUrl>
12-
<RepositoryUrl>https://github.com/shinyorg/SqliteDocumentDb</RepositoryUrl>
11+
<PackageProjectUrl>https://github.com/shinyorg/DocumentDb</PackageProjectUrl>
12+
<RepositoryUrl>https://github.com/shinyorg/DocumentDb</RepositoryUrl>
1313
<RepositoryType>git</RepositoryType>
1414

1515
<PackageIcon>icon.png</PackageIcon>
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<File Path="nuget.txt" />
1313
<File Path="readme.md" />
1414
<File Path="version.json" />
15-
<File Path="skills\shiny-sqlitedocumentdb\SKILL.md" />
15+
<File Path="skills\shiny-documentdb\SKILL.md" />
1616
</Folder>
1717
<Project Path="src/Shiny.DocumentDb/Shiny.DocumentDb.csproj" />
1818
<Project Path="src/Shiny.DocumentDb.Sqlite/Shiny.DocumentDb.Sqlite.csproj" />
@@ -21,5 +21,5 @@
2121
<Project Path="src/Shiny.DocumentDb.PostgreSql/Shiny.DocumentDb.PostgreSql.csproj" />
2222
<Project Path="samples/Sample/Sample.csproj" />
2323
<Project Path="tests/Shiny.DocumentDb.Tests/Shiny.DocumentDb.Tests.csproj" />
24-
<Project Path="benchmarks/Shiny.SqliteDocumentDb.Benchmarks/Shiny.SqliteDocumentDb.Benchmarks.csproj" />
24+
<Project Path="benchmarks/Shiny.DocumentDb.Benchmarks/Shiny.DocumentDb.Benchmarks.csproj" />
2525
</Solution>

benchmarks/Shiny.SqliteDocumentDb.Benchmarks/BatchInsertBenchmarks.cs renamed to benchmarks/Shiny.DocumentDb.Benchmarks/BatchInsertBenchmarks.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
using Shiny.DocumentDb.Sqlite;
55
using SQLite;
66

7-
namespace Shiny.SqliteDocumentDb.Benchmarks;
7+
namespace Shiny.DocumentDb.Benchmarks;
88

99
[MemoryDiagnoser]
1010
public class BatchInsertBenchmarks

benchmarks/Shiny.SqliteDocumentDb.Benchmarks/ChildCollectionBenchmarks.cs renamed to benchmarks/Shiny.DocumentDb.Benchmarks/ChildCollectionBenchmarks.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
using Shiny.DocumentDb.Sqlite;
55
using SQLite;
66

7-
namespace Shiny.SqliteDocumentDb.Benchmarks;
7+
namespace Shiny.DocumentDb.Benchmarks;
88

99
/// <summary>
1010
/// Benchmarks that highlight the document store advantage: nested objects and child

benchmarks/Shiny.SqliteDocumentDb.Benchmarks/GetAllBenchmarks.cs renamed to benchmarks/Shiny.DocumentDb.Benchmarks/GetAllBenchmarks.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
using Shiny.DocumentDb.Sqlite;
44
using SQLite;
55

6-
namespace Shiny.SqliteDocumentDb.Benchmarks;
6+
namespace Shiny.DocumentDb.Benchmarks;
77

88
[MemoryDiagnoser]
99
public class GetAllBenchmarks

benchmarks/Shiny.SqliteDocumentDb.Benchmarks/GetByIdBenchmarks.cs renamed to benchmarks/Shiny.DocumentDb.Benchmarks/GetByIdBenchmarks.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
using Shiny.DocumentDb.Sqlite;
44
using SQLite;
55

6-
namespace Shiny.SqliteDocumentDb.Benchmarks;
6+
namespace Shiny.DocumentDb.Benchmarks;
77

88
[MemoryDiagnoser]
99
public class GetByIdBenchmarks

benchmarks/Shiny.SqliteDocumentDb.Benchmarks/IndexBenchmarks.cs renamed to benchmarks/Shiny.DocumentDb.Benchmarks/IndexBenchmarks.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
using Shiny.DocumentDb;
33
using Shiny.DocumentDb.Sqlite;
44

5-
namespace Shiny.SqliteDocumentDb.Benchmarks;
5+
namespace Shiny.DocumentDb.Benchmarks;
66

77
/// <summary>
88
/// Compares query performance with and without a json_extract index on the Name property.

benchmarks/Shiny.SqliteDocumentDb.Benchmarks/InsertBenchmarks.cs renamed to benchmarks/Shiny.DocumentDb.Benchmarks/InsertBenchmarks.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
using Shiny.DocumentDb.Sqlite;
55
using SQLite;
66

7-
namespace Shiny.SqliteDocumentDb.Benchmarks;
7+
namespace Shiny.DocumentDb.Benchmarks;
88

99
[MemoryDiagnoser]
1010
public class InsertBenchmarks

benchmarks/Shiny.SqliteDocumentDb.Benchmarks/Models.cs renamed to benchmarks/Shiny.DocumentDb.Benchmarks/Models.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using System.Text.Json.Serialization;
22
using SQLite;
33

4-
namespace Shiny.SqliteDocumentDb.Benchmarks;
4+
namespace Shiny.DocumentDb.Benchmarks;
55

66
public class BenchmarkUser
77
{

0 commit comments

Comments
 (0)