Skip to content

Update docs v20 #520

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
## 19.0.0 (2025-02-01)

- feat: support node v22 (#470) ([52ee663](https://github.com/angular-split/angular-split/commit/52ee663)), closes [#470](https://github.com/angular-split/angular-split/issues/470)
- feat: update to angular 19 ([222ebcf](https://github.com/angular-split/angular-split/commit/222ebcf))
- refactor: change gutter directives to modern angular (#479) ([e3227ae](https://github.com/angular-split/angular-split/commit/e3227ae)), closes [#479](https://github.com/angular-split/angular-split/issues/479)
- refactor: drop signal writes effect (#455) ([f2219e8](https://github.com/angular-split/angular-split/commit/f2219e8)), closes [#455](https://github.com/angular-split/angular-split/issues/455)
- fix: docs and site fixes (#478) ([0e1ea19](https://github.com/angular-split/angular-split/commit/0e1ea19)), closes [#478](https://github.com/angular-split/angular-split/issues/478)
- fix: update to release-it and update changelog (#484) ([490eff7](https://github.com/angular-split/angular-split/commit/490eff7)), closes [#484](https://github.com/angular-split/angular-split/issues/484)
- fix: update to release-it and update changelog (#484) (#485) ([b0c5ca8](https://github.com/angular-split/angular-split/commit/b0c5ca8)), closes [#484](https://github.com/angular-split/angular-split/issues/484) [#485](https://github.com/angular-split/angular-split/issues/485)
- fix: update to use latest token. closes #472 (#486) ([53bf2e7](https://github.com/angular-split/angular-split/commit/53bf2e7)), closes [#472](https://github.com/angular-split/angular-split/issues/472) [#486](https://github.com/angular-split/angular-split/issues/486)
- fix(docs): update changelog path (#488) ([f695830](https://github.com/angular-split/angular-split/commit/f695830)), closes [#488](https://github.com/angular-split/angular-split/issues/488)
- docs: update license copyright year(s) (#487) ([12d12a0](https://github.com/angular-split/angular-split/commit/12d12a0)), closes [#487](https://github.com/angular-split/angular-split/issues/487)
- ci: use npm instead of yarn (#471) ([4f5b26c](https://github.com/angular-split/angular-split/commit/4f5b26c)), closes [#471](https://github.com/angular-split/angular-split/issues/471)

## 19.0.0-beta.0 (2024-12-22)

- refactor: move more to signals ([1fc7fea](https://github.com/angular-split/angular-split/commit/1fc7fea))
Expand Down
22 changes: 11 additions & 11 deletions CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,23 +17,23 @@ diverse, inclusive, and healthy community.
Examples of behavior that contributes to a positive environment for our
community include:

* Demonstrating empathy and kindness toward other people
* Being respectful of differing opinions, viewpoints, and experiences
* Giving and gracefully accepting constructive feedback
* Accepting responsibility and apologizing to those affected by our mistakes,
- Demonstrating empathy and kindness toward other people
- Being respectful of differing opinions, viewpoints, and experiences
- Giving and gracefully accepting constructive feedback
- Accepting responsibility and apologizing to those affected by our mistakes,
and learning from the experience
* Focusing on what is best not just for us as individuals, but for the
- Focusing on what is best not just for us as individuals, but for the
overall community

Examples of unacceptable behavior include:

* The use of sexualized language or imagery, and sexual attention or
- The use of sexualized language or imagery, and sexual attention or
advances of any kind
* Trolling, insulting or derogatory comments, and personal or political attacks
* Public or private harassment
* Publishing others' private information, such as a physical or email
- Trolling, insulting or derogatory comments, and personal or political attacks
- Public or private harassment
- Publishing others' private information, such as a physical or email
address, without their explicit permission
* Other conduct which could reasonably be considered inappropriate in a
- Other conduct which could reasonably be considered inappropriate in a
professional setting

## Enforcement Responsibilities
Expand Down Expand Up @@ -106,7 +106,7 @@ Violating these terms may lead to a permanent ban.
### 4. Permanent Ban

**Community Impact**: Demonstrating a pattern of violation of community
standards, including sustained inappropriate behavior, harassment of an
standards, including sustained inappropriate behavior, harassment of an
individual, or aggression toward or disparagement of classes of individuals.

**Consequence**: A permanent ban from any sort of public interaction within
Expand Down
32 changes: 29 additions & 3 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
},
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:application",
"builder": "@angular/build:application",
"options": {
"outputPath": {
"base": "dist/angular-split-app"
Expand Down Expand Up @@ -46,7 +46,7 @@
"defaultConfiguration": "production"
},
"serve": {
"builder": "@angular-devkit/build-angular:dev-server",
"builder": "@angular/build:dev-server",
"options": {
"buildTarget": "angular-split-app:build"
},
Expand Down Expand Up @@ -79,7 +79,7 @@
"prefix": "as",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:ng-packagr",
"builder": "@angular/build:ng-packagr",
"options": {
"tsConfig": "projects/angular-split/tsconfig.lib.json",
"project": "projects/angular-split/ng-package.json"
Expand All @@ -96,5 +96,31 @@
},
"cli": {
"analytics": "4af3d67b-15ea-40d9-8c3a-998fb02958b9"
},
"schematics": {
"@schematics/angular:component": {
"type": "component"
},
"@schematics/angular:directive": {
"type": "directive"
},
"@schematics/angular:service": {
"type": "service"
},
"@schematics/angular:guard": {
"typeSeparator": "."
},
"@schematics/angular:interceptor": {
"typeSeparator": "."
},
"@schematics/angular:module": {
"typeSeparator": "."
},
"@schematics/angular:pipe": {
"typeSeparator": "."
},
"@schematics/angular:resolver": {
"typeSeparator": "."
}
}
}
Loading
Loading