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

update toml library to v2 #272

Closed
wants to merge 3 commits into from
Closed

update toml library to v2 #272

wants to merge 3 commits into from

Conversation

GreyXor
Copy link
Contributor

@GreyXor GreyXor commented Feb 12, 2024

I've revised the TOML parser to make it compatible with the v2 of go-toml.

It appears that this updated version parses differently; specifically, it no longer includes spaces in subgroups and only returns nil if the map is empty(look at the tests to see the difference).

Please tell me if there are any additions or modifications required.

@knadh
Copy link
Owner

knadh commented Feb 13, 2024

Thatnks @GreyXor, but if the parses have different behaviour and the existing tests fail, that'll break backwards compatibility. If that's the case, then the parsers/toml package should be versioned parsers/toml/v2. Can you confirm whether it is indeed backwards incompatible?

@knadh knadh added the enhancement New feature or request label Feb 13, 2024
@GreyXor
Copy link
Contributor Author

GreyXor commented Feb 13, 2024

Thatnks @GreyXor, but if the parses have different behaviour and the existing tests fail, that'll break backwards compatibility. If that's the case, then the parsers/toml package should be versioned parsers/toml/v2. Can you confirm whether it is indeed backwards incompatible?

Thanks, I can confirm that this breaks backward compatibility. Should I move it into a subdirectory called v2 ?

@knadh
Copy link
Owner

knadh commented Feb 13, 2024

Yep, in that case, it should be /v2. In your PR, you should update parsers/toml/go.mod to have the v2 suffix (module github.com/knadh/koanf/parsers/toml/v2).

module github.com/knadh/koanf/parsers/toml

@GreyXor
Copy link
Contributor Author

GreyXor commented Feb 13, 2024

Yep, in that case, it should be /v2. In your PR, you should update parsers/toml/go.mod to have the v2 suffix (module github.com/knadh/koanf/parsers/toml/v2).

module github.com/knadh/koanf/parsers/toml

Here it is, toml/v2 in a subdirectory

@knadh
Copy link
Owner

knadh commented Feb 14, 2024

There should be no v2 subdirectory. Go versioning works based on the paths defined in go.mod and not directory structures. Please refer to this: https://github.com/knadh/koanf/tree/master/providers/consul

You should make the necessary changes to the toml provider and simply upgrade the version path in its go.mod to have the /v2 suffix. Once it's merged, I'll push a tag that makes it go gettable.

@GreyXor
Copy link
Contributor Author

GreyXor commented Feb 14, 2024

I understood that:
We want to keep both versions of the TOML parser, the current one for compatibility needs, and a new "v2", mine. To do this, I:

  • Added v2 to the go.mod file (I did this here)
  • Moved v2 to a subfolder (for proper organization)

If a v2 subfolder doesn't suit you, where should I put it?

@knadh
Copy link
Owner

knadh commented Feb 14, 2024

The current version already exists in the repo with a specific tag. You update the files to the new version and add /v2 and I will push a v2 tag for your commit. Thus, both versions will co exist in the repository's git history.

In the directory structure, there should also be the latest "version" (state) of the file. There shouldn't be subdirectories with different versions.

@GreyXor
Copy link
Contributor Author

GreyXor commented Feb 19, 2024

Thanks, I've deleted the v2 subfolder and parser/toml is now the v2.
@knadh, it's all good for you?

@knadh
Copy link
Owner

knadh commented Feb 19, 2024

Thanks @GreyXor. Will review and merge by this weekend.

@rhnvrm rhnvrm self-requested a review March 6, 2024 11:11
rhnvrm
rhnvrm previously requested changes Mar 6, 2024
go.work Outdated Show resolved Hide resolved
@rhnvrm
Copy link
Collaborator

rhnvrm commented Mar 6, 2024

Also, let's update the following:

  • examples/read-commandline/main.go which uses the v1 package; to the /v2 version.
  • Add /v2 to README
  • Add a test to tests package

@GreyXor
Copy link
Contributor Author

GreyXor commented Mar 6, 2024

Also, let's update the following:

* `examples/read-commandline/main.go` which uses the v1 package; to the /v2 version.

* Add /v2 to README

* Add a test to `tests` package

Thank you, i've done the two first bullets points from your list. Would you like a complete new test in a new file ? Or just a test directly in koanf_test.go ?

@rhnvrm
Copy link
Collaborator

rhnvrm commented Mar 10, 2024

Thank you, i've done the two first bullets points from your list. Would you like a complete new test in a new file ? Or just a test directly in koanf_test.go ?

https://github.com/knadh/koanf/blob/master/tests/koanf_test.go#L282-L288

Maybe we can just add a new case with tomlv2 as the parser?

import(
        ...
	tomlv2 "github.com/knadh/koanf/parsers/toml/v2"
        ...
)

@knadh
Copy link
Owner

knadh commented Apr 3, 2024

I've added a fix for the go.work and tests not running in the workflow. Can you rebase your PR on master?

Once this is done, we can go ahead and merge.

@GreyXor GreyXor mentioned this pull request Apr 5, 2024
@GreyXor GreyXor reopened this Apr 5, 2024
@GreyXor
Copy link
Contributor Author

GreyXor commented Apr 5, 2024

I've added a fix for the go.work and tests not running in the workflow. Can you rebase your PR on master?

Once this is done, we can go ahead and merge.

Thanks, I rebased on master

@knadh
Copy link
Owner

knadh commented Apr 7, 2024

This is merged in #286. Thanks @GreyXor. Had to create a new PR out of your commits as I'd one minor change to make which couldn't be pushed to your PR (as it's from your master and not a feature branch).

@GreyXor
Copy link
Contributor Author

GreyXor commented Apr 8, 2024

This is merged in #286. Thanks @GreyXor. Had to create a new PR out of your commits as I'd one minor change to make which couldn't be pushed to your PR (as it's from your master and not a feature branch).

Thanks 👍
I understand, next time i'll push in a feature/foo branch.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants