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

Auto-generated Semantic Conventions #2069

Merged
merged 43 commits into from
Oct 19, 2022

Commits on Oct 17, 2021

  1. Introduce SemanticConventions project

    Will be the home for the auto-generated semantic conventions constants.
    joaopgrassi committed Oct 17, 2021
    Configuration menu
    Copy the full SHA
    7e2b190 View commit details
    Browse the repository at this point in the history

Commits on Oct 18, 2021

  1. Configuration menu
    Copy the full SHA
    4a0305f View commit details
    Browse the repository at this point in the history

Commits on Oct 19, 2021

  1. Configuration menu
    Copy the full SHA
    a26aa03 View commit details
    Browse the repository at this point in the history

Commits on Oct 20, 2021

  1. Add missing PublicAPI entries

    Added instructions on how to update the PublicAPI files using the dotnet-format global tool.
    joaopgrassi committed Oct 20, 2021
    Configuration menu
    Copy the full SHA
    03ffc5d View commit details
    Browse the repository at this point in the history
  2. Add auto-generated to template

    To avoid having StyleCop warnings for the auto-generated files.
    joaopgrassi committed Oct 20, 2021
    Configuration menu
    Copy the full SHA
    00dfd83 View commit details
    Browse the repository at this point in the history
  3. Update files

    Now with the auto-generated header
    joaopgrassi committed Oct 20, 2021
    Configuration menu
    Copy the full SHA
    3e0f044 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    6298fe0 View commit details
    Browse the repository at this point in the history
  5. Fix markdown issues

    joaopgrassi committed Oct 20, 2021
    Configuration menu
    Copy the full SHA
    9fe5607 View commit details
    Browse the repository at this point in the history

Commits on Oct 22, 2021

  1. PR fixes and using the dotnet format tool

    Taking advantage of line breaks in long <remarks> and leveraging dotnet format tool to fix indentation afterwards.
    joaopgrassi committed Oct 22, 2021
    Configuration menu
    Copy the full SHA
    3abccc5 View commit details
    Browse the repository at this point in the history
  2. Fix trailing space in remarks

    For some reason dotnet tool -w does not remove it. Needed to use the -a for analysers but in a separate command.
    joaopgrassi committed Oct 22, 2021
    Configuration menu
    Copy the full SHA
    546fc19 View commit details
    Browse the repository at this point in the history

Commits on Oct 26, 2021

  1. Adapt bash script and README

    Now that dotnet format is running. Also now public api files are updated automatically.
    joaopgrassi committed Oct 26, 2021
    Configuration menu
    Copy the full SHA
    9f77cf4 View commit details
    Browse the repository at this point in the history

Commits on Oct 27, 2021

  1. Configuration menu
    Copy the full SHA
    a179623 View commit details
    Browse the repository at this point in the history

Commits on Nov 2, 2021

  1. Configuration menu
    Copy the full SHA
    7a78dfe View commit details
    Browse the repository at this point in the history

Commits on Nov 5, 2021

  1. Configuration menu
    Copy the full SHA
    6ea49ef View commit details
    Browse the repository at this point in the history
  2. Merge branch 'feat/autogen_semconv' of github.com:joaopgrassi/opentel…

    …emetry-dotnet into feat/autogen_semconv
    joaopgrassi committed Nov 5, 2021
    Configuration menu
    Copy the full SHA
    e8e5cf2 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    356b406 View commit details
    Browse the repository at this point in the history
  4. Update public api files

    joaopgrassi committed Nov 5, 2021
    Configuration menu
    Copy the full SHA
    89b189f View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    5837c79 View commit details
    Browse the repository at this point in the history

Commits on Jan 10, 2022

  1. Configuration menu
    Copy the full SHA
    1d3e949 View commit details
    Browse the repository at this point in the history

Commits on Feb 5, 2022

  1. Configuration menu
    Copy the full SHA
    f94fb9f View commit details
    Browse the repository at this point in the history
  2. Use format from .NET SDK

    dotnet-format is built-in in .NET 6. Also things changes and the template and script needed to change.
    joaopgrassi committed Feb 5, 2022
    Configuration menu
    Copy the full SHA
    2f16f30 View commit details
    Browse the repository at this point in the history
  3. Re-generate after template changes

    Before the dotnet-format tool used to auto-format comments that didn't start with a space. In the new version this is not happening anymore and I couldn't find out why. For now, on `remarks` an empty space is added always.
    joaopgrassi committed Feb 5, 2022
    Configuration menu
    Copy the full SHA
    4c991c3 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    9c91f90 View commit details
    Browse the repository at this point in the history

Commits on Feb 15, 2022

  1. Configuration menu
    Copy the full SHA
    5ee7692 View commit details
    Browse the repository at this point in the history

Commits on Jun 29, 2022

  1. Merge branch 'main' into feat/autogen_semconv

    # Conflicts:
    #	OpenTelemetry.proj
    #	OpenTelemetry.sln
    joaopgrassi committed Jun 29, 2022
    Configuration menu
    Copy the full SHA
    2bed012 View commit details
    Browse the repository at this point in the history
  2. Improve whitespace in the template

    Used the new config in the code generator to make things easier in regards to whitespace/newlines in the template.
    Now the Jinja expressions do not leave whitespaces when the code file is generated. If newlines are required, they
    have to be present in the template file.
    joaopgrassi committed Jun 29, 2022
    Configuration menu
    Copy the full SHA
    38b3846 View commit details
    Browse the repository at this point in the history

Commits on Jul 25, 2022

  1. Adapt script

    joaopgrassi committed Jul 25, 2022
    Configuration menu
    Copy the full SHA
    fe2778e View commit details
    Browse the repository at this point in the history

Commits on Sep 2, 2022

  1. Configuration menu
    Copy the full SHA
    1a2a971 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    5d6b064 View commit details
    Browse the repository at this point in the history

Commits on Sep 6, 2022

  1. Configuration menu
    Copy the full SHA
    99de7b6 View commit details
    Browse the repository at this point in the history
  2. Escape chars in remarks

    Escape filter seems to do the job to escape invalid chars inside a xml comment block
    joaopgrassi committed Sep 6, 2022
    Configuration menu
    Copy the full SHA
    28f921f View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    b9880f1 View commit details
    Browse the repository at this point in the history

Commits on Sep 21, 2022

  1. Configuration menu
    Copy the full SHA
    3b99dc8 View commit details
    Browse the repository at this point in the history

Commits on Sep 26, 2022

  1. Use spec version 1.13, net462, update PublicApi files

    And other minor improvements.
    joaopgrassi committed Sep 26, 2022
    Configuration menu
    Copy the full SHA
    c558b57 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    cf422d9 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    d850232 View commit details
    Browse the repository at this point in the history

Commits on Sep 30, 2022

  1. Configuration menu
    Copy the full SHA
    af99f52 View commit details
    Browse the repository at this point in the history

Commits on Oct 3, 2022

  1. Configuration menu
    Copy the full SHA
    6494bd4 View commit details
    Browse the repository at this point in the history

Commits on Oct 10, 2022

  1. Configuration menu
    Copy the full SHA
    7cbfc4c View commit details
    Browse the repository at this point in the history

Commits on Oct 18, 2022

  1. Configuration menu
    Copy the full SHA
    3d7956b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    110db72 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    d3af237 View commit details
    Browse the repository at this point in the history

Commits on Oct 19, 2022

  1. Configuration menu
    Copy the full SHA
    459cf85 View commit details
    Browse the repository at this point in the history