Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
80749a6
Add GitHub repository configuration and register DevPullCommand
sak0a Feb 7, 2026
cf01adb
Update version to 1.2.4 and add `notur:dev:pull` command for GitHub i…
sak0a Feb 7, 2026
07a5b54
Fix package manager detection for npm
sak0a Feb 7, 2026
2dc875a
Initial plan
Copilot Feb 7, 2026
561ddc9
Initial plan
Copilot Feb 7, 2026
4ff91e4
Initial plan
Copilot Feb 7, 2026
225282a
Initial plan
Copilot Feb 7, 2026
c95e10f
Update src/Console/Commands/DevPullCommand.php
sak0a Feb 7, 2026
6dfbe8f
Add error checking for rename() calls in DevPullCommand
Copilot Feb 7, 2026
c60079d
Add integration tests for DevPullCommand with mocked GitHub API
Copilot Feb 7, 2026
e05c8f9
Improve error messages to include both source and destination paths
Copilot Feb 7, 2026
69580c2
Make error messages consistent between preserve and restore operations
Copilot Feb 7, 2026
3ccdccb
Fix test expectation for specific commit SHA format
Copilot Feb 7, 2026
1aa052f
URL-encode branch names in DevPullCommand to handle slashes
Copilot Feb 7, 2026
f9deadd
Merge branch 'feature/dev-pull-command' into copilot/sub-pr-18
sak0a Feb 7, 2026
f3ee41a
Merge pull request #19 from sak0a/copilot/sub-pr-18
sak0a Feb 7, 2026
ba5be63
Merge pull request #20 from sak0a/copilot/sub-pr-18-again
sak0a Feb 7, 2026
d03cfeb
Add cleanup of temp directory on extraction failure
Copilot Feb 7, 2026
e8b0545
Merge pull request #21 from sak0a/copilot/sub-pr-18-another-one
sak0a Feb 7, 2026
29e9587
Merge pull request #23 from sak0a/copilot/sub-pr-18-one-more-time
sak0a Feb 7, 2026
63d6ef4
Refactor DevPullCommand to improve client resolution and error handling
sak0a Feb 7, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ npm run test:frontend # Jest tests

**Database tables:** `notur_extensions`, `notur_migrations`, `notur_settings`, `notur_activity_logs` (migrations in `database/migrations/`).

**Artisan commands** (16 total in `src/Console/Commands/`): `notur:install`, `notur:remove`, `notur:enable`, `notur:disable`, `notur:list`, `notur:update`, `notur:dev`, `notur:build`, `notur:export`, `notur:registry:sync`, `notur:uninstall`, `notur:new`, `notur:validate`, `notur:status`, `notur:keygen`, `notur:registry:status`.
**Artisan commands** (17 total in `src/Console/Commands/`): `notur:install`, `notur:remove`, `notur:enable`, `notur:disable`, `notur:list`, `notur:update`, `notur:dev`, `notur:dev:pull`, `notur:build`, `notur:export`, `notur:registry:sync`, `notur:uninstall`, `notur:new`, `notur:validate`, `notur:status`, `notur:keygen`, `notur:registry:status`.

### Frontend Bridge (`bridge/src/`)

Expand Down
13 changes: 12 additions & 1 deletion config/notur.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
| Notur Version
|--------------------------------------------------------------------------
*/
'version' => '1.2.3',
'version' => '1.2.4',

/*
|--------------------------------------------------------------------------
Expand All @@ -30,6 +30,17 @@
*/
'require_signatures' => false,

/*
|--------------------------------------------------------------------------
| GitHub Repository
|--------------------------------------------------------------------------
|
| The GitHub owner/repo for the Notur framework source code.
| Used by notur:dev:pull to download unreleased commits.
|
*/
'repository' => 'sak0a/notur',

/*
|--------------------------------------------------------------------------
| Registry URL
Expand Down
Loading