Jay Brown
8e9889accc
Merged in bugfix/pdf-verification (pull request #218 )
...
fix pdf checking
* fix pdf checking
https://aarete.atlassian.net/browse/DEVOPS-651
2026-03-20 18:56:21 +00:00
Jay Brown
19a28fef17
Merged in bugfix/auth-permit (pull request #217 )
...
permit.io fix
* permit.io fix
2026-03-19 15:22:07 +00:00
Jay Brown
2eff52877b
Merged in feature/download-pdf (pull request #216 )
...
retrieve document by id and tests
* working
* missing files
2026-03-17 17:06:57 +00:00
Jay Brown
aafe7d5b5f
Merged in feature/batch-status (pull request #215 )
...
Implement and test the batch status feature
* working
2026-03-12 18:53:42 +00:00
Jacob Mathison
8a4029058b
Merged in jmathison/demo-table (pull request #213 )
...
Add demo dashboard settings table and CRUD API
* Add demo dashboard settings table and CRUD API
- Migration 00000000000123: create demoDashboardSettings table (id, guid, key, value JSONB, isDeleted, timestamps)
- SQLC queries and repository for create, list, listByGuid, get, update, soft delete
- OpenAPI paths and schemas in queryAPI.yaml; regenerate api.gen.go (embedded spec)
- Handlers in api/queryAPI/demodashboardsettings.go; ConfigProvider GetDBQueries for repo access
- Unit tests for demo dashboard settings CRUD
* Fix sqlc-generated demo dashboard setting types
Align demo dashboard settings handlers with sqlc output (DemoDashboardSetting model + pointer slices) so CI codegen/build succeeds.
* Fix CI gosec and gofmt issues
- Suppress gosec G115 for TotalCount len->int32 cast (consistent with other list endpoints)
- gofmt mock GetDBQueries() in test helpers
* gofmt query API demo settings
* Tighten demo dashboard settings OpenAPI constraints
* Regenerate query API embedded spec
* refactor: generic UI settings (table, API, service) and three-layer architecture
- Replace demo-dashboard-settings with generic UI settings:
- Table uiSettings with namespace (was guid), key, value JSONB; UNIQUE(namespace, key)
- Migration 123: create_ui_settings (single migration, no rename)
- OpenAPI: /ui-settings, UISettingsService, UISetting schemas with namespace
- API types and handlers: CreateUISetting, ListUISettings, GetUISetting, UpdateUISetting, DeleteUISetting
- Add service layer (architecture fix):
- internal/uisettings: Service with Create, List, ListByNamespace, Get, Update, SoftDelete
- Controllers call s.svc.UISettings only; remove GetDBQueries from queryAPI ConfigProvider
- Wire UISettings in Services, main.go, and testutils
- Repository: uisettings.sql + uisettings.sql.go, UISetting model; remove demodashboardsettings
- Controller: uisettings.go (replaces demodashboardsettings.go), ErrNotFound from uisettings package
- Tests: uisettings_test.go with namespace-based list/cre…
* Add UISetting model and generated queries for uiSettings table
- models.go: add UISetting struct (sqlc 1.30.0)
- uisettings.sql.go: generated CRUD for ui_settings feature
Made-with: Cursor
* Use repository.UiSetting to match sqlc-generated type
- service and API use repository.UiSetting (sqlc struct name for uiSettings table)
- uisettings.sql.go: keep CreateUISetting/GetUISetting etc. from query names, return *UiSetting
- Fixes Docker/CI build undefined repository.UISetting
* Fix import formatting for golangci-lint
* Lint fix
* uisettings list test
* tests fixes
* Merge main: resolve api.gen.go conflicts (UI settings + DeleteDocument)
* Doc updates and elimination of index redundancy
Approved-by: Jay Brown
2026-03-04 23:00:50 +00:00
Jay Brown
09c61ea9b4
Merged in feature/add-deletes (pull request #214 )
...
support delete for client, document and folder
* support delete
for client, document and folder
* remove batch cancel conflict
not used
Approved-by: Jacob Mathison
2026-03-04 18:30:13 +00:00
Jay Brown
62b5de5722
Merged in bug/eula-email (pull request #212 )
...
fix eula issue when email not present in jwt
* bug fix
2026-02-26 21:46:00 +00:00
Jay Brown
c668485e6f
Merged in feature/cognito-shared-environments (pull request #211 )
...
cognito and permit shared prod environment support
* code complete
* user creattion tool
test harness
2026-02-26 12:33:35 +00:00
Jay Brown
6dccf494f8
Merged in feature/permit-policy-cleanup (pull request #210 )
...
cleanup permit policies and correct documentation
* docs
* policy cleanup
* refactor
* Merge remote-tracking branch 'origin/feature/permit-policy-cleanup' into feature/permit-policy-cleanup
* docs and edits
2026-02-19 20:22:59 +00:00
Jay Brown
58912a66d4
Merged in feature/support-empty-email-jwt (pull request #209 )
...
handle missing email in jwt
* handle missing email
2026-02-13 01:38:32 +00:00
Jay Brown
d7f6c3700b
Merged in feature/local-pdp (pull request #208 )
...
permit.io local pdp
* docs and testing
* build fix
* docs
* permit rights
* accept self signed certs
* fix eula error
2026-02-12 23:46:53 +00:00
Jay Brown
963ccc6553
Merged in feature/demo-support (pull request #207 )
...
Feature/demo support
* index logs now debug
* demo data loader
2026-02-02 19:08:08 +00:00
Jay Brown
63c12a2f44
Merged in feature/eula.part1 (pull request #206 )
...
eula support
* eula support
* docs
2026-01-22 18:17:27 +00:00
Jay Brown
c10fa98d0a
Merged in feature/restore-migrations-v2 (pull request #205 )
...
Restore original migrations (001-120) to fix schema_migrations version mismatch
* Restore original migrations (001-120) to fix schema_migrations version mismatch
The previous migration collapse broke deployed databases because:
- Dev database was at version 120 (the real remove_text_extraction migration)
- Main had collapsed migrations (001-012) + stub files (119_stub, 120_stub)
- The migrate tool couldn't find version 119/120 with matching content
This commit restores the original 27 migrations (versions 001-120) from
before the collapse, ensuring backward compatibility with existing databases.
2026-01-15 23:18:53 +00:00
Jay Brown
3639af8b84
Merged in feature/reset-db-version (pull request #203 )
...
fix db version
* fix db version
2026-01-15 21:37:50 +00:00
Jay Brown
35d72fccbe
Merged in feature/remove-mocks (pull request #202 )
...
Feature/remove mocks
* remove mocks
* cleanup db migrations
2026-01-15 20:39:32 +00:00
Jay Brown
0ddae4f91e
Merged in feature/remove-query (pull request #201 )
...
remove query from codebase part 1
* remove query
* fix localstack run
2026-01-14 17:59:04 +00:00
Jay Brown
ebf47c6013
Merged in feature/track-filesize (pull request #200 )
...
track file sizes for all documents in system
* feature complete
needs dev testing
2026-01-12 17:46:07 +00:00
Jay Brown
4ad8168f35
Merged in feature/setup_docs (pull request #199 )
...
docs for new env setup
* docs for new env setup
* lint fix
* docs
2026-01-07 19:35:53 +00:00
Jay Brown
b779ebc32f
Merged in feature/cicd_resources (pull request #198 )
...
increase memory for builds
* increase memory
2025-12-16 18:41:58 +00:00
Jay Brown
dae7bd4cc6
Merged in feature/textExtractionsPart4 (pull request #197 )
...
implement GET /identity
* GET /identity
2025-12-16 04:26:06 +00:00
Jay Brown
ab7072ac90
Merged in feature/permit.api.keys (pull request #196 )
...
permit keys
* permit keys
use the environment from the api key if requested
2025-12-11 22:18:42 +00:00
Jay Brown
8c218f162b
Merged in feature/textExtractionsPart3 (pull request #195 )
...
enrich doc responses
* enrich doc responses
2025-12-11 14:25:51 +00:00
Jay Brown
a94637ab13
Merged in feature/fix_test_timeouts (pull request #194 )
...
text extractions tests
* increase timeout
for slow ci/cd systems
* add tests
2025-12-04 22:45:15 +00:00
Jay Brown
3bdc27f4de
Merged in feature/textExtractionsPart2 (pull request #193 )
...
Continue finishing the parts of the text extraction plan
* add missing fields
2025-12-02 19:13:08 +00:00
Jay Brown
c45e1dd427
Merged in feature/textExtractionsPart1 (pull request #192 )
...
all schema and rest apis for text extraction support
* in progress
* stage 8 complete
* phase 9 completed
* phase 9 complete
* ongoing - s3 path fix
* working
* optimize ci build
* e2e tests
* missing test
2025-11-26 19:23:42 +00:00
Jay Brown
2b43799f56
Merged in feature/admin-api (pull request #191 )
...
admin api and associated tools
* in progress
admin api started and permit.io setup tool started
* docs
* build fix
* integration tests passing
* new permit variables
* fix permit
* fix delete regex
* fix delete response
* docs
* docs
2025-10-23 22:57:15 +00:00
Jay Brown
7638fd3a90
Merged in feature/rate-limiting (pull request #190 )
...
Implement global and per ip rate limiting
* all tests passing
* test fix
* Enhances test environment for rate limiting
Updates the test environment to better support rate limiting tests.
- Increases rate limits in test container to avoid interference with legitimate test traffic.
- Increases the polling interval for client status checks to reduce load on the rate limiter.
- Adds logic to retry status checks if rate limiting is encountered.
* Merge branch 'main' of bitbucket.org:aarete/query-orchestration into feature/rate-limiting
* build fix
* test fix
2025-10-13 22:13:15 +00:00
Jay Brown
4783b8420a
Merged in feature/init-runner-decode (pull request #189 )
...
Feature/init runner decode
* comment
* Merge remote-tracking branch 'origin/main'
* init runner decode
Approved-by: Mark Tomcza
2025-10-08 23:12:51 +00:00
Jay Brown
4525440edb
Merged in feature/decode-sqs-messages (pull request #188 )
...
decode and filter sqs messages
* decode and filter
* code coverage
2025-10-07 20:40:53 +00:00
Jay Brown
bd5d589886
Merged in feature/deployment-docs (pull request #187 )
...
deployment docs
* deployment docs
* branding on api page
2025-10-06 17:20:21 +00:00
Jay Brown
c9eef574c0
Merged in feature/expose-version (pull request #186 )
...
expose version to api
* expose version
2025-09-19 19:18:37 +00:00
Jay Brown
a6e081e5cd
Merged in feature/log-version (pull request #185 )
...
inject and print version at startup for all services
* inject and print version
* coverage
2025-09-18 21:06:21 +00:00
Jay Brown
8a13b6d3b1
Merged in feature/aws-config-fix3 (pull request #184 )
...
Make AWS variables optional
* comment
* aws vars optional
2025-09-17 18:12:51 +00:00
Jay Brown
6c209e5a81
Merged in feature/config-docs (pull request #181 )
...
update docs to reflect all environment variables required and optional
* list all env vars
2025-09-15 18:05:54 +00:00
Jay Brown
da6de0080b
Merged in feature/update-docs (pull request #180 )
...
Update complete pdf code for entire system
* docs
and code for generation of updated docs
2025-09-09 19:34:03 +00:00
Jay Brown
730f3ba11a
Merged in feature/preserve-folder-paths (pull request #179 )
...
support folder paths
* support folder paths
* s3 storage docs
2025-09-05 18:25:31 +00:00
Jay Brown
0ad41de26b
Merged in feature/textract-fix (pull request #178 )
...
fix textract accuracy issue
* fix textract
2025-09-03 20:43:27 +00:00
Jay Brown
720a84be92
Merged in feature/doc_import (pull request #177 )
...
integration of background processor
* integration part 1
* feature working
* fix mimetype issue
2025-08-20 19:01:13 +00:00
jay brown
7a693d42f5
background runner
2025-08-12 06:37:16 -07:00
jay brown
a8e1095abc
manual tests
2025-08-08 12:38:43 -07:00
jay brown
7014fa790b
batch upload impl
2025-08-06 15:06:18 -07:00
jay brown
fac5615c15
bump pipeline ram
2025-08-05 10:51:35 -07:00
jay brown
3de3d0a7b3
swagger part 1
2025-08-05 07:03:35 -07:00
jay brown
56fb9b4ab6
schema
2025-08-04 10:54:22 -07:00
jay brown
582e5b77c0
docs
2025-08-01 13:35:29 -07:00
jay brown
105339aa40
http.secure=true
2025-07-23 09:54:20 -07:00
jay brown
fa41884e84
package docs
2025-07-23 09:47:01 -07:00
jay brown
00a46eb629
fix incremental logic
2025-07-22 11:42:47 -07:00
jay brown
a9d81a1094
remove parallel
...
remove parallel to stabilize ci/cd
2025-07-22 10:29:44 -07:00