-
Notifications
You must be signed in to change notification settings - Fork 13
Fix QueryFilter IN/NOT_IN serialization #205
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
Merged
Merged
Changes from all commits
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
eb9d2e5
Updating BushelCloud Subrepo (#195)
leogdion e650441
Fix QueryFilter IN/NOT_IN serialization to preserve type information …
leogdion 99d3285
Add demo-in-filter command and fix MistDemo auth model
leogdion cc3f60c
Fix IN/NOT_IN filter by adding required CloudKit list type field
leogdion a084e00
git subrepo push Examples/BushelCloud
leogdion ecce30d
git subrepo push Examples/CelestraCloud
leogdion 60b9869
Add setup-mistkit composite action to BushelCloud and CelestraCloud
leogdion 4482a48
Switch example workflows to MistKit branch 192-query-filter-in
leogdion 9472950
Move MistKit branch to action default, remove from workflow call sites
leogdion 2dafb14
git subrepo push Examples/BushelCloud
leogdion bd9635d
git subrepo push Examples/CelestraCloud
leogdion 833f2ff
Run setup-mistkit before fallback build in cloudkit-sync action
leogdion c85fde5
git subrepo push Examples/BushelCloud
leogdion eba9065
Remove stale workflow_run trigger from cloudkit-sync-dev
leogdion 5d3e331
git subrepo push Examples/BushelCloud
leogdion 962a560
Handle duplicate GUIDs in CloudKit data gracefully
leogdion 9d8729b
git subrepo push Examples/CelestraCloud
leogdion 10c4088
Assert listType in IN/NOT_IN filter tests
leogdion e8a3a19
Address PR #205 review comments
leogdion eb49e88
git subrepo push Examples/CelestraCloud
leogdion 401cf27
undoing some file changes
leogdion 706f476
Revert CLOUDKIT_WEB_AUTH_TOKEN → CLOUDKIT_WEBAUTH_TOKEN
leogdion 539895a
Revert "Revert CLOUDKIT_WEB_AUTH_TOKEN → CLOUDKIT_WEBAUTH_TOKEN"
leogdion 2e99f9f
Fix token expiration boundary check to treat exact-time expiry as exp…
leogdion File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
|
leogdion marked this conversation as resolved.
|
This file was deleted.
Oops, something went wrong.
|
leogdion marked this conversation as resolved.
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,26 @@ | ||
| name: Setup MistKit | ||
| description: Replaces the local MistKit path dependency with a remote branch reference | ||
|
|
||
| inputs: | ||
| branch: | ||
| description: MistKit branch to use (leave empty to keep the local path dependency) | ||
|
|
||
| runs: | ||
| using: composite | ||
| steps: | ||
| - name: Update Package.swift (Unix) | ||
| if: inputs.branch != '' && runner.os != 'Windows' | ||
| shell: bash | ||
| run: | | ||
| if [ "$RUNNER_OS" = "macOS" ]; then | ||
| sed -i '' 's|\.package(name: "MistKit", path: "\.\./\.\.")|.package(url: "https://github.com/brightdigit/MistKit.git", branch: "'"${{ inputs.branch }}"'")|g' Package.swift | ||
| else | ||
| sed -i 's|\.package(name: "MistKit", path: "\.\./\.\.")|.package(url: "https://github.com/brightdigit/MistKit.git", branch: "'"${{ inputs.branch }}"'")|g' Package.swift | ||
| fi | ||
| rm -f Package.resolved | ||
| - name: Update Package.swift (Windows) | ||
| if: inputs.branch != '' && runner.os == 'Windows' | ||
| shell: pwsh | ||
| run: | | ||
| (Get-Content Package.swift) -replace '\.package\(name: "MistKit", path: "\.\./\.\."\)', ".package(url: `"https://github.com/brightdigit/MistKit.git`", branch: `"${{ inputs.branch }}`")" | Set-Content Package.swift | ||
| Remove-Item -Path Package.resolved -Force -ErrorAction SilentlyContinue |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.