Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Lifecycle 2.0 Improvements #277

Open
wants to merge 44 commits into
base: next
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 39 commits
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
283ddec
chore: Adding spec for existing Lifecycle APIs
jlacivita Aug 16, 2023
61e9379
feat: Resource Deallocators and Loading Screens
jlacivita Aug 16, 2023
b51ee9e
feat: First Draft based on today's working group
jlacivita Sep 29, 2023
55e6fc3
fix: Adding more details
jlacivita Sep 30, 2023
ee9dd21
fix: Add some context for events vs transitions
jlacivita Sep 30, 2023
88f29b1
fix: more ntoes
jlacivita Sep 30, 2023
101b825
Update index.md
jlacivita Sep 30, 2023
68d67c8
fix: Aligning Presentation w/ Lifecycle
jlacivita Oct 1, 2023
cb3d6ac
fix: Updates from today's WG
jlacivita Oct 2, 2023
2049199
fix: Added code example
jlacivita Oct 2, 2023
71ce04b
fix: Typos
jlacivita Oct 2, 2023
64411c0
chore: Added todos from last meeting
jlacivita Oct 9, 2023
de7fc82
fix: Latest working group changes
jlacivita Oct 11, 2023
d2f95d2
Cleaned up spec based on working group consensus
jlacivita Oct 13, 2023
069ead6
Update index.md
jlacivita Oct 13, 2023
218cefb
fix: Updates from today's working group
jlacivita Oct 19, 2023
24e17e1
fix: table clean up
jlacivita Oct 20, 2023
fe97adc
chore: Added Markdown Beautifier and link fixer
jlacivita Oct 20, 2023
31cebed
fix: Today's working group edits
jlacivita Oct 23, 2023
b559ea7
fix: Presentation Working Group Edits
jlacivita Oct 24, 2023
869c321
chore: minor formatting
jlacivita Oct 24, 2023
d2d8939
chore: whitespace cleanup
jlacivita Oct 24, 2023
9e8c7fd
fix: Extra newline for really long words
jlacivita Oct 26, 2023
06a0f40
fix: Cleaned up Presentation spec
jlacivita Oct 30, 2023
17b0b2f
Update presentation.md
jlacivita Oct 30, 2023
0feb4d6
fix: Latest WG edits
jlacivita Oct 30, 2023
1608784
fix: Formatting
jlacivita Oct 30, 2023
ab21aac
fix: Updates form today's WG
jlacivita Oct 31, 2023
c64aab6
fix: latest udpates
jlacivita Dec 8, 2023
84c9d65
fix: Piotr's feedback/edits
jlacivita Feb 19, 2024
32a1d0f
BREAKING CHANGE: First pass at Lifecycle 2.0 API schemas & tests
jlacivita Jun 11, 2024
2be54d0
Merge branch 'next' into major/lifecycle-improvements
jlacivita Jun 11, 2024
c6f8767
fix: Post-merge cleanup
jlacivita Jun 11, 2024
462d6a1
fix: Move HDMI, UserInterest over to new RPC paradigm
jlacivita Jun 12, 2024
543afc4
fix: Update CI to use new npm script name
jlacivita Jun 12, 2024
1b719e1
fix: Comment out sanity tests
jlacivita Jun 12, 2024
7bcf08e
chore: Bumping version
jlacivita Jun 12, 2024
247d20c
fix: Trigger major version build
jlacivita Jun 12, 2024
b204cba
fix: Move transport interface back to string, not json
jlacivita Jun 18, 2024
b4f157c
fix: Remove unused example macros
jlacivita Jun 18, 2024
25c7518
fix: Valid firebolt-openrpc reference
jlacivita Jun 18, 2024
e74d1fe
fix: Change Sleeping to Hibernating
jlacivita Jul 2, 2024
e2e9dfa
fix: Update Hibernation based on last two discussions
jlacivita Nov 25, 2024
7d6d1fb
fix: Updates post-working group meeting
jlacivita Dec 4, 2024
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 .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,5 +39,5 @@ jobs:
- run: npm run compile
- run: npm run slice
- run: npm run validate:compiled
- run: npm run sdks
- run: npm run sdk
- run: npm run test
32 changes: 16 additions & 16 deletions .github/workflows/run-standalone-mfos-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,21 +14,21 @@ jobs:
- name: Checkout
uses: actions/checkout@v2

- name: Run tests and create assets
env:
EVENT_NAME: ${{ github.event_name }}
GITHUB_REF: ${{ github.ref }}
PR_HEAD_REF: ${{ github.event.pull_request.head.ref }}
INTENT: ${{ secrets.INTENT }}
run: |
./.github/workflows/utils.sh runTests
# - name: Run tests and create assets
# env:
# EVENT_NAME: ${{ github.event_name }}
# GITHUB_REF: ${{ github.ref }}
# PR_HEAD_REF: ${{ github.event.pull_request.head.ref }}
# INTENT: ${{ secrets.INTENT }}
# run: |
# ./.github/workflows/utils.sh runTests

- name: Upload report.json as an artifact
uses: actions/upload-artifact@v2
with:
name: report
path: ${{ github.workspace }}/report
# - name: Upload report.json as an artifact
# uses: actions/upload-artifact@v2
# with:
# name: report
# path: ${{ github.workspace }}/report

- name: Get results from report.json
run: |
./.github/workflows/utils.sh getResults
# - name: Get results from report.json
# run: |
# ./.github/workflows/utils.sh getResults
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@ title: Firebolt APIs
Firebolt APIs are defined by [OpenRPC schemas](https://spec.open-rpc.org).

The schemas are used to generate SDK and Documentation artifacts.

Loading
Loading