-
Notifications
You must be signed in to change notification settings - Fork 5
chore: sync hotfix/v1.1.5 into staging #788
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
29 commits
Select commit
Hold shift + click to select a range
385c974
fix(deploy): prevent App Engine request starvation under burst load
jirhiker fec7dbd
Merge pull request #754 from DataIntegrationGroup/fix/hotfix-gae-scaling
jirhiker 4c08a5c
chore(hotfix/v1.1.1): release 1.1.1
github-actions[bot] 6c35bf0
Merge pull request #755 from DataIntegrationGroup/release-please--bra…
jirhiker 790377f
fix(deploy): align hotfix migration head with production DB + fix rel…
jirhiker 4f681d7
Formatting changes
jirhiker 1ee8a4b
Merge pull request #757 from DataIntegrationGroup/fix/hotfix-align-db…
jirhiker c737b69
chore(hotfix/v1.1.1): release 1.1.2
github-actions[bot] 7547d63
Merge pull request #758 from DataIntegrationGroup/release-please--bra…
jirhiker 2ed12b6
fix: stop per-request OOM on /geospatial export endpoint
jirhiker 51ad009
chore: sync uv.lock with pyproject version bump
jirhiker fa727c4
fix: drop yield_per in get_thing_features (incompatible with unique)
jirhiker f63d9ce
fix: correct shapefile DBF schema and clean up temp dir on failure
jirhiker 877fff8
fix: stream get_thing_features with yield_per instead of buffering
jirhiker d3a1358
Merge pull request #762 from DataIntegrationGroup/hotfix/geospatial-oom
jirhiker a0cd23f
chore(hotfix/v1.1.3): release 1.1.3
github-actions[bot] 2c4c55c
Merge pull request #763 from DataIntegrationGroup/release-please--bra…
jirhiker 1a11ee9
fix(ci): deploy on inline workflow_call to CD (Production)
jirhiker 474df42
fix(ci): deploy on inline workflow_call to CD (Production)
jirhiker 8371f64
Merge pull request #765 from DataIntegrationGroup/fix/cd-prod-deploy-…
jirhiker f2e44b6
chore(hotfix/v1.1.3): release 1.1.4
github-actions[bot] 37ba8e7
Merge pull request #768 from DataIntegrationGroup/release-please--bra…
jirhiker aa08f39
Merge pull request #766 from DataIntegrationGroup/fix/cd-prod-deploy-…
jirhiker ec012d6
fix(deploy): raise instance class to F4_1G to stop OOM instance churn
jirhiker 591d82a
chore(hotfix/v1.1.5): release 1.1.5
github-actions[bot] a9f1e2b
Merge pull request #770 from DataIntegrationGroup/release-please--bra…
jirhiker 3d32109
chore: back-merge hotfix/v1.1.5 into production
jirhiker cafbadb
chore: sync hotfix/v1.1.5 (via production) into staging
jirhiker 4f80941
chore: sync uv.lock root version to 1.1.5
jirhiker 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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,3 @@ | ||
| { | ||
| ".": "1.1.0" | ||
| ".": "1.1.5" | ||
| } |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In the PR test workflow I checked,
.github/workflows/tests.ymlinstalls withuv sync --locked --all-extras --dev, anduv sync --helpsays--lockedasserts thatuv.lockremains unchanged. This line bumps the project to1.1.5while the committeduv.lockstill records the editableocotilloapipackage at1.1.0, so any PR intostagingorproductionwill fail during dependency installation before tests run; re-runuv lockor keep these versions in sync.Useful? React with 👍 / 👎.