Skip to content

Commit 8a7c577

Browse files
authored
Release 0.25.0 (#225)
and remove 0.22.0 Also fixed semver sorting for pulling API tags.
1 parent 0b27ce4 commit 8a7c577

428 files changed

Lines changed: 9871 additions & 8288 deletions

File tree

Some content is hidden

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

api/fishjam-server

api/room-manager

docusaurus.config.ts

Lines changed: 10 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -65,12 +65,6 @@ function injectTypeDocSidebar(
6565
version: SidebarItemsGeneratorVersion,
6666
items: NormalizedSidebar,
6767
): NormalizedSidebar {
68-
const docs_without_python_reference = ["0.22.0"];
69-
70-
const exclude_python = docs_without_python_reference.includes(
71-
version.versionName,
72-
);
73-
7468
return items.map((item) => {
7569
if (item.customProps?.id === "generated-api" && item.type === "category") {
7670
const injectedItems: (CustomInjectedCategory | NormalizedSidebarItem)[] =
@@ -101,18 +95,16 @@ function injectTypeDocSidebar(
10195
},
10296
];
10397

104-
if (!exclude_python) {
105-
injectedItems.push({
106-
type: "category",
107-
label: "Server SDK for Python",
108-
items: [
109-
{
110-
type: "autogenerated",
111-
dirName: "api/server-python",
112-
},
113-
],
114-
});
115-
}
98+
injectedItems.push({
99+
type: "category",
100+
label: "Server SDK for Python",
101+
items: [
102+
{
103+
type: "autogenerated",
104+
dirName: "api/server-python",
105+
},
106+
],
107+
});
116108

117109
return {
118110
...item,

packages/web-client-sdk

Submodule web-client-sdk updated 49 files

scripts/update_api.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ASSETS_DIRECTORY="$CWD/static/api"
99

1010
# Get the last tag, that matches semantic versioning
1111
get_latest_semver_tag() {
12-
echo $(git tag -l | grep -E '^v?[0-9]+\.[0-9]+\.[0-9]+$' | sort -V | tail -n 1)
12+
git tag -l | grep -E '^v?[0-9]+\.[0-9]+\.[0-9]+$' | sed 's/^v//' | sort -V | tail -n 1 | xargs -I {} git tag -l "v{}" "{}" | head -n 1
1313
}
1414

1515
checkout_submodule() {

0 commit comments

Comments
 (0)