Releases: navarasu/serverless-ruby-layer
Releases · navarasu/serverless-ruby-layer
v1.7.0
1.6.0
1.5.0
Gemfile.lock Release
- Used
Gemfile.lock
is used for bundle install if the file present ignore_gemfile_lock: true
to ignoreGemfile.lock
usage for bundle install- Added pg deploy example for ruby2.7 runtime
- Added example for
Bundler.require(:default)
to require all gem in the handler.rb
1.4.0
Docker Inside Docker Release
- Replaced docker volume mount with docker cp to support CI (Docker inside Docker) environment.
- Handled the bundle flag deprecated for bundler version greater than 2.1
- Added docker related test case to run in circle-ci
- Improved test coverage to 88 %
- Documented exclude test and development gem example
1.3.0
Specify Functions Release
- Option to include / exlude functions from attaching layers
- To reduce layer zip size, the gem cache files are excluded in zipping than removing it from the bundle folder
(To avoid unnecessary error while removing and also for upcoming reuse gem options)
1.2.1
1.2.0
Native Libs Release
- Specify yums to be preinstalled before doing a bundle install for gems with os native extension like pg, mysql.
- Pack and Deploy native library files to the lambda layer along with gems. for e.g to pack /usr/lib64/libpq.so.5 file for pg.
- Use docker file to specify custom installation and configuration
- Added docs and examples