From 5d4346325cd936be0bf25a50bed0046eb2bc423e Mon Sep 17 00:00:00 2001 From: Serge Smertin Date: Fri, 8 Nov 2024 17:41:32 +0100 Subject: [PATCH] Release v0.9.2 * Bump actions/checkout from 4.2.1 to 4.2.2 ([#160](https://github.com/databrickslabs/blueprint/issues/160)). In this release, the 'actions/checkout' dependency has been updated from version 4.2.1 to 4.2.2. This update includes changes to the 'url-helper.ts' file, which now utilizes well-known environment variables for improved reliability and maintainability. Additionally, unit test coverage for the `isGhes` function has been expanded. These changes are recommended for adoption to take advantage of the enhancements. The pull request includes a detailed changelog, commit history, and instructions for managing the update using Dependabot commands and options. * Bump databrickslabs/sandbox from acceptance/v0.3.1 to 0.4.2 ([#166](https://github.com/databrickslabs/blueprint/issues/166)). In the latest release, the `databrickslabs/sandbox` Python package has been updated from version acceptance/v0.3.1 to 0.4.2. This update includes new features such as installation instructions, additional go-git libraries, and modifications to the README file. Dependency updates include a bump in the version of `golang.org/x/crypto` used. The pull request for this update was created by a GitHub bot, Dependabot, which will manage any conflicts and respond to comments containing specific commands. It is essential to thoroughly review and test this updated version to ensure that the new methods and modifications to existing functionality do not introduce any issues or regressions, and that the changes are well-documented and justified. * Don't draft automated releases ([#159](https://github.com/databrickslabs/blueprint/issues/159)). In this release, the draft release feature in the GitHub Actions workflow has been disabled, enhancing the release process for software engineers. The 'draft: true' parameter has been removed from the `Draft release` job, which means that automated releases will now be published immediately upon creation instead of being created as drafts. This modification simplifies and streamlines the release process, making it more efficient for engineers who adopt the project. The change is aimed at reducing the time and effort required in manually publishing draft releases, thereby improving the overall experience for project contributors and users. * Updated custom `Path` support for python 3.13 ([#161](https://github.com/databrickslabs/blueprint/issues/161)). In this revision, the project's continuous integration (CI) workflow has been updated to include Python 3.13, enhancing compatibility and enabling early identification of platform-specific issues. The `paths` module has been refactored into several submodules for better organization, and a new submodule, `databrickspath_posixpath`, has been added to distinguish `PosixPath` from `DBFSPath` and `WorkspacePath`. The comparison and equality behavior of `_DatabricksPath` objects has been modified to include `parser` property identity checks in Python 3.13, ensuring consistent behavior and eliminating exceptions when built-in paths are compared with custom paths. These updates promote confidence in the project's long-term viability and adaptability in response to evolving language standards. Dependency updates: * Bump actions/checkout from 4.2.1 to 4.2.2 ([#160](https://github.com/databrickslabs/blueprint/pull/160)). * Bump databrickslabs/sandbox from acceptance/v0.3.1 to 0.4.2 ([#166](https://github.com/databrickslabs/blueprint/pull/166)). --- CHANGELOG.md | 12 ++++++++++++ src/databricks/labs/blueprint/__about__.py | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 004654e..e86f7f7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Version changelog +## 0.9.2 + +* Bump actions/checkout from 4.2.1 to 4.2.2 ([#160](https://github.com/databrickslabs/blueprint/issues/160)). In this release, the 'actions/checkout' dependency has been updated from version 4.2.1 to 4.2.2. This update includes changes to the 'url-helper.ts' file, which now utilizes well-known environment variables for improved reliability and maintainability. Additionally, unit test coverage for the `isGhes` function has been expanded. These changes are recommended for adoption to take advantage of the enhancements. The pull request includes a detailed changelog, commit history, and instructions for managing the update using Dependabot commands and options. +* Bump databrickslabs/sandbox from acceptance/v0.3.1 to 0.4.2 ([#166](https://github.com/databrickslabs/blueprint/issues/166)). In the latest release, the `databrickslabs/sandbox` Python package has been updated from version acceptance/v0.3.1 to 0.4.2. This update includes new features such as installation instructions, additional go-git libraries, and modifications to the README file. Dependency updates include a bump in the version of `golang.org/x/crypto` used. The pull request for this update was created by a GitHub bot, Dependabot, which will manage any conflicts and respond to comments containing specific commands. It is essential to thoroughly review and test this updated version to ensure that the new methods and modifications to existing functionality do not introduce any issues or regressions, and that the changes are well-documented and justified. +* Don't draft automated releases ([#159](https://github.com/databrickslabs/blueprint/issues/159)). In this release, the draft release feature in the GitHub Actions workflow has been disabled, enhancing the release process for software engineers. The 'draft: true' parameter has been removed from the `Draft release` job, which means that automated releases will now be published immediately upon creation instead of being created as drafts. This modification simplifies and streamlines the release process, making it more efficient for engineers who adopt the project. The change is aimed at reducing the time and effort required in manually publishing draft releases, thereby improving the overall experience for project contributors and users. +* Updated custom `Path` support for python 3.13 ([#161](https://github.com/databrickslabs/blueprint/issues/161)). In this revision, the project's continuous integration (CI) workflow has been updated to include Python 3.13, enhancing compatibility and enabling early identification of platform-specific issues. The `paths` module has been refactored into several submodules for better organization, and a new submodule, `databrickspath_posixpath`, has been added to distinguish `PosixPath` from `DBFSPath` and `WorkspacePath`. The comparison and equality behavior of `_DatabricksPath` objects has been modified to include `parser` property identity checks in Python 3.13, ensuring consistent behavior and eliminating exceptions when built-in paths are compared with custom paths. These updates promote confidence in the project's long-term viability and adaptability in response to evolving language standards. + +Dependency updates: + + * Bump actions/checkout from 4.2.1 to 4.2.2 ([#160](https://github.com/databrickslabs/blueprint/pull/160)). + * Bump databrickslabs/sandbox from acceptance/v0.3.1 to 0.4.2 ([#166](https://github.com/databrickslabs/blueprint/pull/166)). + ## 0.9.1 * Bump actions/checkout from 4.1.7 to 4.2.0 ([#149](https://github.com/databrickslabs/blueprint/issues/149)). In this pull request, the `actions/checkout` dependency is upgraded from version 4.1.7 to 4.2.0 in the `acceptance.yml` and `downstreams.yml` workflow files. The new version provides additional Ref and Commit outputs, as well as updated dependencies, which aim to improve the functionality and security of the checkout process. The `Ref` output is a string representing the reference that was checked out, and the `Commit` output is the SHA-1 hash of the checked-out commit. Dependency updates include bumping the `braces` package from 3.0.2 to 3.0.3 and updating the minor-npm-dependencies group across one directory with four updates. These changes contribute to a more reliable and efficient checkout process and enhance the overall functionality and maintainability of the Action. Software engineers are recommended to review the changes and ensure they do not introduce conflicts with their current setup before adopting the new version. diff --git a/src/databricks/labs/blueprint/__about__.py b/src/databricks/labs/blueprint/__about__.py index d69d16e..a2fecb4 100644 --- a/src/databricks/labs/blueprint/__about__.py +++ b/src/databricks/labs/blueprint/__about__.py @@ -1 +1 @@ -__version__ = "0.9.1" +__version__ = "0.9.2"