8000 Comparing v0.6.0...v0.6.1 · google/budoux · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: google/budoux
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.6.0
Choose a base ref
...
head repository: google/budoux
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.6.1
Choose a head ref
  • 16 commits
  • 17 files changed
  • 3 contributors

Commits on Nov 7, 2023

  1. Bump @typescript-eslint/eslint-plugin in /javascript (#353)

    Bumps [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) from 6.9.1 to 6.10.0.
    - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
    - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md)
    - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v6.10.0/packages/eslint-plugin)
    
    ---
    updated-dependencies:
    - dependency-name: "@typescript-eslint/eslint-plugin"
      dependency-type: direct:development
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Nov 7, 2023
    Configuration menu
    < 8000 /div>
    Copy the full SHA
    32a90b9 View commit details
    Browse the repository at this point in the history
  2. Bump org.apache.maven.plugins:maven-surefire-plugin in /java (#354)

    Bumps [org.apache.maven.plugins:maven-surefire-plugin](https://github.com/apache/maven-surefire) from 3.2.1 to 3.2.2.
    - [Release notes](https://github.com/apache/maven-surefire/releases)
    - [Commits](apache/maven-surefire@surefire-3.2.1...surefire-3.2.2)
    
    ---
    updated-dependencies:
    - dependency-name: org.apache.maven.plugins:maven-surefire-plugin
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Nov 7, 2023
    Configuration menu
    Copy the full SHA
    8909d44 View commit details
    Browse the repository at this point in the history

Commits on Nov 8, 2023

  1. Bump actions/dependency-review-action from 3.1.1 to 3.1.2 (#357)

    Bumps [actions/dependency-review-action](https://github.com/actions/dependency-review-action) from 3.1.1 to 3.1.2.
    - [Release notes](https://github.com/actions/dependency-review-action/releases)
    - [Commits](actions/dependency-review-action@9f45b24...fde92ac)
    
    ---
    updated-dependencies:
    - dependency-name: actions/dependency-review-action
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Nov 8, 2023
    Configuration menu
    Copy the full SHA
    c454582 View commit details
    Browse the repository at this point in the history
  2. Bump @types/node from 20.8.3 to 20.9.0 in /javascript (#356)

    Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 20.8.3 to 20.9.0.
    - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
    - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)
    
    ---
    updated-dependencies:
    - dependency-name: "@types/node"
      dependency-type: direct:development
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: 
    10000
    dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Nov 8, 2023
    Configuration menu
    Copy the full SHA
    8c234ff View commit details
    Browse the repository at this point in the history

Commits on Nov 9, 2023

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

Commits on Nov 11, 2023

  1. Fix unpaired close tags and self-closing tags (#360)

    * Fix unpaired close tags and self-closing tags
    
    #251 assumed that all tags are closed properly.
    
    This assumption doesn't stand for cases like:
    1. Self-closing tags such as `<img>` don't have corresponding close tags.
    2. Unpaired close tags are still valid HTML.
    
    This patch supports these cases by assuming all open tags that doesn't
    nest correctly or that doesn't close are automatically closed.
    
    This isn't the full HTML "adoption agency algorithm", but it should be
    good enough for the needs of BudouX.
    
    Fixes #355
    kojiishi authored Nov 11, 2023
    Configuration menu
    Copy the full SHA
    2457c51 View commit details
    Browse the repository at this point in the history

Commits on Nov 13, 2023

  1. [Java] Stop emitting close tags if self-closing (#362)

    * Java: Stop emitting close tags if self-closing
    
    This patch changes Java `HTMLProcessor` not to emit close tags if the tag is self-closing.
    
    Also adds tests for:
    * Unpaired close tags.
    * Self-closing tags don't affect skip nodes (e.g., `<nobr>`.)
    These test cases are from #355.
    
    Fixes #361.
    kojiishi authored Nov 13, 2023
    Configuration menu
    Copy the full SHA
    14da897 View commit details
    Browse the repository at this point in the history

Commits on Nov 14, 2023

  1. Update Google Java Format action (#363)

    Update the hash to the one equivalent to `v3`.
    tushuhei authored Nov 14, 2023
    Configuration menu
    Copy the full SHA
    ea172b6 View commit details
    Browse the repository at this point in the history
  2. Bump actions/dependency-review-action from 3.1.2 to 3. 10000 1.3 (#364)

    Bumps [actions/dependency-review-action](https://github.com/actions/dependency-review-action) from 3.1.2 to 3.1.3.
    - [Release notes](https://github.com/actions/dependency-review-action/releases)
    - [Commits](actions/dependency-review-action@fde92ac...7bbfa03)
    
    ---
    updated-dependencies:
    - dependency-name: actions/dependency-review-action
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Nov 14, 2023
    Configuration menu
    Copy the full SHA
    64164de View commit details
    Browse the repository at this point in the history

Commits on Nov 15, 2023

  1. Bump @typescript-eslint/eslint-plugin in /javascript (#365)

    Bumps [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) from 6.10.0 to 6.11.0.
    - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
    - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md)
    - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v6.11.0/packages/eslint-plugin)
    
    ---
    updated-dependencies:
    - dependency-name: "@typescript-eslint/eslint-plugin"
      dependency-type: direct:development
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Nov 15, 2023
    Configuration menu
    Copy the full SHA
    03823df View commit details
    Browse the repository at this point in the history
  2. [java] Fix errors by collapsed white spaces and <br> (#367)

    This patch fixes `HTMLProcessor` raising exceptions for:
    1. When the source has collapsible spaces (i.e., consecutive spaces, or leading/trailing spaces.)
    2. When the source has `<br>` elements.
    
    The jsoup `Element.text()` collapses white spaces. This is fixed by replacing it with []`whoteText()`](https://jsoup.org/apidocs/org/jsoup/nodes/Element.html#wholeText()) which doesn't normalize spaces.
    
    It also returns `\n` for `<br>` element. This is fixed by incrementing `scanIndex` for `<br>`.
    
    Fixes #366.
    kojiishi authored Nov 15, 2023
    Configuration menu
    Copy the full SHA
    152683e View commit details
    Browse the repository at this point in the history
  3. Bump github/codeql-action from 2.22.5 to 2.22.6 (#368)

    Bumps [github/codeql-action](https://github.com/github/codeql-action) from 2.22.5 to 2.22.6.
    - [Release notes](https://github.com/github/codeql-action/releases)
    - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
    - [Commits](github/codeql-action@74483a3...689fdc5)
    
    ---
    updated-dependencies:
    - dependency-name: github/codeql-action
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Nov 15, 2023
    Configuration menu
    Copy the full SHA
    465907f View commit details
    Browse the repository at this point in the history
  4. [java] Replace wholeText() with NodeVisitor (#369)

    This patch replaces `wholeText()` implemented in #367 by a subclass of `NodeVisitor`.
    
    Whether the `wholeText()` emits `\n` for `<br>` depends on the jsoup versions. To ensure that `getText()` always matches what `resolve()` does, this patch changes to its own logic.
    kojiishi authored Nov 15, 2023
    Configuration menu
    Copy the full SHA
    b84f482 View commit details
    Browse the repository at this point in the history

Commits on Nov 16, 2023

  1. Configuration menu
    Copy the full SHA
    82a8207 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    bc30efe View commit details
    Browse the repository at this point in the history

Commits on Nov 17, 2023

  1. Version up to 0.6.1 (#372)

    tushuhei authored Nov 17, 2023
    Configuration menu
    Copy the full SHA
    d02254f View commit details
    Browse the repository at this point in the history
Loading
0