Skip to content
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

Prepare for Release (v1.9.8) #60

Merged
merged 2 commits into from
Feb 28, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .changeset/blue-parrots-brush.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/chubby-candies-clean.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/eager-days-camp.md

This file was deleted.

11 changes: 0 additions & 11 deletions .changeset/early-oranges-flash.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/eleven-dragons-sink.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/fifty-buckets-leave.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/free-knives-pick.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/open-emus-pump.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/public-impalas-invent.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/smart-spies-return.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/warm-ravens-wish.md

This file was deleted.

12 changes: 0 additions & 12 deletions .changeset/wide-bears-invite.md

This file was deleted.

20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
# Changelog

## [1.9.8]

### Enhancements
- UI Fix for multi file upload and alignment
- Checkbox to Button for Enhance with AI for Root Requirements, User Stories and Tasks
- Allow users to export PRD (with stories and tasks), BRD, NFR, UIR and BP requirements
- Refactored the LLM module and added support for additional Bedrock models
- Font Updates and Styling Updates to Welcome Page
- Update methods to include AI in requirement, user story and task updates
- Removed FooterComponent and added new settings modal with improved UI and logout functionality
- Updated Header component layout, removed buttons and changed color scheme from secondary to slate
- Added company logo color configuration in environment files
- Updated branding from HAI BUILD to Specifai across configuration, assets, documentation and app description

### Fixed
- Fix for task chat to stay on same page
- Margin and disable buttons for invalid forms
- Keep the user on the same page after business process update
- Prevent solution creation with spaces-only input in required fields by trimming values before form submission

## [1.9.7]

### Enhancements
Expand Down
2 changes: 1 addition & 1 deletion electron/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "specif_ai",
"version": "1.9.7",
"version": "1.9.8",
"description": "AI-powered requirements management and specification platform",
"productName": "Specifai",
"main": "app.js",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "specif-ai",
"displayName": "Specifai",
"version": "1.9.7",
"version": "1.9.8",
"description": "AI-powered platform that generates project requirements and transforms them into actionable tasks with intuitive workflows.",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ui",
"version": "1.9.7",
"version": "1.9.8",
"scripts": {
"ng": "ng",
"start": "ng serve",
Expand Down
2 changes: 1 addition & 1 deletion ui/src/environments/environment.development.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export const environment = {
JIRA_RATE_LIMIT_CONFIG: 9,
ENABLE_SENTRY: false,
DEBUG_MODE: false,
APP_VERSION: '1.9.7',
APP_VERSION: '1.9.8',
ThemeConfiguration: {
appLogo: 'assets/img/logo/specifai_light_applogo.svg',
appLogoDark: 'assets/img/logo/specifai_dark_applogo.svg',
Expand Down
2 changes: 1 addition & 1 deletion ui/src/environments/environment.prod.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export const environment = {
JIRA_RATE_LIMIT_CONFIG: 9,
ENABLE_SENTRY: false,
DEBUG_MODE: false,
APP_VERSION: '1.9.7',
APP_VERSION: '1.9.8',
ThemeConfiguration: {
appLogo: 'assets/img/logo/specifai_light_applogo.svg',
appLogoDark: 'assets/img/logo/specifai_dark_applogo.svg',
Expand Down
2 changes: 1 addition & 1 deletion ui/src/environments/environment.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export const environment = {
ENABLE_SENTRY: false,
DEBUG_MODE: true,
JIRA_RATE_LIMIT_CONFIG: 9,
APP_VERSION: '1.9.7',
APP_VERSION: '1.9.8',
ThemeConfiguration: {
appLogo: 'assets/img/logo/specifai_light_applogo.svg',
appLogoDark: 'assets/img/logo/specifai_dark_applogo.svg',
Expand Down