HEX
Server: Apache/2.4.52 (Ubuntu)
System: Linux ip-172-31-4-197 6.8.0-1036-aws #38~22.04.1-Ubuntu SMP Fri Aug 22 15:44:33 UTC 2025 x86_64
User: ubuntu (1000)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/www/api-management/node_modules/pug-runtime/CHANGELOG.md
# Change Log
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## 2.0.2
### Changed
- `require('fs')` calls will now be ignored by browser bundlers, through using
  `browser` field in `package.json`. Fallbacks for cases where `fs` module is
  not available were already in place prior to this release.

## 2.0.1
### Changed
- This package has been renamed to pug-runtime.
- `attrs()` has been optimized.

## 2.0.0
### Changed
- `classes()` has been optimized, making it more than 9x faster.
- `style()` has been optimized, making it 3-9x faster in average cases.
- `escape()` has been optimized again, now with another 1-4x boost from the
  last release.
- `attrs()`, `attr()`, and `merge()` also got some minor improvements.
  Although not benchmarked, we expect the new versions to perform better than
  last release.

### Deprecated
- Internal variables, or variables or functions that were not exported but
  visible through `require('pug-runtime/build')`, will not be visible through
  `require('pug-runtime/build')` anymore.
- `pug_encode_html_rules` and `pug_encode_char`, two internal variables, have
  now been removed. Please note that any further changes to these internal
  variables will not come with a major bump.

### Added
- A new module `require('pug-runtime/wrap')` is added to ease testing
  client-side templates.

## 1.1.0 - 2015-07-09
### Changed
- `escape()` has been optimized, making it about 20-30% faster. The new
  implementation is inspired by the one from EJS.

## 1.0.0 - 2014-12-28
### Added
- Initial release