Skip to content

Commit

Permalink
Pull request #1329: Release/patch 11.0.2
Browse files Browse the repository at this point in the history
Merge in OUI/oblique from release/patch_11.0.2 to master

* commit 'f2529b8d195a45078e98c5bad8de8343f4262dcc': (23 commits)
  chore(toolchain): release version 11.0.2
  fix(oblique/toolchain): correctly parse scopes that contain `-` in `changelog.ts`
  fix(oblique/toolchain): do not list toolchain commits in the changelog
  refactor(oblique/toolchain): use `git branch --show-current` to get the branch name in `release.ts`
  fix(oblique/toolchain): ensure issue number is shown in commit message in `update-dependencies.ts`
  chore(toolchain): update dependencies and refactor accordingly
  chore(toolchain): ensure `update-dependencies.ts` don't update the `peerDependencies`
  chore(toolchain): ensure that `npm audit fix` doesn't fail
  chore(toolchain): deactivate funding info
  chore(toolchain): merge `update-dependencies.ts` and `commit.ts` together
  refactor(toolchain): use a class for `update-dependencies.ts`
  chore(oblique/toolchain): extend the release script to add breaking changes to the changelog
  chore(oblique/toolchain): extend the release script to add bug fixes and features to the changelog
  chore(oblique/toolchain): use a custom script to add a new release to the Changelog
  chore(oblique/toolchain): make sure the release script includes both issue and version numbers
  chore(oblique/toolchain): let the release script commit the changes itself
  chore(oblique/toolchain): use the branch name to define the version number to release
  refactor(oblique/toolchain): extract the changelog generation to a dedicated script
  refactor(oblique/toolchain): keep the `perform` method of the release script simple
  fix(oblique/service-navigation): make sure cookie activity is only monitored if PAMS is activated
  ...
  • Loading branch information
nina-egger committed Apr 12, 2024
2 parents 9fc7240 + f2529b8 commit f5e8802
Show file tree
Hide file tree
Showing 21 changed files with 615 additions and 1,112 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
[11.0.2](https://github.com/oblique-bit/oblique/compare/11.0.1...11.0.2) (2024-04-12)

## Bug Fixes

- **service-navigation:** make sure cookie activity is only monitored if PAMS is activated ([5d85b670](https://github.com/oblique-bit/oblique/commit/5d85b6709a38acbc69c6eb1c5126fe46e8307e24))

# [11.0.1](https://github.com/oblique-bit/oblique/compare/11.0.0...11.0.1) (2024-04-02)

## Bug Fixes
Expand Down
61 changes: 30 additions & 31 deletions DEPENDENCIES.md

Large diffs are not rendered by default.

18 changes: 18 additions & 0 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,20 @@
"extractLicenses": false,
"sourceMap": true,
"namedChunks": true
},
"pams": {
"buildOptimizer": false,
"optimization": false,
"vendorChunk": true,
"extractLicenses": false,
"sourceMap": true,
"namedChunks": true,
"fileReplacements": [
{
"replace": "projects/sandbox/src/environments/environment.ts",
"with": "projects/sandbox/src/environments/environment.pams.ts"
}
]
}
},
"defaultConfiguration": "production"
Expand All @@ -177,6 +191,10 @@
},
"development": {
"buildTarget": "sandbox:build:development"
},
"pams": {
"buildTarget": "sandbox:build:pams",
"port": 3000
}
},
"defaultConfiguration": "development"
Expand Down
Loading

0 comments on commit f5e8802

Please sign in to comment.