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: gone-io/goner
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.0.11
Choose a base ref
...
head repository: gone-io/goner
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.1.0
Choose a head ref
  • 16 commits
  • 236 files changed
  • 3 contributors

Commits on Apr 20, 2025

  1. docs(service-registry): add etcd and consul service registry components

    - Add etcd service registry component to the documentation
    - Add consul service registry component to the documentation
    - Update both README.md and README_CN.md files
    dapeng committed Apr 20, 2025
    Configuration menu
    Copy the full SHA
    55fd709 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #55 from gone-io/features/v1.x

    docs(service-registry): add etcd and consul service registry components
    Degfy authored Apr 20, 2025
    Configuration menu
    Copy the full SHA
    e8739ab View commit details
    Browse the repository at this point in the history

Commits on Apr 22, 2025

  1. refactor(g): move service-related functions and update app initializa…

    …tion
    
    - Move GetServiceId, GetServerValue, and ParseService functions from help.go to service.go
    - Implement GetOrCreateApp function in help.go for managing application instances- Remove balancer field from grpc client struct
    dapeng committed Apr 22, 2025
    Configuration menu
    Copy the full SHA
    2f731f0 View commit details
    Browse the repository at this point in the history

Commits on Apr 23, 2025

  1. build(deps): bump the go_modules group across 3 directories with 1 up…

    …date
    
    Bumps the go_modules group with 1 update in the /examples/http_use_discovery directory: [github.com/refraction-networking/utls](https://github.com/refraction-networking/utls).
    Bumps the go_modules group with 1 update in the /examples/urllib_example directory: [github.com/refraction-networking/utls](https://github.com/refraction-networking/utls).
    Bumps the go_modules group with 1 update in the /urllib directory: [github.com/refraction-networking/utls](https://github.com/refraction-networking/utls).
    
    
    Updates `github.com/refraction-networking/utls` from 1.6.7 to 1.7.0
    - [Release notes](https://github.com/refraction-networking/utls/releases)
    - [Commits](refraction-networking/utls@v1.6.7...v1.7.0)
    
    Updates `github.com/refraction-networking/utls` from 1.6.7 to 1.7.0
    - [Release notes](https://github.com/refraction-networking/utls/releases)
    - [Commits](refraction-networking/utls@v1.6.7...v1.7.0)
    
    Updates `github.com/refraction-networking/utls` from 1.6.7 to 1.7.0
    - [Release notes](https://github.com/refraction-networking/utls/releases)
    - [Commits](refraction-networking/utls@v1.6.7...v1.7.0)
    
    ---
    updated-dependencies:
    - dependency-name: github.com/refraction-networking/utls
      dependency-version: 1.7.0
      dependency-type: indirect
      dependency-group: go_modules
    - dependency-name: github.com/refraction-networking/utls
      dependency-version: 1.7.0
      dependency-type: indirect
      dependency-group: go_modules
    - dependency-name: github.com/refraction-networking/utls
      dependency-version: 1.7.0
      dependency-type: indirect
      dependency-group: go_modules
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] authored Apr 23, 2025
    Configuration menu
    Copy the full SHA
    e09825d View commit details
    Browse the repository at this point in the history

Commits on Apr 24, 2025

  1. Merge pull request #58 from gone-io/dependabot/go_modules/examples/ht…

    …tp_use_discovery/go_modules-d33abf71db
    
    build(deps): bump the go_modules group across 3 directories with 1 update
    Degfy authored Apr 24, 2025
    Configuration menu
    Copy the full SHA
    ecb70f4 View commit details
    Browse the repository at this point in the history

Commits on Apr 26, 2025

  1. build: update dependency and improve server shutdown

    - Update `github.com/mark3labs/mcp-go` from v0.21.1 to v0.23.1
    - Add `github.com/spf13/cast` as a new indirect dependency- Uncomment and implement server shutdown logic in `server_provider.go`
    dapeng committed Apr 26, 2025
    Configuration menu
    Copy the full SHA
    4b81745 View commit details
    Browse the repository at this point in the history
  2. feat/examples: add simple example project

    - Create basic project structure for Gone framework
    - Implement dependency injection and configuration binding
    - Define and implement a simple Service interface
    - Add README file with project overview and usage instructions
    dapeng committed Apr 26, 2025
    Configuration menu
    Copy the full SHA
    9d07670 View commit details
    Browse the repository at this point in the history
  3. build(examples): update dependency mark3labs/mcp-go to v0.23.1

    - Update mark3labs/mcp-go from v0.21.1 to v0.23.1 in multiple example projects
    - Remove go.mod file from mcp directory
    - Update other dependencies in quick_start project:
      - Add github.com/spf13/cast v1.7.1 - Add github.com/frankban/quicktest v1.14.6
      - Add github.com/kr/pretty v0.3.1
      - Add github.com/rogpeppe/go-internal v1.9.0
      - Add github.com/google/go-cmp v0.5.9
    dapeng committed Apr 26, 2025
    Configuration menu
    Copy the full SHA
    3cc20ac View commit details
    Browse the repository at this point in the history
  4. refactor(help): rename GetOrCreateApp to App and add unit tests

    - Rename GetOrCreateApp function to App for brevity and clarity
    - Add comprehensive unit tests for the App function- Update function documentation to provide clear parameter and return value descriptions
    dapeng committed Apr 26, 2025
    Configuration menu
    Copy the full SHA
    866b181 View commit details
    Browse the repository at this point in the history
  5. feat(examples): add simple example with generated init and import files

    - Add generated import files for simple example
    - Create init files for simple and implement packages
    - Generate module load file for simple package
    - Update go.sum with required dependencies
    dapeng committed Apr 26, 2025
    Configuration menu
    Copy the full SHA
    9fa541f View commit details
    Browse the repository at this point in the history
  6. feat(examples): add gin+xorm+viper example

    - Add new example project using Gin, XORM, and Viper
    - Implement user authentication and token management
    - Include database migration scripts and Docker configuration
    - Add unit tests and API documentation
    dapeng committed Apr 26, 2025
    Configuration menu
    Copy the full SHA
    3d8c658 View commit details
    Browse the repository at this point in the history
  7. deps: update gone-io/gone to v2.0.14

    - Update gone-io/gone from v2.0.12 to v2.0.14 in multiple modules
    - Update other dependencies as needed
    dapeng committed Apr 26, 2025
    Configuration menu
    Copy the full SHA
    abe4b6d View commit details
    Browse the repository at this point in the history

Commits on Apr 27, 2025

  1. refactor(gone): update dependency to v2.1.0 and simplify load functions

    - Update github.com/gone-io/gone/v2 dependency to v2.1.0 in multiple modules
    - Simplify load functions across multiple packages by removing BuildOnceLoadFunc
    - Replace complex load logic with direct calls to loader.Load() or loader.MustLoad()
    - Remove redundant test cases and simplify existing ones
    - Update provider functions to use new signature with gone.Loader parameter
    dapeng committed Apr 27, 2025
    Configuration menu
    Copy the full SHA
    b267af7 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    df12a61 View commit details
    Browse the repository at this point in the history
  3. build: update gone-io/goner dependencies to v1.1.0

    - Update github.com/gone-io/goner/g to v1.1.0
    - Update github.com/gone-io/goner/viper to v1.1.0
    - Remove github.com/gone-io/goner/g as a direct dependency in some modules
    - Update other dependencies that use gone-io/goner packages
    dapeng committed Apr 27, 2025
    Configuration menu
    Copy the full SHA
    69fb9b5 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #60 from gone-io/features/v1.x

    refactor(g): move service-related functions and update app initialization
    Degfy authored Apr 27, 2025
    Configuration menu
    Copy the full SHA
    ae78e46 View commit details
    Browse the repository at this point in the history
Loading