Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
48 commits
Select commit Hold shift + click to select a range
30f2497
restructuring sdk-053-1
Cordtus Sep 13, 2025
89faf02
restucturing contd.
Cordtus Sep 14, 2025
6537ed5
update with restructure and cleanup
Cordtus Sep 15, 2025
b5b477c
update with restructure and cleanup
Cordtus Sep 15, 2025
dcf3319
clean up sdk, fix all redirects, organize nav sructure with cleanup
Cordtus Sep 16, 2025
b78b25e
improve migration
Cordtus Sep 16, 2025
9c6c248
remove fluff
Cordtus Sep 17, 2025
a5183ec
further improvements to migration script
Cordtus Sep 17, 2025
cc1d96c
finalize migration script
Cordtus Sep 17, 2025
c5b429d
inprove migration script with proper comments and async calls
Cordtus Sep 17, 2025
ca920eb
migration script finalized
Cordtus Sep 18, 2025
a4c4efd
import all sdk and ibc docs with full component and syntax conversions
Cordtus Sep 18, 2025
0d7bc9b
fix url handling in migration
Cordtus Sep 18, 2025
b18c5a9
remove jsdoc
Cordtus Sep 18, 2025
16a3644
update internal urls
Cordtus Sep 18, 2025
e67bb46
final fixes to eveything
Cordtus Sep 18, 2025
925d868
use old nav json for now
Cordtus Sep 18, 2025
19a16c1
fix filename
Cordtus Sep 18, 2025
82b40b4
change ICL reference -> Cosmos Labs, update contact form link
Cordtus Sep 18, 2025
3ebc834
test structure
Cordtus Sep 19, 2025
6e9a590
final draft
Cordtus Sep 19, 2025
bb28cfe
fix broken url path
Cordtus Sep 19, 2025
0d29f2d
fix urls and file structure, update navigation
Cordtus Sep 19, 2025
c33337f
correct relative links
Cordtus Sep 19, 2025
894bdd4
url fixing attempt 3
Cordtus Sep 19, 2025
f98cb23
more url fixes
Cordtus Sep 20, 2025
07b88be
link unbreaking
Cordtus Sep 20, 2025
c95f124
fix image urls
Cordtus Sep 20, 2025
cb4ceee
same
Cordtus Sep 20, 2025
a1ce714
more manual url fixes
Cordtus Sep 20, 2025
b0d16c2
remove deprecated page
Cordtus Sep 20, 2025
d2289d3
linky link
Cordtus Sep 20, 2025
2b4191c
almost done
Cordtus Sep 20, 2025
ea053dc
fix urls, add audit docs for evm/sdk/ibc, remove unnecessary callouts
Cordtus Sep 20, 2025
d28369f
adds development docs from ADR content, adds release notes to all ver…
Cordtus Sep 21, 2025
ccb509f
add invalid character handling to release notes script, update all re…
Cordtus Sep 21, 2025
7372fe2
push release notes update
Cordtus Sep 21, 2025
7e3de82
fix nav
Cordtus Sep 21, 2025
51ab530
reorg sdk v0.47, add audits to all versions that had them available
Cordtus Sep 21, 2025
d50ed96
all links and nav fixed
Cordtus Sep 21, 2025
29b59cc
make formatting of release notes pages consistent
Cordtus Sep 21, 2025
816bea2
add link to UNRELEASED in each release-notes page per product
Cordtus Sep 21, 2025
56b55a2
reroute ADR refs to github
Cordtus Sep 21, 2025
22b9555
further url fixes
Cordtus Sep 22, 2025
81ef861
fix formatting breaking acorn parser
Cordtus Sep 22, 2025
ac55991
update integration docs
Cordtus Sep 22, 2025
b5b55a0
add preliminary stateDb doc
Cordtus Sep 22, 2025
324d02f
create common section for shared pages, moved adr ref to common and a…
Cordtus Sep 23, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
8 changes: 4 additions & 4 deletions .github/workflows/auto-freeze-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,12 +50,12 @@ jobs:

- name: Install versioning dependencies
run: |
cd scripts/versioning
cd scripts
npm install

- name: Setup Google Sheets API credentials
run: |
echo '${{ secrets.GOOGLE_SERVICE_ACCOUNT_KEY }}' > scripts/versioning/service-account-key.json
echo '${{ secrets.GOOGLE_SERVICE_ACCOUNT_KEY }}' > scripts/service-account-key.json
echo "✓ Google Sheets API credentials configured"

- name: Run version freeze process
Expand All @@ -68,7 +68,7 @@ jobs:
export BATCH_MODE=true

# Run the automated version freeze
NEW_VERSION="$NEW_VERSION" node scripts/versioning/version-manager.js
NEW_VERSION="$NEW_VERSION" node scripts/version-manager.js

- name: Commit and create PR
run: |
Expand Down Expand Up @@ -128,4 +128,4 @@ jobs:
- name: Cleanup credentials
if: always()
run: |
rm -f scripts/versioning/service-account-key.json
rm -f scripts/service-account-key.json
2 changes: 1 addition & 1 deletion .github/workflows/sync-evm-changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:

- name: Parse and convert changelog
id: convert
run: node scripts/versioning/release-notes.js ${{ steps.fetch-changelog.outputs.release_tag }}
run: node scripts/release-notes.js ${{ steps.fetch-changelog.outputs.release_tag }}

- name: Update changelog file
run: |
Expand Down
8 changes: 4 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,9 @@ build/
.yarn/
# Keep most scripts ignored, but include versioning tools
scripts/*
!scripts/versioning/
!scripts/versioning/**
tests/*
!scripts/
!scripts/**
scripts/test/*
.ingress/
CLAUDE.md

Expand All @@ -79,7 +79,7 @@ CLAUDE.md

# Google Sheets API credentials
**/service-account-key.json
scripts/versioning/node_modules/
scripts/node_modules/

# Projects directory
.projects/
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Documentation for all parts of the Cosmos Stack.

- `docs/<product>/next/` - Active development documentation
- `docs/<product>/<version>` - Versioned documentation, by major release.
- `scripts/versioning/` - Versioning automation - see [README](scripts/versioning/README.md).
- `scripts/` - Versioning automation - see [README](/scripts).
- `snippets/` - Custom components - Due to platform limitations, components cannot be versioned. However, it is possible to feed specific / versioned data to a component through a prop in the import (see `docs/evm/v0.4.x/documentation/evm-compatibility/eip-reference.mdx` for a working example).

## Contributing
Expand Down
374 changes: 374 additions & 0 deletions adrs_data.json

Large diffs are not rendered by default.

3,936 changes: 2,472 additions & 1,464 deletions docs.json

Large diffs are not rendered by default.

Loading