Skip to content

Commit 71812fd

Browse files
authored
Merge branch 'main' into deanq/ae-1544-flash-init-correction
2 parents f1079ad + 11fd843 commit 71812fd

103 files changed

Lines changed: 22138 additions & 9534 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.

.github/pull_request_template.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ For breaking changes, use either:
2929

3030
**Good Examples ✅**
3131
```
32-
feat: add @remote decorator for CPU endpoints
32+
feat: add CPU endpoint support
3333
fix: resolve memory leak in resource cleanup
3434
perf: optimize GraphQL query batching
3535
docs: update installation instructions

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -191,3 +191,4 @@ cython_debug/
191191
test_app/
192192
pytest-results.xml
193193
coverage.xml
194+
/.pi

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "1.5.0"
2+
".": "1.6.0"
33
}

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11
# Changelog
22

3+
## [1.6.0](https://github.com/runpod/flash/compare/v1.5.0...v1.6.0) (2026-03-04)
4+
5+
6+
### Features
7+
8+
* **core:** replace hardcoded worker values with constants ([#201](https://github.com/runpod/flash/issues/201)) ([08375a1](https://github.com/runpod/flash/commit/08375a1631be5d84a2f61a394687238bb845085f))
9+
10+
11+
### Bug Fixes
12+
13+
* **deploy:** preserve networkVolume config through manifest pipeline ([#242](https://github.com/runpod/flash/issues/242)) ([d0e0a1f](https://github.com/runpod/flash/commit/d0e0a1f5358ac7cf985b4189997248f6ccf2c8e4))
14+
* **stubs:** resolve sibling module imports in dependency resolver ([#240](https://github.com/runpod/flash/issues/240)) ([eec4fba](https://github.com/runpod/flash/commit/eec4fbab2ee69ae82df2b493fba1715817849483))
15+
16+
17+
### Code Refactoring
18+
19+
* consolidate HTTP client factories with Content-Type headers ([#203](https://github.com/runpod/flash/issues/203)) ([f52ed84](https://github.com/runpod/flash/commit/f52ed84b8974bdff50edf404b1e9ec4f483702f3))
20+
321
## [1.5.0](https://github.com/runpod/flash/compare/v1.4.2...v1.5.0) (2026-02-27)
422

523

CONTRIBUTING.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ RUNPOD_API_KEY=your_api_key_here
3030
Get your API key from: https://docs.runpod.io/get-started/api-keys
3131

3232
**When is the API key needed?**
33-
- Remote execution features (`@remote` decorator)
33+
- Remote execution features (`Endpoint` class)
3434
- Resource deployment and management
3535
- Integration tests that interact with Runpod API
3636

@@ -204,7 +204,7 @@ BREAKING CHANGE: The old auth method is no longer supported
204204

205205
```bash
206206
# Good
207-
feat: add @remote decorator for CPU endpoints
207+
feat: add CPU endpoint support
208208
fix: resolve memory leak in resource cleanup
209209
docs: update installation instructions
210210
refactor: simplify resource manager singleton
@@ -342,13 +342,13 @@ make query-classes
342342
**Find specific symbol:**
343343

344344
```bash
345-
make query SYMBOL=ServerlessEndpoint
345+
make query SYMBOL=Endpoint
346346
```
347347

348348
**Get class interface (methods without implementations):**
349349

350350
```bash
351-
uv run python scripts/code_intel.py interface LiveServerless
351+
uv run python scripts/code_intel.py interface Endpoint
352352
```
353353

354354
**List symbols in a file:**

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2026 Runpod
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

0 commit comments

Comments
 (0)