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: inversify/InversifyJS
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v7.0.2
Choose a base ref
...
head repository: inversify/InversifyJS
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v7.1.0
Choose a head ref
  • 3 commits
  • 4 files changed
  • 2 contributors

Commits on Mar 8, 2025

  1. chore: update auto merge on patch or minor to v9.22.0 (#1748)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Mar 8, 2025
    Copy the full SHA
    684b0aa View commit details

Commits on Mar 10, 2025

  1. Add binding related types (#1751)

    * feat: add binding related types
    
    * docs: update changelog
    notaphplover authored Mar 10, 2025
    Copy the full SHA
    88488c3 View commit details
  2. Bump version (#1752)

    * chore: bump version
    
    * docs: update changelog
    notaphplover authored Mar 10, 2025
    Copy the full SHA
    e40b334 View commit details
Showing with 37 additions and 18 deletions.
  1. +6 −0 CHANGELOG.md
  2. +26 −15 package-lock.json
  3. +3 −3 package.json
  4. +2 −0 src/index.ts
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -12,6 +12,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Removed

## [7.1.0]

### Added
- Added `BindingActivation`.
- Added `BindingDeactivation`.

## [7.0.2]

### Changed
41 changes: 26 additions & 15 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -10,7 +10,7 @@
"@inversifyjs/core": "5.0.0"
},
"devDependencies": {
"@eslint/js": "9.21.0",
"@eslint/js": "9.22.0",
"@rollup/plugin-terser": "0.4.4",
"@rollup/plugin-typescript": "12.1.2",
"@types/chai": "4.3.20",
@@ -19,7 +19,7 @@
"@typescript-eslint/eslint-plugin": "8.26.0",
"@typescript-eslint/parser": "8.26.0",
"chai": "4.5.0",
"eslint": "9.21.0",
"eslint": "9.22.0",
"eslint-config-prettier": "10.1.1",
"eslint-plugin-prettier": "5.2.3",
"eslint-plugin-simple-import-sort": "12.1.1",
@@ -77,5 +77,5 @@
"test:cjs": "nyc --reporter=lcov mocha lib/cjs/test/*.test.js lib/cjs/test/**/*.test.js --reporter spec"
},
"sideEffects": false,
"version": "7.0.2"
"version": "7.1.0"
}
2 changes: 2 additions & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -19,7 +19,9 @@ export {
IsBoundOptions,
} from '@inversifyjs/container';
export {
BindingActivation,
BindingConstraints,
BindingDeactivation,
BindingScope,
DynamicValueBuilder,
Factory,