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

v1.0.0 #4424

Merged
merged 1 commit into from
Oct 22, 2024
Merged

v1.0.0 #4424

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
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
## v1.0.0 [2024-10-22]
_Breaking changes_

The mod functionality, which was previously deprecated and moved to Powerpipe, has been removed in this version.

- Removed the `check`, `dashboard`, `mod`, and `variable` commands. ([#4413](https://github.com/turbot/steampipe/issues/4413))
- Removed support for running named queries. ([#4416](https://github.com/turbot/steampipe/issues/4416))
- Removed the `watch` and `mod-location` CLI args from the `query` command. ([#4417](https://github.com/turbot/steampipe/issues/4417))
- Removed the `dashboard`, `dashboard-listen`, and `dashboard-port` CLI args from the `service` command. ([#4418](https://github.com/turbot/steampipe/issues/4418))
- Removed the `STEAMPIPE_MOD_LOCATION` and `STEAMPIPE_INTROSPECTION` env vars. ([#4419](https://github.com/turbot/steampipe/issues/4419))
- Removed support for deprecated `STEAMPIPE_CLOUD_HOST` and `STEAMPIPE_CLOUD_TOKEN` env vars. ([#4420](https://github.com/turbot/steampipe/issues/4420))
- Removed the `watch`, `introspection`, and `mod-location` workspace profile args. ([#4421](https://github.com/turbot/steampipe/issues/4421))
- Removed the `check` and `dashboard` options from workspace profiles. ([#4422](https://github.com/turbot/steampipe/issues/4422))
- Removed the `dashboard` option from global options (`default.spc`). ([#4423](https://github.com/turbot/steampipe/issues/4423))

## v0.24.2 [2024-09-13]
_Bug fixes_
- Fix incorrect versioning in v0.24.1. ([#4388](https://github.com/turbot/steampipe/issues/4388))
Expand Down
2 changes: 1 addition & 1 deletion pkg/version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ var steampipeVersion = "1.0.0"
// A pre-release marker for the version. If this is "" (empty string)
// then it means that it is a final release. Otherwise, this is a pre-release
// such as "dev" (in development), "beta", "rc1", etc.
var prerelease = "rc.4"
var prerelease = ""

// SteampipeVersion is an instance of semver.Version. This has the secondary
// benefit of verifying during tests and init time that our version is a
Expand Down
Loading