diff --git a/.github/workflows/release_api.yml b/.github/workflows/release_api.yml index 486c4e3..ad72b9f 100644 --- a/.github/workflows/release_api.yml +++ b/.github/workflows/release_api.yml @@ -6,7 +6,7 @@ on: jobs: setup: - if: github.event.release.name == 'api release' + if: "${{ startsWith(github.event.release.name, 'API: ') }}" runs-on: self-hosted steps: - name: Checkout diff --git a/.github/workflows/release_sdk.yml b/.github/workflows/release_sdk.yml index df17650..10b0a71 100644 --- a/.github/workflows/release_sdk.yml +++ b/.github/workflows/release_sdk.yml @@ -6,7 +6,7 @@ on: jobs: setup: - if: github.event.release.name == 'sdk release' + if: "${{ startsWith(github.event.release.name, 'SDK: ') }}" runs-on: self-hosted steps: - name: Checkout diff --git a/Makefile b/Makefile index 55d71ca..52e6005 100644 --- a/Makefile +++ b/Makefile @@ -193,8 +193,8 @@ release: @git checkout - @git push origin ${version} @python release.py --operation create-changelog --type ${type} - @gh release create ${version} -F latest_release_changelog_${type}.md -t "${type} release" - @rm -rf latest_release_changelog_${type}.md + @gh release create ${version} -F latest_release_changelog_${type}.md -t "${type^^} ${version}" + @rm -rf latest_release_changelog_${type}.mds # Migration -------------------- ## @@ -202,4 +202,4 @@ migrate-v7: ## Run the migration @cd api/; ./batect migrate-v7 -- --layer ${layer} --all-layers ${all-layers} serve-docs: - mkdocs serve \ No newline at end of file + mkdocs serve diff --git a/docs/changelog/api.md b/docs/changelog/api.md index 5d12c92..6132ea0 100644 --- a/docs/changelog/api.md +++ b/docs/changelog/api.md @@ -2,6 +2,26 @@ # Changelog +## v7.0.9 - _2024-02-06_ + +See [v7.0.9] changes + +### Features + +- Ability to pass a custom regex for username validation. See the documentation on the [`custom_user_name_regex`](https://rapid.readthedocs.io/en/latest/infrastructure/deployment/#usage) variable. +- Decoupled API & SDK into separate releases. +- New optional infrastructure variables to increase cpu and memory limits for the API container. See the [infrastructure variables for more information](https://rapid.readthedocs.io/en/latest/infrastructure/deployment/#usage). +- Upgraded `browserify-sign` from 4.2.1 to 4.2.2. +- Upgraded `@adobe/css-tools` from 4.3.1 to 4.3.2. + +### Fixes + +- Issue with the last updated date on datasets being 'Never Updated'. + +### Breaking Changes + +### Migration + ## v7.0.8 - _2023-11-15_ ### Fixes @@ -93,7 +113,8 @@ - See the [migration doc](migration.md) for details on how to migrate to v7 from v6. -[Unreleased changes]: https://github.com/no10ds/rapid/compare/v7.0.8...HEAD +[Unreleased changes]: https://github.com/no10ds/rapid/compare/v7.0.9...HEAD +[v7.0.9]: https://github.com/no10ds/rapid/compare/v7.0.8...v7.0.9 [v7.0.8 / v0.1.6 (sdk)]: https://github.com/no10ds/rapid/v7.0.7...v7.0.8 [v7.0.7 / v0.1.5 (sdk)]: https://github.com/no10ds/rapid/v7.0.6...v7.0.7 [v7.0.6 / v0.1.4 (sdk)]: https://github.com/no10ds/rapid/v7.0.5...v7.0.6