Skip to content

Commit 2e8fa2b

Browse files
Develop jordan (#930)
- Updated latest `CHANGELOG` entry to align with http://keepachangelog.com/en/1.0.0/ standards - Updated Jordan's (@Silic0nS0ldier) bio - Added fix for `npm` dependency installation issues to `CHANGELOG` - Added new `NoCache` middleware to `CHANGELOG` - Added branch status summary to `README`
1 parent 213e697 commit 2e8fa2b

3 files changed

Lines changed: 13 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
88
## 4.2.0-beta.2
99

1010
### Added
11-
- Added `sprinkle:list` bakery command
12-
- Changed the sprinkle list in the bakery `debug` command to use the new `sprinkle:list` table
11+
- `sprinkle:list` bakery command
12+
- `NoCache` middleware to prevent caching of routes with dynamic content
13+
14+
### Changed
15+
- Sprinkle list in the bakery `debug` command to uses the new `sprinkle:list` table
1316

1417
### Fix
1518
- Fix for `Test` Bakery command
@@ -25,6 +28,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
2528
- Added public `getSprinklesPath` & `setSprinklesPath` to return or set the path to the sprinkle dir (`app/sprinkles/`)
2629
- Added `JsonException` if `sprinkles.json` doesn't contain valid json.
2730
- Added specific tests for sprinkleManager with 100% test coverage
31+
- Ignore existing `package-lock.json` which caused incorrect dependencies to be installed when upgrading from older versions of UserFrosting.
2832

2933
## 4.2.0-beta.1
3034

README.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,16 @@
22

33
[![Latest Version](https://img.shields.io/github/release/userfrosting/UserFrosting.svg)](https://github.com/userfrosting/UserFrosting/releases)
44
[![Software License](https://img.shields.io/badge/license-MIT-brightgreen.svg)](LICENSE.md)
5-
[![Build Status](https://travis-ci.org/userfrosting/UserFrosting.svg?branch=master)](https://travis-ci.org/userfrosting/UserFrosting)
6-
[![codecov](https://codecov.io/gh/userfrosting/userfrosting/branch/master/graph/badge.svg)](https://codecov.io/gh/userfrosting/userfrosting)
75
[![Join the chat at https://chat.userfrosting.com/channel/support](https://demo.rocket.chat/images/join-chat.svg)](https://chat.userfrosting.com/channel/support)
86
[![Backers on Open Collective](https://opencollective.com/userfrosting/backers/badge.svg)](#backers)
97
[![Sponsors on Open Collective](https://opencollective.com/userfrosting/sponsors/badge.svg)](#sponsors)
108
[![Donate](https://img.shields.io/badge/Open%20Collective-Donate-blue.svg)](https://opencollective.com/userfrosting#backer)
119

10+
| Branch | Status |
11+
| ------ | ------ |
12+
| master | [![Build Status](https://travis-ci.org/userfrosting/UserFrosting.svg?branch=master)](https://travis-ci.org/userfrosting/UserFrosting) [![codecov](https://codecov.io/gh/userfrosting/userfrosting/branch/master/graph/badge.svg)](https://codecov.io/gh/userfrosting/userfrosting/branch/master) |
13+
| develop | [![Build Status](https://travis-ci.org/userfrosting/UserFrosting.svg?branch=develop)](https://travis-ci.org/userfrosting/UserFrosting) [![codecov](https://codecov.io/gh/userfrosting/userfrosting/branch/develop/graph/badge.svg)](https://codecov.io/gh/userfrosting/userfrosting/branch/develop) |
14+
1215
[https://www.userfrosting.com](https://www.userfrosting.com)
1316

1417
If you simply want to show that you like this project, or want to remember it for later, you should **star**, not **fork**, this repository. Forking is only for when you are ready to create your own copy of the code to work on.
@@ -77,7 +80,7 @@ Louis's a civil engineer in Montréal, Québec who also has a passion for coding
7780

7881
### Jordan Mele
7982

80-
Jordan's a former developer of Mayvin Training and a student studying Computer Science at the University of Wollongong, Australia. His passion is creating software-based solutions to overcomplicated problems, while keeping the user in control.
83+
Jordan's an Australian PHP Developer at [4mation](https://www.4mation.com.au) in Surry Hills, NSW. His passion is creating simple yet intuitive software-based solutions for problems that would otherwise be tedious and overcomplicated to address, while keeping the user in control.
8184

8285
### Sarah Baghdadi
8386

build/gulpfile.esm.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -267,6 +267,7 @@ export function bundle() {
267267
* @param {string} path Absolute path to resolve.
268268
*/
269269
function resolveToAssetPath(path) {
270+
// TODO There is a significant amount of duplicated code here. We can do better.
270271
if (path.startsWith(resolvePath(sprinklesDir))) {
271272
// Handle sprinkle path
272273
for (const sprinkle of sprinkles) {

0 commit comments

Comments
 (0)