Skip to content

Commit

Permalink
Bump github.com/matzefriedrich/cobra-extensions from 0.4.1 to 0.4.2 (#42
Browse files Browse the repository at this point in the history
)

* Bump github.com/matzefriedrich/cobra-extensions from 0.4.1 to 0.4.2

Bumps [github.com/matzefriedrich/cobra-extensions](https://github.com/matzefriedrich/cobra-extensions) from 0.4.1 to 0.4.2.
- [Release notes](https://github.com/matzefriedrich/cobra-extensions/releases)
- [Changelog](https://github.com/matzefriedrich/cobra-extensions/blob/main/CHANGELOG.md)
- [Commits](matzefriedrich/cobra-extensions@v0.4.1...v0.4.2)

---
updated-dependencies:
- dependency-name: github.com/matzefriedrich/cobra-extensions
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

* Updates the changelog

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Matthias Friedrich <1573457+matzefriedrich@users.noreply.github.com>
  • Loading branch information
dependabot[bot] and matzefriedrich authored Dec 16, 2024
1 parent cefb05e commit ae61683
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 15 deletions.
34 changes: 22 additions & 12 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,67 +5,77 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [v1.0.7] - 2024-12-17

### Changed

* Bumps `github.com/matzefriedrich/cobra-extensions` from 0.4.1 to 0.4.2 [#42](https://github.com/matzefriedrich/parsley/pull/42)


## [v1.0.6] - 2024-12-11

### Changed

* Updates package dependencies (as reported by Dependabot).
* Bumps `github.com/matzefriedrich/cobra-extensions` from 0.4.0 to 0.4.1 [#41](https://github.com/matzefriedrich/parsley/pull/41)


## [v1.0.5] - 2024-11-27

### Changed

* Updates package dependencies

* Bumps `github.com/matzefriedrich/cobra-extensions` from 0.3.2 to 0.4.0 [#40](https://github.com/matzefriedrich/parsley/pull/40)
* Alters command metadata (adds long descriptions)

## [v1.0.4] - 2024-11-18

### Changed

* Updated package dependencies (as reported by Dependabot).
* Bumps `github.com/stretchr/testify` from 1.9.0 to 1.10.0 [#39](https://github.com/matzefriedrich/parsley/pull/39)
* Bumps `github.com/matzefriedrich/cobra-extensions` from 0.3.1 to 0.3.2 [#38](https://github.com/matzefriedrich/parsley/pull/39)
* Bumps `golang.org/x/mod` from 0.21.0 to 0.22.0 [#37](https://github.com/matzefriedrich/parsley/pull/37)


## [v1.0.3] - 2024-10-08

### Changed

* Removed `hashicorp/go-version` dependency; added simple comparison functions to the `version.go` module instead.
* Removed `hashicorp/go-version` dependency; added simple comparison functions to the `version.go` module instead. [#36](https://github.com/matzefriedrich/parsley/pull/36)


## [v1.0.2] - 2024-09-26

### Changed

* Updated package dependencies (as reported by Dependabot).
* Bumps `github.com/matzefriedrich/cobra-extensions` from 0.3.0 to 0.3.1 [#35](https://github.com/matzefriedrich/parsley/pull/35)
* Bumps `github.com/matzefriedrich/cobra-extensions` from 0.2.6 to 0.3.0, and adjusts import paths [#34](https://github.com/matzefriedrich/parsley/pull/34)


## [v1.0.1] - 2024-09-23

### Added

* Added new tests specifically for the service registration convenience functions.
* Added new tests for template functions and code generation.
* Added new tests specifically for the service registration convenience functions. [#31](https://github.com/matzefriedrich/parsley/pull/31)
* Added new tests for template functions and code generation. [#32](https://github.com/matzefriedrich/parsley/pull/32)
* Adds documentation texts.

### Changed

* Adds the `SupportsRegisterActivatorFunc`, which is used in the registration functions instead of `ServiceRegistry`.

* The convenience functions for registering services with different lifetimes are moved to the `register_functions.go` module, for better organization and separation of concerns.
* The convenience functions for registering services with different lifetimes are moved to the `register_functions.go` module, for better organization and separation of concerns. [#31](https://github.com/matzefriedrich/parsley/pull/31)

* Multiple activator functions can be passed to the `RegisterTransient`, `RegisterSingleton`, and `RegisterScoped` convenience functions, allowing several services to be registered with a single method call.
* Multiple activator functions can be passed to the `RegisterTransient`, `RegisterSingleton`, and `RegisterScoped` convenience functions, allowing several services to be registered with a single method call. [#31](https://github.com/matzefriedrich/parsley/pull/31)

### Fixed

* Several improvements and fixes related to handling interface and ellipsis parameters in reflection and code generation.
* Several improvements and fixes related to handling interface and ellipsis parameters in reflection and code generation. [#32](https://github.com/matzefriedrich/parsley/pull/32)


## [v1.0.0] - 2024-09-21

### Added

* Added the `validator.go` module to the `registration` package, introducing a `Validator` service to verify service registrations:
* Added the `validator.go` module to the `registration` package, introducing a `Validator` service to verify service registrations [#30](https://github.com/matzefriedrich/parsley/pull/30):
* Detects missing service dependencies.
* Identifies circular service registrations, where services depend on themselves.

Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/matzefriedrich/parsley
go 1.23

require (
github.com/matzefriedrich/cobra-extensions v0.4.1
github.com/matzefriedrich/cobra-extensions v0.4.2
github.com/pkg/errors v0.9.1
github.com/spf13/cobra v1.8.1
github.com/stretchr/testify v1.10.0
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ github.com/google/uuid v1.6.0 h1:NIvaJDMOsjHA8n1jAhLSgzrAzy1Hgr+hNrb57e+94F0=
github.com/google/uuid v1.6.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
github.com/inconshreveable/mousetrap v1.1.0 h1:wN+x4NVGpMsO7ErUn/mUI3vEoE6Jt13X2s0bqwp9tc8=
github.com/inconshreveable/mousetrap v1.1.0/go.mod h1:vpF70FUmC8bwa3OWnCshd2FqLfsEA9PFc4w1p2J65bw=
github.com/matzefriedrich/cobra-extensions v0.4.1 h1:KIBIwkq3uTOtDbaP/F1dxf40ewk3AGcbJyw4qXeDKFE=
github.com/matzefriedrich/cobra-extensions v0.4.1/go.mod h1:k/mv3Pl3I/qtm0+mj0m5t3lc54EGkpSDCXeruBe0mPo=
github.com/matzefriedrich/cobra-extensions v0.4.2 h1:VqmyWH7FA+mut7xvR/B1/j9jR1Dj5OwnVlJaqM5dKco=
github.com/matzefriedrich/cobra-extensions v0.4.2/go.mod h1:iky9d8rdIER5HUe95zpMdXo8VuTM8sYyo0faq0DKj6M=
github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4=
github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
Expand Down

0 comments on commit ae61683

Please sign in to comment.