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: browsh-org/browsh
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.8.2
Choose a base ref
...
head repository: browsh-org/browsh
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.8.3
Choose a head ref
  • 13 commits
  • 25 files changed
  • 6 contributors

Commits on Feb 2, 2023

  1. Bump fast-json-patch and web-ext in /webext

    Bumps [fast-json-patch](https://github.com/Starcounter-Jack/JSON-Patch) to 3.1.1 and updates ancestor dependency [web-ext](https://github.com/mozilla/web-ext). These dependencies need to be updated together.
    
    
    Updates `fast-json-patch` from 2.2.1 to 3.1.1
    - [Release notes](https://github.com/Starcounter-Jack/JSON-Patch/releases)
    - [Commits](Starcounter-Jack/JSON-Patch@v2.2.1...3.1.1)
    
    Updates `web-ext` from 7.1.1 to 7.5.0
    - [Release notes](https://github.com/mozilla/web-ext/releases)
    - [Commits](mozilla/web-ext@7.1.1...7.5.0)
    
    ---
    updated-dependencies:
    - dependency-name: fast-json-patch
      dependency-type: indirect
    - dependency-name: web-ext
      dependency-type: direct:development
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] authored and tombh committed Feb 2, 2023
    Configuration menu
    Copy the full SHA
    51eaefb View commit details
    Browse the repository at this point in the history
  2. Bump loader-utils from 2.0.2 to 2.0.4 in /webext

    Bumps [loader-utils](https://github.com/webpack/loader-utils) from 2.0.2 to 2.0.4.
    - [Release notes](https://github.com/webpack/loader-utils/releases)
    - [Changelog](https://github.com/webpack/loader-utils/blob/v2.0.4/CHANGELOG.md)
    - [Commits](webpack/loader-utils@v2.0.2...v2.0.4)
    
    ---
    updated-dependencies:
    - dependency-name: loader-utils
      dependency-type: indirect
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] authored and tombh committed Feb 2, 2023
    Configuration menu
    Copy the full SHA
    acaa7d6 View commit details
    Browse the repository at this point in the history
  3. remove unnecessary RUN command

    WORKDIR already runs "mkdir -p" under the hood, so we don't need to add this extra command (and layer) to the Dockerfile.
    Adam Leskis authored and tombh committed Feb 2, 2023
    Configuration menu
    Copy the full SHA
    0cef277 View commit details
    Browse the repository at this point in the history
  4. Bump http-cache-semantics from 4.1.0 to 4.1.1 in /webext

    Bumps [http-cache-semantics](https://github.com/kornelski/http-cache-semantics) from 4.1.0 to 4.1.1.
    - [Release notes](https://github.com/kornelski/http-cache-semantics/releases)
    - [Commits](kornelski/http-cache-semantics@v4.1.0...v4.1.1)
    
    ---
    updated-dependencies:
    - dependency-name: http-cache-semantics
      dependency-type: indirect
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] authored and tombh committed Feb 2, 2023
    Configuration menu
    Copy the full SHA
    1d4211c View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    d32ae0b View commit details
    Browse the repository at this point in the history

Commits on Dec 9, 2023

  1. feat: Use log/slog for logging to file or stdout

    Switched to Go1.21 to use the log/slog package for strutctured logging.
    
    TODO: Log messages that are stringifying objects can now use strutctured
    output.
    
    TODO: Customise log levels for different messages.
    
    Fix tests
    ananthb authored and tombh committed Dec 9, 2023
    Configuration menu
    Copy the full SHA
    f93a4d1 View commit details
    Browse the repository at this point in the history
  2. feat: Structured log messages

    Log messages have been re-written with structured fields.
    
    Also, important Go depenedencies like x/sys and errors packages have
    been updated.
    
    Github actions have also been updated.
    ananthb authored and tombh committed Dec 9, 2023
    Configuration menu
    Copy the full SHA
    c191b34 View commit details
    Browse the repository at this point in the history
  3. chore: Clean up SETUP guides

    ananthb authored and tombh committed Dec 9, 2023
    Configuration menu
    Copy the full SHA
    f9c6fcf View commit details
    Browse the repository at this point in the history

Commits on Dec 12, 2023

  1. chore: Remove manual install steps

    ananthb authored and tombh committed Dec 12, 2023
    Configuration menu
    Copy the full SHA
    65344c3 View commit details
    Browse the repository at this point in the history
  2. fix: If debug is false discard logs

    The slog change logged to stderr if debug was false.
    This screwed up the UI.
    ananthb authored and tombh committed Dec 12, 2023
    Configuration menu
    Copy the full SHA
    d7fb6e1 View commit details
    Browse the repository at this point in the history

Commits on Dec 24, 2023

  1. [Fix] Firefox inspecting logic on Windows (#502)

    * Fix (firefox_windows.go): Release resources
    
    It seems `defer` keyword is using to release and close some resources.
    It should be added to `getFirefoxPath` function.
    
    Signed-off-by: Dragon1573 <49941141+Dragon1573@users.noreply.github.com>
    
    * Fix (firefox_windows.go): Registry path
    
    For Mozilla Firefox Stable edition, it's incorrect in `getFirefoxPath` function.
    
    Signed-off-by: Dragon1573 <49941141+Dragon1573@users.noreply.github.com>
    
    * Fix (firefox_windows.go): Registry Value
    
    Signed-off-by: Dragon1573 <49941141+Dragon1573@users.noreply.github.com>
    
    * Update (firefox_windows.go): Reformat code
    
    Advices from GitHub Workflows, try fix this using GitHub Web.
    
    ---------
    
    Signed-off-by: Dragon1573 <49941141+Dragon1573@users.noreply.github.com>
    Dragon1573 authored Dec 24, 2023
    Configuration menu
    Copy the full SHA
    8bca0f1 View commit details
    Browse the repository at this point in the history

Commits on Jan 21, 2024

  1. feat: Add json schema (#505)

    Freed-Wu authored and tombh committed Jan 21, 2024
    Configuration menu
    Copy the full SHA
    200aec0 View commit details
    Browse the repository at this point in the history

Commits on Jan 29, 2024

  1. build: release v1.8.3

    * Bump fast-json-patch and web-ext in /webext by @dependabot in #461
    * Bump loader-utils from 2.0.2 to 2.0.4 in /webext by @dependabot in #453
    * remove unnecessary RUN command by @lpmi-13 in #466
    * Bump http-cache-semantics from 4.1.0 to 4.1.1 in /webext by @dependabot in #467
    * fix: Golang install: use "amd64" for "x86_64" by @tombh in #463
    * feat: Use log/slog for logging to file or stdout by @ananthb in #493
    * feat: Structured log messages by @ananthb in #494
    * chore: Clean up SETUP guides by @ananthb in #495
    * chore: Remove manual install steps by @ananthb in #496
    * fix: If debug is false discard logs by @ananthb in #497
    * [Fix] Firefox inspecting logic on Windows by @Dragon1573 in #502
    * feat: Add json schema (#505) by @Freed-Wu in #510
    
    * @lpmi-13 made their first contribution in #466
    * @ananthb made their first contribution in #493
    * @Dragon1573 made their first contribution in #502
    * @Freed-Wu made their first contribution in #510
    tombh committed Jan 29, 2024
    Configuration menu
    Copy the full SHA
    cb3ddd5 View commit details
    Browse the repository at this point in the history
Loading