Giter Site home page Giter Site logo

Comments (10)

zachdaniel avatar zachdaniel commented on June 7, 2024

I'd be open to adding that for scopes, i.e type(scope): message?

from git_ops.

sezaru avatar sezaru commented on June 7, 2024

Isn't the scope used more to features of the project instead of being the project itself?

What about filtering by footers as that is something that is supported by the spec?

For example:

feat:my commit

PROJECT: backend

That would also allow to set multiple projects per commit in case my commit changes more than one (ex. a change to both the backend project and the frontend one):

feat:add new api

PROJECT: backend
PROJECT: frontend

from git_ops.

zachdaniel avatar zachdaniel commented on June 7, 2024

Yeah, you're right, we should do it off of something in the body. What if we did it more generically, via tags?

TAGS: backend, security, ...

Then later we can actually potentially hook more things off of those tags? Like grouping things by certain tags in changelogs, hiding/showing them, that kind of thing.

from git_ops.

zachdaniel avatar zachdaniel commented on June 7, 2024

Then you could say mix git_ops.release --include-tags backend

from git_ops.

sezaru avatar sezaru commented on June 7, 2024

Yeah, I agree, using tags seems better since it is more generic and will be possible to use it in multiple scenarios

from git_ops.

zachdaniel avatar zachdaniel commented on June 7, 2024

awesome. I won't have time to add this, but PRs are welcome :)

from git_ops.

sezaru avatar sezaru commented on June 7, 2024

So, I created a fork to work on this, but I'm seeing some odd things regarding the parser that I'm not sure it's broken or I'm just doing something wrong.

For example, if I pass this commit text to Commit.parse

GitOps.Commit.parse("feat: test_breaking\n\nBREAKING CHANGE: bla bla bla\nTAGS: test_git_ops")

I expect to get somethin like this

{:ok, [
  %GitOpts.Commit{
    type: "feat",
    scope: nil,
    message: "test_breaking",
    body: "BREAKING CHANGE: bla bla bla\nTAGS: test_git_ops",
    footer: nil,
    breaking?: false
  }
]}

But what I get is this:

{:ok,
 [
   %GitOps.Commit{
     type: "feat",
     scope: nil,
     message: "test_breaking",
     body: "BREAKING",
     footer: nil,
     breaking?: false
   },
   %GitOps.Commit{
     type: "CHANGE",
     scope: nil,
     message: "bla bla bla",
     body: nil,
     footer: nil,
     breaking?: false
   },
   %GitOps.Commit{
     type: "TAGS",
     scope: nil,
     message: "test_git_ops",
     body: nil,
     footer: nil,
     breaking?: false
   }
 ]}

Is this correct? The fact that the struct name is Commit but its parse splits one commit into "three" commits is kinda odd to me.

from git_ops.

zachdaniel avatar zachdaniel commented on June 7, 2024

Hmmmmm....yeah, so there might be some trouble here. We added a feature to pick up multiple commit messages from a single commit message, and it looks like it can't tell the difference between the footer and a new commit :(

I'm not sure what the solve is here TBH

from git_ops.

sezaru avatar sezaru commented on June 7, 2024

I have a POC of the filter working assuming these types of commits. I guess I can push it as a PR with tests so if that issue is fixed in the future, the test will break and we can just refactor it then

from git_ops.

zachdaniel avatar zachdaniel commented on June 7, 2024

Lets see the code :D

from git_ops.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.