Skip to content

Commit 6f2dee5

Browse files
brian-husseylucarligmadhu-mohan-jaishankar
authored
[chore] Release version 1.0.0 (#4551)
* Update reference from tools_rust to crates in bumpversion.cfg Signed-off-by: Brian Hussey <brian.hussey@ie.ibm.com> * Update version in root Cargo.toml file and reference in .bumpversion.cfg Signed-off-by: Brian Hussey <brian.hussey@ie.ibm.com> * Update secrets Signed-off-by: Brian Hussey <brian.hussey@ie.ibm.com> * Update base image versions Signed-off-by: Brian Hussey <brian.hussey@ie.ibm.com> * Corrected version of UUI dependency Signed-off-by: Brian Hussey <brian.hussey@ie.ibm.com> * Linting updates to requirements.txt files Signed-off-by: Brian Hussey <brian.hussey@ie.ibm.com> * Correct linting issues Signed-off-by: Brian Hussey <brian.hussey@ie.ibm.com> * Update front end dependencies Signed-off-by: Brian Hussey <brian.hussey@ie.ibm.com> * Update npm deps and black finding Signed-off-by: Brian Hussey <brian.hussey@ie.ibm.com> * License updates and linting issues Signed-off-by: Brian Hussey <brian.hussey@ie.ibm.com> * Update to not fail on test setup Signed-off-by: Brian Hussey <brian.hussey@ie.ibm.com> * docs: fix release PII tool invocation steps (#4521) * docs: fix release PII tool invocation steps Signed-off-by: lucarlig <luca.carlig@ibm.com> * docs: align release PII verification steps Signed-off-by: lucarlig <luca.carlig@ibm.com> * docs: fix release docs build links Signed-off-by: lucarlig <luca.carlig@ibm.com> * docs: scope PII release check to tool hooks Signed-off-by: lucarlig <luca.carlig@ibm.com> * Revert "docs: fix release docs build links" This reverts commit 88c4b7b. Signed-off-by: lucarlig <luca.carlig@ibm.com> * docs: use admin token for plugin status check Signed-off-by: lucarlig <luca.carlig@ibm.com> * docs: run discovered PII filter tests Signed-off-by: lucarlig <luca.carlig@ibm.com> * docs: remove PII unit test step Signed-off-by: lucarlig <luca.carlig@ibm.com> --------- Signed-off-by: lucarlig <luca.carlig@ibm.com> Signed-off-by: Brian Hussey <brian.hussey@ie.ibm.com> * docs: fix release docs build links (#4523) Signed-off-by: lucarlig <luca.carlig@ibm.com> Signed-off-by: Brian Hussey <brian.hussey@ie.ibm.com> * Update CHANGELOG with PR 4507 details Signed-off-by: Brian Hussey <brian.hussey@ie.ibm.com> * Update reference material Signed-off-by: Brian Hussey <brian.hussey@ie.ibm.com> * Alembic linearity fix (#4547) * Alembic linearity fix Signed-off-by: Brian Hussey <brian.hussey@ie.ibm.com> * fix: handle ix_/idx_ index name mismatch in migration downgrades Signed-off-by: Madhu Mohan Jaishankar <madhu.mohan.jaishankar@ibm.com> * Update alembic migration tools Signed-off-by: Brian Hussey <brian.hussey@ie.ibm.com> --------- Signed-off-by: Brian Hussey <brian.hussey@ie.ibm.com> Signed-off-by: Madhu Mohan Jaishankar <madhu.mohan.jaishankar@ibm.com> Co-authored-by: Madhu Mohan Jaishankar <madhu.mohan.jaishankar@ibm.com> Signed-off-by: Brian Hussey <brian.hussey@ie.ibm.com> * fix(alembic): drop orphaned ix_token_revocations_token_expiry on downgrade Signed-off-by: Madhu Mohan Jaishankar <madhu.mohan.jaishankar@ibm.com> Signed-off-by: Brian Hussey <brian.hussey@ie.ibm.com> * Final Update to CHANGELOG.md Signed-off-by: Brian Hussey <brian.hussey@ie.ibm.com> * Correct final linting issues Signed-off-by: Brian Hussey <brian.hussey@ie.ibm.com> * Address final linting issues Signed-off-by: Brian Hussey <brian.hussey@ie.ibm.com> * Update cargo package details for cargo vet check Signed-off-by: Brian Hussey <brian.hussey@ie.ibm.com> * Correct test coverage within previously cleaned code audit_trail_service Signed-off-by: Brian Hussey <brian.hussey@ie.ibm.com> --------- Signed-off-by: Brian Hussey <brian.hussey@ie.ibm.com> Signed-off-by: lucarlig <luca.carlig@ibm.com> Signed-off-by: Madhu Mohan Jaishankar <madhu.mohan.jaishankar@ibm.com> Co-authored-by: Luca <luca.carlig@ibm.com> Co-authored-by: Madhu Mohan Jaishankar <madhu.mohan.jaishankar@ibm.com>
1 parent 6a793a9 commit 6f2dee5

1,237 files changed

Lines changed: 9858 additions & 8226 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.bumpversion.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 1.0.0-RC-3
2+
current_version = 1.0.0
33
commit = False
44
tag = False
55
sign-tags = True
@@ -21,7 +21,7 @@ replace = version="{new_version}"
2121
search = version = "{current_version}"
2222
replace = version = "{new_version}"
2323

24-
[bumpversion:file:tools_rust/wrapper/Cargo.toml]
24+
[bumpversion:file:Cargo.toml]
2525
search = version = "{current_version}"
2626
replace = version = "{new_version}"
2727

.github/tools/fix_file_headers.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -547,8 +547,10 @@ def process_file(
547547
new_header_lines = []
548548
# Always use correct location path
549549
new_header_lines.append(f"Location: ./{relative_path_str}")
550-
new_header_lines.append(existing_header_fields.get("Copyright") or f"Copyright {COPYRIGHT_YEAR}")
551-
new_header_lines.append(existing_header_fields.get("SPDX-License-Identifier") or f"SPDX-License-Identifier: {LICENSE}")
550+
# Always use the expected copyright year (don't preserve incorrect year)
551+
new_header_lines.append(f"Copyright {COPYRIGHT_YEAR}")
552+
# Always use the expected license (don't preserve incorrect license)
553+
new_header_lines.append(f"SPDX-License-Identifier: {LICENSE}")
552554
# Preserve existing Authors field if it exists, otherwise use the provided authors
553555
new_header_lines.append(existing_header_fields.get("Authors") or f"Authors: {authors}")
554556

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -533,7 +533,7 @@ repos:
533533
rev: 1.7.0 # or master if you're bold
534534
hooks:
535535
- id: interrogate
536-
args: [--quiet, --fail-under=100]
536+
args: [--fail-under=100]
537537
files: ^mcpgateway/
538538

539539
# -----------------------------------------------------------------------------

.pre-commit-lite.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -514,7 +514,7 @@ repos:
514514
rev: 1.7.0 # or master if you're bold
515515
hooks:
516516
- id: interrogate
517-
args: [--quiet, --fail-under=100]
517+
args: [--fail-under=100]
518518
files: ^mcpgateway/
519519
exclude: _pb2(_grpc)?\.py$
520520

0 commit comments

Comments
 (0)