Skip to content

Commit

Permalink
fix release title
Browse files Browse the repository at this point in the history
  • Loading branch information
TobyDrane committed Feb 6, 2024
1 parent 3b92da8 commit 4b85157
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release_api.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release_sdk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -193,13 +193,13 @@ 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 --------------------
##
migrate-v7: ## Run the migration
@cd api/; ./batect migrate-v7 -- --layer ${layer} --all-layers ${all-layers}

serve-docs:
mkdocs serve
mkdocs serve
23 changes: 22 additions & 1 deletion docs/changelog/api.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 4b85157

Please sign in to comment.